:root {
  --navy-990: #030b11;
  --navy-980: #041018;
  --navy-960: #061720;
  --navy-950: #07131c;
  --navy-900: #0b1f2a;
  --navy-860: #102a37;
  --navy-820: #163747;
  --ink: #142631;
  --ink-soft: #435763;
  --muted: #6f7f87;
  --paper: #f4f0e7;
  --paper-soft: #fbf8f1;
  --paper-warm: #efe7d8;
  --white: #ffffff;
  --sage: #6f9f91;
  --sage-mid: #4d8077;
  --sage-dark: #365f58;
  --sage-soft: #e5eee9;
  --mint: #d5e8e2;
  --sand: #c9b487;
  --sand-soft: #eee6d4;
  --risk: #b37a4c;
  --risk-soft: #f0e1d3;
  --next: #4f7d91;
  --next-soft: #e4eef2;
  --rail: rgba(111, 159, 145, 0.42);
  --line-light: rgba(20, 38, 49, 0.12);
  --line-soft: rgba(20, 38, 49, 0.075);
  --line-dark: rgba(255, 255, 255, 0.14);
  --shadow: 0 24px 70px rgba(7, 19, 28, 0.11);
  --shadow-soft: 0 14px 38px rgba(7, 19, 28, 0.08);
  --shadow-dark: 0 34px 98px rgba(0, 0, 0, 0.27);
  --radius-xl: 30px;
  --radius: 24px;
  --radius-small: 16px;
  --max: 1140px;
  --nav-height: 76px;
  --heading-font: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--paper);
  scrollbar-gutter: stable;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 18% 0%, rgba(213, 232, 226, 0.52), transparent 34%),
    radial-gradient(circle at 92% 20%, rgba(201, 180, 135, 0.32), transparent 28%),
    var(--paper);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(7, 19, 28, 0.92), rgba(7, 19, 28, 0.72) 42%, rgba(244, 240, 231, 0.98) 73%);
  background-size: cover;
  background-position: right top;
  background-repeat: no-repeat;
  opacity: 0.05;
  z-index: -3;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(7, 19, 28, 0.014) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 19, 28, 0.012) 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.10), transparent 46%);
  z-index: -2;
}

a {
  color: inherit;
}

p {
  margin: 0 0 18px;
}

p:last-child {
  margin-bottom: 0;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

:focus-visible {
  outline: 3px solid rgba(111, 159, 145, 0.48);
  outline-offset: 4px;
}

.skip-link {
  position: absolute;
  left: 18px;
  top: 14px;
  z-index: 2000;
  transform: translateY(-140%);
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--white);
  color: var(--navy-950);
  font-weight: 760;
  text-decoration: none;
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(7, 19, 28, 0.91);
  border-bottom: 1px solid rgba(213, 232, 226, 0.13);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 14px 24px 12px;
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  row-gap: 12px;
}

.brand-link {
  display: inline-grid;
  grid-template-columns: 34px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: 0;
  max-width: min(100%, 650px);
}

.brand-mark {
  position: relative;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(213, 232, 226, 0.24);
  border-radius: 12px;
  background:
    linear-gradient(90deg, transparent 0 30%, rgba(213,232,226,0.08) 30% 70%, transparent 70%),
    rgba(213, 232, 226, 0.08);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.03);
}

.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  top: 7px;
  bottom: 7px;
  width: 3px;
  border-radius: 999px;
  background: var(--mint);
}

.brand-mark::before {
  left: 10px;
}

.brand-mark::after {
  right: 10px;
  background: var(--sand);
  opacity: 0.92;
}

.brand-copy {
  display: inline-flex;
  flex-direction: column;
  gap: 5px;
}

.brand-name {
  color: var(--white);
  font-size: 18px;
  line-height: 1.05;
  letter-spacing: 0.1px;
  font-weight: 780;
}

.brand-claim {
  color: #d5e8e2;
  font-size: 11px;
  line-height: 1.25;
  letter-spacing: 0.34px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  cursor: pointer;
  font-size: 20px;
  line-height: 1;
}

.nav-menu {
  width: 100%;
  padding-top: 10px;
  border-top: 1px solid rgba(213, 232, 226, 0.13);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  row-gap: 8px;
  column-gap: 12px;
}

.nav-menu a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 8px 12px;
  border-radius: 999px;
  color: rgba(244, 248, 246, 0.76);
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 0.32px;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.nav-menu a:hover,
.nav-menu a:focus-visible {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  outline: none;
}

.nav-menu .nav-cta {
  color: var(--navy-950);
  background: var(--mint);
  font-weight: 780;
  box-shadow: 0 8px 22px rgba(111, 159, 145, 0.16);
}

.nav-menu .nav-cta:hover,
.nav-menu .nav-cta:focus-visible {
  color: var(--navy-950);
  background: var(--white);
  transform: translateY(-1px);
}

.hero,
.page-section,
.anchor-band-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

.anchor {
  scroll-margin-top: 108px;
}

.hero-shell {
  position: relative;
  color: var(--white);
  background:
    radial-gradient(circle at 14% 12%, rgba(111, 159, 145, 0.20), transparent 30%),
    radial-gradient(circle at 88% 8%, rgba(201, 180, 135, 0.20), transparent 28%),
    linear-gradient(180deg, var(--navy-980), var(--navy-900));
  overflow: hidden;
}

.hero-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.020) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.016) 1px, transparent 1px);
  background-size: 92px 92px;
  mask-image: linear-gradient(115deg, rgba(0,0,0,0.26), transparent 68%);
}

.hero-shell::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(213, 232, 226, 0.22), transparent);
}

.hero {
  position: relative;
  padding-top: 118px;
  padding-bottom: 108px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(360px, 0.70fr);
  gap: 64px;
  align-items: stretch;
}

.eyebrow,
.section-label,
.micro-label {
  display: inline-flex;
  align-items: center;
}

.eyebrow {
  gap: 10px;
  margin-bottom: 25px;
  padding: 8px 14px;
  border: 1px solid rgba(213, 232, 226, 0.24);
  border-radius: 999px;
  color: #d5e8e2;
  background: rgba(213, 232, 226, 0.075);
  font-size: 13px;
  line-height: 1.35;
  letter-spacing: 0.2px;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--sage);
  box-shadow: 0 0 0 6px rgba(111, 159, 145, 0.13);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--heading-font);
  line-height: 1.12;
  letter-spacing: -0.018em;
  font-weight: 500;
}

h1 {
  max-width: 900px;
  color: var(--white);
  font-size: clamp(32px, 4vw, 50px);
  font-weight: 500;
  text-wrap: balance;
}

h2 {
  color: var(--ink);
  font-size: clamp(24px, 2.7vw, 36px);
  font-weight: 500;
  text-wrap: balance;
}

h3 {
  color: var(--ink);
  font-size: 16.5px;
  line-height: 1.34;
  letter-spacing: -0.008em;
  font-weight: 520;
}

.hero-subline {
  max-width: 790px;
  margin-top: 28px;
  color: rgba(244, 248, 246, 0.82);
  font-size: clamp(18px, 1.7vw, 22px);
  line-height: 1.45;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 8px 13px;
  border: 1px solid rgba(213, 232, 226, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.052);
  color: rgba(244, 248, 246, 0.76);
  font-size: 13px;
  line-height: 1.3;
  font-weight: 680;
}

.hero-proof span::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--mint);
}

.brand-statement {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  max-width: 820px;
  margin-top: 38px;
}

.statement-pill {
  position: relative;
  min-height: 100%;
  padding: 22px 22px 21px 25px;
  border: 1px solid rgba(213, 232, 226, 0.22);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.044));
  color: var(--white);
  font-size: 16px;
  line-height: 1.32;
  font-weight: 620;
  overflow: hidden;
  box-shadow: 0 18px 44px rgba(0,0,0,0.12);
}

.statement-pill::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  bottom: 14px;
  width: 3px;
  border-radius: 999px;
  background: var(--sage);
}

.statement-pill span {
  display: block;
  margin-top: 8px;
  color: rgba(244, 248, 246, 0.68);
  font-size: 14px;
  line-height: 1.48;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 40px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 15px 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  line-height: 1.2;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.button::after {
  content: "→";
  font-weight: 800;
  transform: translateY(-1px);
}

.button-secondary::after {
  content: "↓";
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

.button-primary {
  color: var(--navy-950);
  background: var(--mint);
  box-shadow: 0 18px 36px rgba(111, 159, 145, 0.22);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--white);
  box-shadow: 0 22px 48px rgba(111, 159, 145, 0.30);
}

.button-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.045);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
}

.button-dark {
  color: var(--white);
  background: var(--navy-900);
  border-color: rgba(7, 19, 28, 0.06);
  box-shadow: var(--shadow-soft);
}

.button-dark:hover,
.button-dark:focus-visible {
  background: var(--navy-820);
}

.hero-note {
  max-width: 720px;
  margin-top: 18px;
  color: rgba(244, 248, 246, 0.65);
  font-size: 14px;
}

.hero-panel {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 31px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.076), rgba(255, 255, 255, 0.044));
  box-shadow: var(--shadow-dark);
  overflow: hidden;
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 5px;
  background: linear-gradient(90deg, var(--sage), var(--mint), var(--sand));
}

.panel-kicker {
  margin-bottom: 14px;
  color: #d5e8e2;
  font-size: 13px;
  line-height: 1.35;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  font-weight: 780;
}

.panel-title {
  color: var(--white);
  font-size: 22px;
  line-height: 1.24;
  margin-bottom: 18px;
}

.panel-text {
  color: rgba(244, 248, 246, 0.74);
  font-size: 16px;
}

.signal-list,
.check-list {
  display: grid;
  gap: 11px;
}

.signal-list {
  margin-top: 24px;
  position: relative;
  z-index: 1;
}

.signal-list li {
  position: relative;
  padding: 13px 14px 13px 42px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.040);
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.44;
}

.signal-list li::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 20px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #d5e8e2;
  box-shadow: 0 0 0 5px rgba(213,232,226,0.08);
}

.hero-person {
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.hero-person img {
  width: 62px;
  height: 62px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  object-fit: cover;
}

.hero-person strong {
  display: block;
  color: var(--white);
  line-height: 1.25;
  font-size: 15px;
}

.hero-person span {
  display: block;
  margin-top: 4px;
  color: rgba(244, 248, 246, 0.64);
  font-size: 13px;
  line-height: 1.42;
}

.anchor-band {
  background: var(--paper);
  padding: 34px 0 28px;
}

.brand-anchor-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(280px, 0.42fr);
  gap: 24px;
  align-items: center;
  padding: clamp(28px, 4vw, 44px);
  border: 1px solid rgba(20, 38, 49, 0.10);
  border-radius: var(--radius-xl);
  background: rgba(250, 248, 242, 0.96);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.brand-anchor-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 28px;
  bottom: 28px;
  width: 5px;
  border-radius: 0 999px 999px 0;
  background: linear-gradient(180deg, var(--sage), var(--sand));
}

.brand-anchor-card h2 {
  margin-bottom: 10px;
  font-size: clamp(22px, 2.3vw, 30px);
}

.brand-anchor-card p {
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.55;
}

.process-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  margin-top: 18px;
  border: 1px solid rgba(20, 38, 49, 0.10);
  border-radius: 24px;
  background: rgba(20, 38, 49, 0.10);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.process-step {
  position: relative;
  min-height: 132px;
  padding: 21px 18px 18px;
  background: rgba(251, 248, 241, 0.86);
}

.process-step::before {
  content: attr(data-step);
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--sage-dark);
  font-size: 12px;
  letter-spacing: 0.78px;
  text-transform: uppercase;
  font-weight: 820;
}

.process-step strong {
  display: block;
  color: var(--ink);
  font-family: var(--heading-font);
  font-size: 18px;
  line-height: 1.22;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.process-step span {
  display: block;
  margin-top: 8px;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.42;
}

.home-current-state {
  margin-top: clamp(26px, 4vw, 48px);
}

.home-journey-strip {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.anchor-mini-grid {
  display: grid;
  gap: 10px;
}

.anchor-mini {
  position: relative;
  padding: 14px 15px 14px 44px;
  border: 1px solid rgba(54, 95, 88, 0.17);
  border-radius: 17px;
  background: rgba(229, 238, 233, 0.64);
  color: var(--sage-dark);
  font-weight: 720;
  line-height: 1.35;
}

a.anchor-mini {
  text-decoration: none;
}

a.anchor-mini:hover,
a.anchor-mini:focus-visible {
  color: var(--navy-900);
  background: rgba(213, 232, 226, 0.88);
  outline: none;
}

.anchor-mini::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 18px;
  width: 14px;
  height: 14px;
  border: 1px solid rgba(54, 95, 88, 0.28);
  border-radius: 5px;
  background: rgba(255,255,255,0.42);
}

.main-content {
  background: var(--paper);
}

.home-page {
  --home-paper-soft: #fbf4ea;
  --home-paper-mid: #f5e4cb;
  --home-paper-card: rgba(251, 244, 234, 0.78);
}

.home-page .main-content,
.home-page .page-section {
  background: var(--home-paper-soft);
}

.home-page .anchor-mini,
.home-page .cta-path,
.home-page .result-panel,
.home-page .step-card::before {
  background: var(--home-paper-card);
}

.home-page a.anchor-mini:hover,
.home-page a.anchor-mini:focus-visible {
  background: var(--home-paper-mid);
}

.home-page .guidance-band {
  background: rgba(255, 255, 255, 0.64);
}

.section-wrap {
  padding-top: 64px;
  padding-bottom: 64px;
}

.section-wrap + .section-wrap {
  border-top: 1px solid rgba(20, 38, 49, 0.08);
}

.page-section {
  position: relative;
}

.page-section::before {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(20,38,49,0.12), transparent);
  opacity: 0;
}

.section-wrap + .section-wrap::before {
  opacity: 1;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.55fr);
  gap: 42px;
  align-items: end;
  margin-bottom: 44px;
}

.section-label {
  gap: 9px;
  margin-bottom: 14px;
  color: var(--sage-dark);
  font-size: 13px;
  letter-spacing: 0.82px;
  text-transform: uppercase;
  font-weight: 760;
}

.section-label::before {
  content: "";
  width: 24px;
  height: 2px;
  border-radius: 999px;
  background: var(--sage);
}

.section-intro {
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.56;
}

.card,
.mini-card,
.step-card,
.case-item,
.result-panel,
.info-note,
.quote-box,
.trust-item,
.tag-list span,
.orientation-box {
  border: 1px solid var(--line-light);
  border-radius: var(--radius-small);
  background: rgba(255, 255, 255, 0.70);
}

.card {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.card-inner {
  padding: clamp(26px, 4vw, 44px);
}

.two-col {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.three-col {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.orientation-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.orientation-box {
  position: relative;
  min-height: 100%;
  padding: 22px 22px 20px;
  overflow: hidden;
}

.orientation-box::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--sage);
}

.orientation-box.risk::before {
  background: var(--risk);
}

.orientation-box.next::before {
  background: var(--next);
}

.orientation-box .box-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 13px;
  color: var(--sage-dark);
  font-size: 12px;
  letter-spacing: 0.76px;
  text-transform: uppercase;
  font-weight: 820;
}

.orientation-box.risk .box-label {
  color: var(--risk);
}

.orientation-box.next .box-label {
  color: var(--next);
}

.orientation-box h3 {
  margin-bottom: 9px;
}

.orientation-box p {
  color: var(--ink-soft);
  font-size: 15.5px;
  line-height: 1.56;
  margin: 0;
}

.key-message {
  position: relative;
  margin: 0 0 28px;
  padding: clamp(24px, 3.6vw, 38px);
  border: 1px solid rgba(20, 38, 49, 0.10);
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(251, 248, 241, 0.92), rgba(255, 255, 255, 0.68));
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.key-message::before {
  content: "";
  position: absolute;
  left: 0;
  top: 26px;
  bottom: 26px;
  width: 5px;
  border-radius: 0 999px 999px 0;
  background: linear-gradient(180deg, var(--sage), var(--sand));
}

.key-message span {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--sage-dark);
  font-size: 12px;
  letter-spacing: 0.82px;
  text-transform: uppercase;
  font-weight: 820;
}

.key-message strong {
  display: block;
  max-width: 920px;
  color: var(--ink);
  font-family: var(--heading-font);
  font-size: clamp(21px, 2.4vw, 30px);
  line-height: 1.18;
  font-weight: 500;
  letter-spacing: -0.014em;
}

.cta-path {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) auto;
  gap: 22px;
  align-items: center;
  margin-top: 24px;
  padding: 22px 24px;
  border: 1px solid rgba(54, 95, 88, 0.16);
  border-radius: 24px;
  background: rgba(229, 238, 233, 0.58);
  box-shadow: var(--shadow-soft);
}

.cta-path strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
  font-family: var(--heading-font);
  font-size: 20px;
  line-height: 1.2;
  font-weight: 500;
}

.cta-path span {
  display: block;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.5;
}

.cta-path .button {
  min-height: 48px;
  padding: 13px 19px;
  white-space: nowrap;
}

.mini-card {
  position: relative;
  padding: 24px;
  box-shadow: none;
  overflow: hidden;
}

.mini-card::before,
.step-card::after,
.case-item::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: rgba(111, 159, 145, 0.36);
  opacity: 0;
  transition: opacity 160ms ease;
}

.mini-card:hover::before,
.step-card:hover::after,
.case-item:hover::after {
  opacity: 1;
}

.mini-card h3,
.step-card h3,
.result-panel h3 {
  margin-bottom: 10px;
}

.mini-card p,
.step-card p {
  color: var(--ink-soft);
  font-size: 15.5px;
  line-height: 1.58;
  margin: 0;
}

.home-entry-icon {
  display: block;
  width: 146px;
  height: 146px;
  min-width: 146px;
  max-width: 46%;
  aspect-ratio: 1;
  object-fit: contain;
  object-position: center;
  margin: 0 auto 20px;
  border-radius: 8px;
}

.fachimpulse-topic-icon {
  display: block;
  width: 146px;
  height: 146px;
  min-width: 146px;
  max-width: 46%;
  aspect-ratio: 1;
  object-fit: contain;
  object-position: center;
  margin: 0 auto 20px;
}

.check-list li {
  position: relative;
  padding-left: 31px;
  color: var(--ink-soft);
  line-height: 1.5;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 15px;
  height: 15px;
  border: 1px solid rgba(54, 95, 88, 0.26);
  border-radius: 5px;
  background: var(--sage-soft);
}

.check-list li::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 11px;
  width: 4px;
  height: 7px;
  border-right: 2px solid var(--sage-dark);
  border-bottom: 2px solid var(--sage-dark);
  transform: rotate(45deg);
}

.highlight {
  color: var(--ink);
  font-weight: 780;
}

.guidance-band {
  border: 1px solid var(--line-light);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.60);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.guidance-band-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(280px, 0.48fr);
  gap: 28px;
  padding: clamp(26px, 4vw, 42px);
  align-items: center;
}

.guidance-band h3 {
  margin-bottom: 12px;
  color: var(--ink);
  font-size: clamp(21px, 2.2vw, 28px);
  line-height: 1.16;
}

.guidance-band p {
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.55;
  margin: 0;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.tag-list span {
  padding: 9px 12px;
  color: var(--sage-dark);
  font-size: 14px;
  line-height: 1.25;
  font-weight: 740;
  box-shadow: none;
  background: rgba(255,255,255,0.62);
}

.risk-card {
  background: rgba(255, 255, 255, 0.70);
  border-color: var(--line-light);
}

.risk-card .card-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.58fr) minmax(0, 0.42fr);
  gap: 28px;
  align-items: start;
}

.quote-box {
  position: relative;
  padding: 30px 26px 26px;
  background: rgba(238, 230, 212, 0.62);
}

.quote-box::before {
  content: "";
  position: absolute;
  left: 26px;
  top: 0;
  width: 54px;
  height: 4px;
  border-radius: 0 0 999px 999px;
  background: var(--sand);
}

.quote-box p {
  color: var(--ink);
  font-size: 18px;
  line-height: 1.42;
  letter-spacing: -0.018em;
  font-weight: 760;
}

.step-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.step-card {
  position: relative;
  min-height: 100%;
  padding: 24px 22px 22px;
  overflow: hidden;
}

.step-card::before {
  content: attr(data-step);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-bottom: 18px;
  border: 1px solid rgba(54, 95, 88, 0.24);
  border-radius: 999px;
  background: var(--sage-soft);
  color: var(--sage-dark);
  font-size: 13px;
  font-weight: 780;
}

.result-panel {
  margin-top: 22px;
  padding: 27px;
  background: rgba(229, 238, 233, 0.64);
}

.result-panel h3 {
  font-size: 18px;
}

.info-note {
  margin-top: 24px;
  padding: 22px 24px;
  border-left: 4px solid var(--sage);
  color: var(--ink-soft);
  background: rgba(255, 255, 255, 0.62);
}

.info-note-title {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-weight: 780;
  letter-spacing: 0.1px;
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.case-item {
  position: relative;
  min-height: 166px;
  padding: 20px;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.48;
  box-shadow: none;
  overflow: hidden;
}

.case-item strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 15.5px;
  line-height: 1.3;
}

.case-item::before {
  content: "";
  display: block;
  width: 30px;
  height: 3px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: var(--sage);
}

.compass-card {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 92% 8%, rgba(111, 159, 145, 0.22), transparent 31%),
    linear-gradient(180deg, rgba(255,255,255,0.82), rgba(250,248,242,0.80));
}

.compass-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: linear-gradient(180deg, var(--sage), var(--sand));
}

.compass-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(280px, 0.42fr);
  gap: 30px;
  align-items: center;
}

.micro-label {
  gap: 8px;
  margin-bottom: 12px;
  color: var(--sage-dark);
  font-size: 12px;
  letter-spacing: 0.78px;
  text-transform: uppercase;
  font-weight: 780;
}

.micro-label::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--sage);
}

.compass-side {
  padding: 24px;
  border: 1px solid rgba(54, 95, 88, 0.16);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.70);
}

.about-card {
  background:
    radial-gradient(circle at 100% 0%, rgba(111, 159, 145, 0.18), transparent 32%),
    linear-gradient(180deg, var(--navy-900), var(--navy-950));
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow-dark);
}

.about-card .card-inner {
  display: grid;
  grid-template-columns: 340px minmax(0, 1fr);
  gap: 54px;
  align-items: start;
}

.about-card h2,
.about-card h3 {
  color: var(--white);
}

.about-card p,
.about-card .check-list li,
.about-card .mini-card p {
  color: rgba(244, 248, 246, 0.76);
}

.about-card .section-label {
  color: #d5e8e2;
}

.about-card .section-label::before {
  background: #d5e8e2;
}

.about-image-wrap {
  position: sticky;
  top: 110px;
}

.about-image {
  position: relative;
  width: 100%;
  max-width: 326px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.092), rgba(255, 255, 255, 0.045));
  box-shadow: 0 28px 84px rgba(0, 0, 0, 0.30);
  overflow: hidden;
}

.about-image::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.04);
  pointer-events: none;
}

.about-image img {
  display: block;
  width: 100%;
  border-radius: 22px;
}

.about-role {
  margin-top: 16px;
  color: #d5e8e2;
  font-size: 14px;
  line-height: 1.45;
  font-weight: 700;
}

.about-badge {
  display: inline-flex;
  margin-top: 16px;
  padding: 9px 12px;
  border: 1px solid rgba(213, 232, 226, 0.18);
  border-radius: 999px;
  background: rgba(213, 232, 226, 0.08);
  color: rgba(244, 248, 246, 0.84);
  font-size: 13px;
  line-height: 1.3;
  font-weight: 720;
}

.about-content h2 {
  margin-bottom: 18px;
}

.about-content .lead {
  color: rgba(244, 248, 246, 0.84);
  font-size: 19px;
  line-height: 1.55;
}

.personal-note {
  margin: 22px 0 0;
  padding: 18px 20px;
  border: 1px solid rgba(201, 180, 135, 0.24);
  border-radius: 20px;
  background: rgba(201, 180, 135, 0.10);
  color: rgba(244, 248, 246, 0.78);
  font-size: 15px;
  line-height: 1.56;
}

.personal-note strong {
  color: var(--white);
  font-weight: 720;
}

.about-quote {
  margin: 24px 0 0;
  padding: 22px 24px;
  border: 1px solid rgba(213, 232, 226, 0.14);
  border-left: 4px solid var(--mint);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.055);
  color: rgba(244, 248, 246, 0.84);
  font-family: var(--heading-font);
  font-size: 19px;
  line-height: 1.38;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.about-specials {
  margin-top: 26px;
}

.about-card .mini-card,
.about-card .trust-item {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.055);
}

.about-card .check-list li::before {
  border-color: rgba(213, 232, 226, 0.32);
  background: rgba(213, 232, 226, 0.11);
}

.about-card .check-list li::after {
  border-color: #d5e8e2;
}

.trust-strip {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.trust-item {
  padding: 16px;
  color: rgba(244, 248, 246, 0.76);
  font-size: 14px;
  line-height: 1.42;
}

.trust-item strong {
  display: block;
  margin-bottom: 4px;
  color: var(--white);
  font-size: 15px;
}

.cta-section {
  padding: 62px 24px;
  background: var(--paper);
}

.cta-card {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(90deg, rgba(213,232,226,0.05), transparent 38%),
    var(--navy-900);
  color: var(--white);
  box-shadow: var(--shadow-dark);
  overflow: hidden;
}

.cta-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 5px;
  background: linear-gradient(90deg, var(--sage), var(--mint), var(--sand));
}

.cta-card-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(300px, 0.38fr);
  gap: 32px;
  align-items: center;
  padding: clamp(31px, 5vw, 58px);
}

.cta-card h2 {
  color: var(--white);
  font-size: clamp(27px, 3.1vw, 40px);
  margin-bottom: 18px;
}

.cta-card .section-label {
  color: #d5e8e2;
}

.cta-card .section-label::before {
  background: #d5e8e2;
}

.cta-lead {
  margin-bottom: 27px;
  color: rgba(244, 248, 246, 0.76);
  font-size: 18px;
  line-height: 1.5;
}

.cta-side {
  padding: 25px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.055);
}

.home-transparency-note {
  max-width: var(--max);
  margin: 0 auto 42px;
  padding: 0 24px;
}

.home-transparency-note h2 {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 19px;
  line-height: 1.25;
}

.home-transparency-note p {
  max-width: 900px;
  padding: 18px 20px;
  border: 1px solid rgba(20, 38, 49, 0.10);
  border-radius: var(--radius-small);
  background: rgba(255, 255, 255, 0.58);
  color: var(--ink-soft);
  font-size: 14.5px;
  line-height: 1.58;
}

.cta-side p {
  color: rgba(244, 248, 246, 0.74);
  font-size: 15px;
  line-height: 1.58;
}

.cta-side strong {
  color: var(--white);
}

footer {
  text-align: center;
  padding: 36px 24px 44px;
  color: rgba(244, 248, 246, 0.56);
  font-size: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--navy-950);
}

footer a {
  color: rgba(244, 248, 246, 0.76);
  text-decoration: none;
}

footer a:hover,
footer a:focus-visible {
  color: var(--white);
  text-decoration: underline;
  outline: none;
}

.mt-16 {
  margin-top: 16px;
}

.mt-18 {
  margin-top: 18px;
}

.mt-26 {
  margin-top: 26px;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media (max-width: 1040px) {
  .hero-grid,
  .section-head,
  .guidance-band-inner,
  .risk-card .card-inner,
  .cta-card-inner,
  .brand-anchor-card,
  .compass-inner {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    max-width: 760px;
  }

  .case-grid,
  .process-strip,
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .step-grid,
  .three-col,
  .trust-strip,
  .orientation-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cta-path {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .package-highlight {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  :root {
    --nav-height: 70px;
  }

  body::before {
    opacity: 0.12;
  }

  .nav-inner {
    min-height: var(--nav-height);
    padding: 12px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px 18px;
  }

  .brand-link {
    min-width: 0;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav-menu {
    display: none;
    width: 100%;
    padding: 14px 0 6px;
    border-top: 1px solid var(--line-dark);
    flex-direction: column;
    align-items: stretch;
    row-gap: 6px;
    column-gap: 0;
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-menu a {
    justify-content: flex-start;
    width: 100%;
    min-height: 42px;
    padding: 10px 12px;
  }

  .brand-claim {
    max-width: 238px;
  }

  .hero {
    padding-top: 72px;
    padding-bottom: 70px;
  }

  .hero-grid {
    gap: 30px;
  }

  .hero,
  .page-section,
  .anchor-band-inner {
    padding-left: 18px;
    padding-right: 18px;
  }

  .anchor-band {
    padding-bottom: 24px;
  }

  .section-wrap {
    padding-top: 46px;
    padding-bottom: 46px;
  }

  .two-col,
  .three-col,
  .step-grid,
  .case-grid,
  .process-strip,
  .product-grid,
  .about-card .card-inner,
  .trust-strip,
  .orientation-grid,
  .cta-path {
    grid-template-columns: 1fr;
  }

  .about-image-wrap {
    position: static;
  }

  .about-image {
    max-width: 206px;
  }
}

@media (max-width: 560px) {
  h1 {
    font-size: 30px;
  }

  h2 {
    font-size: 26px;
  }

  .brand-statement {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .button {
    text-align: center;
  }

  .card-inner,
  .guidance-band-inner,
  .hero-panel,
  .cta-card-inner,
  .brand-anchor-card,
  .compass-side {
    padding: 24px;
  }

  .hero-subline,
  .section-intro,
  .guidance-band p,
  .cta-lead,
  .brand-anchor-card p {
    font-size: 17px;
  }

  .cta-path .button {
    white-space: normal;
  }

  .home-entry-icon {
    width: 125px;
    height: 125px;
    min-width: 125px;
    max-width: 42%;
    margin-bottom: 16px;
  }

  .fachimpulse-topic-icon {
    width: 125px;
    height: 125px;
    min-width: 125px;
    max-width: 42%;
    margin-bottom: 16px;
  }

  .home-transparency-note {
    margin-bottom: 30px;
    padding: 0 18px;
  }

  .home-transparency-note p {
    padding: 16px;
    font-size: 14px;
  }

  .brand-mark {
    width: 32px;
    height: 32px;
  }

  .brand-name {
    font-size: 17px;
  }

  .hero-person {
    grid-template-columns: 54px minmax(0, 1fr);
  }

  .hero-person img {
    width: 54px;
    height: 54px;
  }
}

/* Rechtliche Unterseiten: Datenschutz / Impressum */

.legal-page {
  background:
    radial-gradient(circle at 18% 0%, rgba(213, 232, 226, 0.42), transparent 34%),
    radial-gradient(circle at 92% 18%, rgba(201, 180, 135, 0.26), transparent 30%),
    var(--paper);
}

.legal-hero-shell {
  position: relative;
  color: var(--white);
  background:
    radial-gradient(circle at 16% 12%, rgba(111, 159, 145, 0.20), transparent 30%),
    radial-gradient(circle at 86% 10%, rgba(201, 180, 135, 0.18), transparent 28%),
    linear-gradient(180deg, var(--navy-980), var(--navy-900));
  overflow: hidden;
}

.legal-hero-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.020) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.016) 1px, transparent 1px);
  background-size: 92px 92px;
  mask-image: linear-gradient(115deg, rgba(0,0,0,0.24), transparent 68%);
}

.legal-hero-shell::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(213, 232, 226, 0.22), transparent);
}

.legal-hero {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  padding: 92px 24px 78px;
}

.legal-hero h1 {
  max-width: 860px;
  color: var(--white);
  font-size: clamp(32px, 4vw, 50px);
  line-height: 1.08;
}

.legal-hero-subline {
  max-width: 760px;
  margin-top: 22px;
  color: rgba(244, 248, 246, 0.78);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.5;
}

.legal-main {
  background: var(--paper);
}

.legal-section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 64px 24px 86px;
}

.legal-card {
  border: 1px solid rgba(20, 38, 49, 0.10);
  border-radius: var(--radius-xl);
  background: rgba(250, 248, 242, 0.96);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.legal-card-head {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(280px, 0.46fr);
  gap: 32px;
  align-items: end;
  padding: clamp(28px, 4.5vw, 48px);
  border-bottom: 1px solid rgba(20, 38, 49, 0.08);
  background:
    radial-gradient(circle at 100% 0%, rgba(111, 159, 145, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,0.72), rgba(251,248,241,0.82));
}

.legal-card-head h2 {
  font-size: clamp(24px, 2.5vw, 34px);
}

.legal-card-head p {
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.6;
}

.legal-content {
  padding: clamp(20px, 4vw, 42px);
  background: rgba(255, 255, 255, 0.42);
}

.itrk-legaltext {
  width: 100%;
  overflow: hidden;
  border: 1px solid rgba(20, 38, 49, 0.10);
  border-radius: 22px;
  background: #ffffff !important;
  color: #18212a !important;
  padding: clamp(22px, 4vw, 42px);
  box-shadow: var(--shadow-soft);
}

.itrk-legaltext,
.itrk-legaltext * {
  color: #18212a !important;
  text-shadow: none !important;
}

.itrk-legaltext h1,
.itrk-legaltext h2,
.itrk-legaltext h3,
.itrk-legaltext h4,
.itrk-legaltext h5,
.itrk-legaltext h6 {
  color: #0f1720 !important;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
  line-height: 1.28 !important;
  letter-spacing: normal !important;
  font-weight: 760 !important;
}

.itrk-legaltext h1 {
  font-size: 28px !important;
  margin: 0 0 24px !important;
}

.itrk-legaltext h2 {
  font-size: 21px !important;
  margin: 32px 0 14px !important;
}

.itrk-legaltext h3 {
  font-size: 18px !important;
  margin: 26px 0 12px !important;
}

.itrk-legaltext p,
.itrk-legaltext li,
.itrk-legaltext div {
  font-size: 16px !important;
  line-height: 1.68 !important;
}

.itrk-legaltext p {
  margin: 0 0 16px !important;
}

.itrk-legaltext ul,
.itrk-legaltext ol {
  margin: 12px 0 18px 22px !important;
  padding: 0 !important;
  list-style: initial !important;
}

.itrk-legaltext li {
  padding-left: 4px !important;
  margin-bottom: 8px !important;
}

.itrk-legaltext a {
  color: #365f58 !important;
  text-decoration: underline !important;
  text-underline-offset: 3px !important;
}

.itrk-legaltext iframe {
  display: block;
  width: 100%;
  min-height: 760px;
  border: none;
  background: #ffffff !important;
}

.legal-back-area {
  display: flex;
  justify-content: flex-start;
  padding: 0 clamp(20px, 4vw, 42px) clamp(24px, 4vw, 42px);
  background: rgba(255, 255, 255, 0.42);
}

.legal-back-area .button::after {
  content: "→";
}

@media (max-width: 860px) {
  .legal-hero {
    padding: 68px 18px 58px;
  }

  .legal-section {
    padding: 42px 18px 64px;
  }

  .legal-card-head {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .legal-content {
    padding: 18px;
  }

  .itrk-legaltext {
    border-radius: 18px;
    padding: 20px;
  }

  .itrk-legaltext iframe {
    min-height: 680px;
  }

  .legal-back-area {
    padding: 0 18px 24px;
  }

  .legal-back-area .button {
    width: 100%;
  }
}

@media (max-width: 560px) {
  .legal-hero h1 {
    font-size: 30px;
  }

  .legal-hero-subline {
    font-size: 17px;
  }

  .cta-card h2 {
    font-size: 27px;
  }

  .key-message strong {
    font-size: 23px;
  }

  .itrk-legaltext h1 {
    font-size: 24px !important;
  }

  .itrk-legaltext h2 {
    font-size: 19px !important;
  }

  .itrk-legaltext h3 {
    font-size: 17px !important;
  }

  .itrk-legaltext p,
  .itrk-legaltext li,
  .itrk-legaltext div {
    font-size: 15.5px !important;
  }
}

/* KI-Schnellcheck */

.schnellcheck-hero .hero-subline {
  max-width: 820px;
}

.schnellcheck-principle .tag-list {
  align-items: stretch;
}

.schnellcheck-card {
  border: 1px solid var(--line-light);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.schnellcheck-progress {
  padding: clamp(22px, 3vw, 30px) clamp(22px, 4vw, 42px);
  border-bottom: 1px solid rgba(20, 38, 49, 0.08);
  background: rgba(255, 250, 240, 0.72);
}

.schnellcheck-progress-meta {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 12px;
  color: rgba(20, 38, 49, 0.58);
  font-size: 13px;
  font-weight: 680;
}

.schnellcheck-progress-track {
  width: 100%;
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(20, 38, 49, 0.10);
}

.schnellcheck-progress-bar {
  width: 7.143%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--sage), var(--mint));
  transition: width 180ms ease;
}

.schnellcheck-question,
.schnellcheck-result {
  padding: clamp(24px, 4vw, 44px);
}

.schnellcheck-question fieldset {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.question-domain,
.result-kicker {
  margin: 0 0 12px;
  color: var(--sage);
  font-size: 12px;
  font-weight: 820;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.schnellcheck-question legend {
  width: 100%;
  margin: 0 0 24px;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(25px, 3.8vw, 40px);
  font-weight: 650;
  line-height: 1.14;
}

.answer-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.answer {
  position: relative;
}

.answer input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  cursor: pointer;
  opacity: 0;
}

.answer-label {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 13px;
  align-items: center;
  min-height: 62px;
  padding: 16px 18px;
  border: 1px solid rgba(20, 38, 49, 0.12);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.64);
  color: var(--ink);
  font-weight: 680;
  transition: border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.answer-label::before {
  content: "";
  width: 18px;
  height: 18px;
  border: 2px solid rgba(20, 38, 49, 0.30);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
}

.answer input:focus-visible + .answer-label {
  outline: 3px solid rgba(111, 159, 145, 0.34);
  outline-offset: 3px;
}

.answer input:checked + .answer-label {
  border-color: rgba(111, 159, 145, 0.74);
  background: rgba(213, 232, 226, 0.52);
  box-shadow: 0 0 0 1px rgba(111, 159, 145, 0.14);
}

.answer input:checked + .answer-label::before {
  border: 6px solid var(--sage);
}

.schnellcheck-controls,
.result-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  margin-top: 28px;
}

.check-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  font: inherit;
  font-weight: 780;
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

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

.check-button-primary {
  color: var(--navy-950);
  background: var(--mint);
  box-shadow: 0 12px 26px rgba(111, 159, 145, 0.22);
}

.check-button-primary:hover,
.check-button-primary:focus-visible {
  background: var(--white);
  box-shadow: 0 16px 34px rgba(111, 159, 145, 0.28);
}

.check-button-secondary {
  color: var(--navy-900);
  border-color: rgba(20, 38, 49, 0.16);
  background: rgba(255, 255, 255, 0.58);
}

.check-button-secondary:hover,
.check-button-secondary:focus-visible {
  background: var(--white);
  border-color: rgba(20, 38, 49, 0.24);
}

.check-button[disabled] {
  cursor: not-allowed;
  box-shadow: none;
  opacity: 0.42;
  transform: none;
}

.schnellcheck-result {
  display: none;
}

.schnellcheck-result.is-visible {
  display: block;
}

.schnellcheck-result h2 {
  max-width: 900px;
  margin: 0 0 12px;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.12;
}

.score {
  margin: 0 0 18px;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 680;
}

.score strong {
  color: var(--ink);
}

.result-copy,
.next-step p,
.trust-note {
  max-width: 860px;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.62;
}

.next-step {
  margin-top: 24px;
  padding: clamp(20px, 3vw, 28px);
  border: 1px solid rgba(111, 159, 145, 0.24);
  border-radius: var(--radius-lg);
  background: rgba(213, 232, 226, 0.38);
}

.next-step h3 {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: clamp(21px, 2.3vw, 29px);
}

.trust-note {
  margin: 24px 0 0;
  padding-top: 18px;
  border-top: 1px solid rgba(20, 38, 49, 0.10);
}

@media (max-width: 760px) {
  .schnellcheck-progress-meta,
  .schnellcheck-controls,
  .result-actions {
    flex-direction: column;
  }

  .check-button {
    width: 100%;
  }
}

@media print {
  .schnellcheck-page #site-header,
  .schnellcheck-page .hero-shell,
  .schnellcheck-page #einordnung,
  .schnellcheck-page .schnellcheck-principle,
  .schnellcheck-page .schnellcheck-progress,
  .schnellcheck-page .schnellcheck-question,
  .schnellcheck-page .result-actions,
  .schnellcheck-page footer {
    display: none !important;
  }

  .schnellcheck-card {
    background: #fff;
    box-shadow: none;
  }

  .schnellcheck-result {
    display: block !important;
  }
}

/* Fachimpulse / statischer Blog */
.fachimpulse-hero .hero-subline,
.article-hero .hero-subline {
  max-width: 820px;
}

.cluster-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: -12px 0 30px;
}

.cluster-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 15px;
  border: 1px solid rgba(54, 95, 88, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  color: var(--sage-dark);
  font: inherit;
  font-size: 14px;
  line-height: 1.25;
  font-weight: 760;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.cluster-button:hover,
.cluster-button:focus-visible,
.cluster-button.active {
  background: var(--navy-900);
  border-color: var(--navy-900);
  color: var(--white);
  transform: translateY(-1px);
  outline: none;
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.article-card {
  position: relative;
  min-height: 100%;
  padding: 24px;
  border: 1px solid var(--line-light);
  border-radius: var(--radius-small);
  background: rgba(255, 255, 255, 0.70);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.article-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--sage);
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  align-items: center;
  margin-bottom: 14px;
  color: var(--sage-dark);
  font-size: 12px;
  line-height: 1.3;
  letter-spacing: 0.66px;
  text-transform: uppercase;
  font-weight: 820;
}

.article-meta time {
  color: var(--muted);
}

.article-card h3 {
  margin-bottom: 10px;
  font-size: 21px;
  line-height: 1.18;
}

.article-card h3 a {
  text-decoration: none;
}

.article-card h3 a:hover,
.article-card h3 a:focus-visible,
.article-link:hover,
.article-link:focus-visible,
.back-link:hover,
.back-link:focus-visible,
.tag-link:hover,
.tag-link:focus-visible {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.article-card p {
  color: var(--ink-soft);
  font-size: 15.5px;
  line-height: 1.56;
}

.article-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  color: var(--sage-dark);
  text-decoration: none;
  font-weight: 820;
}

.article-link::after {
  content: "→";
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.empty-state {
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid rgba(20, 38, 49, 0.10);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.64);
  box-shadow: var(--shadow-soft);
}

.empty-state h3 {
  margin-bottom: 10px;
  font-size: clamp(20px, 2.2vw, 28px);
}

.empty-state p {
  color: var(--ink-soft);
}

.empty-state code {
  padding: 2px 6px;
  border-radius: 7px;
  background: rgba(229, 238, 233, 0.82);
  color: var(--sage-dark);
  font-size: 0.92em;
}

.tag-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 13px;
  border: 1px solid var(--line-light);
  border-radius: 999px;
  background: rgba(255,255,255,0.62);
  color: var(--sage-dark);
  font-size: 14px;
  line-height: 1.25;
  font-weight: 760;
  text-decoration: none;
}

.article-hero-inner {
  max-width: 880px;
}

.back-link {
  display: inline-flex;
  margin-bottom: 20px;
  color: rgba(244, 248, 246, 0.78);
  text-decoration: none;
  font-weight: 760;
}

.article-meta-hero {
  margin-top: 28px;
  color: #d5e8e2;
}

.article-meta-hero time {
  color: rgba(244, 248, 246, 0.62);
}

.article-reading-time {
  color: rgba(244, 248, 246, 0.72);
  letter-spacing: 0;
  text-transform: none;
  font-weight: 720;
}

.article-meta-hero .article-disclaimer-link {
  flex-basis: 100%;
  margin-top: 18px;
  font-size: 15px;
}

.article-meta-hero .article-disclaimer-link a {
  color: inherit;
}

.article-layout {
  max-width: 900px;
}

.article-layout:has(.platform-hub-module) {
  max-width: min(1240px, calc(100vw - 48px));
}

.platform-overview-layout {
  max-width: min(1240px, calc(100vw - 48px));
}

.offer-layout {
  max-width: var(--max);
}

.article-content {
  padding: clamp(26px, 5vw, 54px);
  border: 1px solid rgba(20, 38, 49, 0.10);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
}

.article-content:has(.platform-hub-module) {
  padding: clamp(30px, 4vw, 56px);
}

.platform-overview-content {
  padding: clamp(30px, 4vw, 56px);
}

.article-content:has(.platform-hub-module) > .lead,
.article-content:has(.platform-hub-module) > nav,
.article-content:has(.platform-hub-module) > section:not(.platform-hub-module),
.article-content:has(.platform-hub-module) > h2,
.article-content:has(.platform-hub-module) > p,
.article-content:has(.platform-hub-module) > ul,
.platform-overview-content > .lead,
.platform-overview-content > section:not(:has(.platform-article-grid)) {
  max-width: 860px;
}

.offer-content {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.offer-content > .lead,
.offer-content > h2,
.offer-content > p,
.offer-content > ul {
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}

.offer-content > .card,
.offer-content > .guidance-band,
.offer-content > .article-cta-box {
  margin-left: auto;
  margin-right: auto;
}

.article-content .lead {
  color: var(--ink);
  font-size: 20px;
  line-height: 1.56;
  font-weight: 620;
}

.article-image-figure {
  margin: 24px 0 22px;
}

.article-image-figure img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid rgba(20, 38, 49, 0.10);
  border-radius: var(--radius-small);
  background: var(--paper);
}

.article-image-figure figcaption {
  margin-top: 10px;
  color: var(--ink-soft);
  font-size: 14.5px;
  line-height: 1.5;
}

.article-content h2 {
  margin: 36px 0 14px;
  font-size: clamp(23px, 2.5vw, 32px);
}

.article-content p,
.article-content li {
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.68;
}

.article-content ul {
  display: grid;
  gap: 10px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.article-content li {
  position: relative;
  padding-left: 30px;
}

.article-content li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--sage);
  box-shadow: 0 0 0 5px rgba(111, 159, 145, 0.12);
}

.article-cta-box {
  margin-top: 42px;
  padding: clamp(24px, 4vw, 36px);
  border: 1px solid rgba(54, 95, 88, 0.16);
  border-radius: 24px;
  background: rgba(229, 238, 233, 0.64);
}

.article-cta-box h3 {
  margin-bottom: 10px;
  font-size: clamp(21px, 2.2vw, 28px);
}

.article-role-model {
  margin-top: 22px;
  padding: clamp(20px, 4vw, 32px);
  border: 1px solid rgba(54, 95, 88, 0.16);
  border-radius: var(--radius-small);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.76), rgba(229, 238, 233, 0.48));
  box-shadow: 0 16px 34px rgba(7, 19, 28, 0.07);
}

.article-role-model__flow {
  display: grid;
  gap: 12px;
  justify-items: center;
  text-align: center;
}

.article-role-model__node {
  width: min(100%, 230px);
  padding: 14px 16px;
  border: 1px solid rgba(20, 38, 49, 0.11);
  border-radius: var(--radius-small);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 10px 24px rgba(7, 19, 28, 0.06);
}

.article-role-model__node strong {
  display: block;
  color: var(--ink);
  font-size: 17px;
  line-height: 1.25;
}

.article-role-model__node span {
  display: block;
  margin-top: 5px;
  color: var(--sage-dark);
  font-size: 13px;
  font-weight: 720;
  line-height: 1.35;
}

.article-role-model__icon {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 8px;
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(135deg, var(--sage), var(--navy-800));
  font-size: 12px;
  font-weight: 800;
}

.article-role-model__connector {
  width: 2px;
  height: 18px;
  background: linear-gradient(180deg, rgba(54, 95, 88, 0.18), rgba(54, 95, 88, 0.46));
}

.article-role-model__branches {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  width: min(100%, 680px);
}

.article-role-model__branches::before {
  content: "";
  position: absolute;
  left: 16%;
  right: 16%;
  top: -12px;
  height: 2px;
  background: rgba(54, 95, 88, 0.22);
}

.article-role-model__branches .article-role-model__node {
  width: 100%;
}

.article-toc,
.article-table-block,
.article-checklist,
.article-related,
.article-download-note,
.article-faq,
.article-sources,
.article-author {
  margin-top: 34px;
}

.article-toc {
  padding: 22px;
  border: 1px solid rgba(54, 95, 88, 0.14);
  border-radius: var(--radius-small);
  background: rgba(229, 238, 233, 0.42);
}

.article-toc h2 {
  margin-top: 0;
  font-size: 22px;
}

.article-toc ol,
.article-sources ol {
  display: grid;
  gap: 8px;
  margin: 12px 0 0;
  padding-left: 22px;
}

.article-toc li,
.article-sources li {
  padding-left: 4px;
}

.article-toc li::before,
.article-sources li::before {
  content: none;
}

.article-table-wrap {
  overflow-x: auto;
  border: 1px solid rgba(20, 38, 49, 0.10);
  border-radius: var(--radius-small);
  background: rgba(255, 255, 255, 0.52);
}

.article-content table {
  width: 100%;
  border-collapse: collapse;
  min-width: 620px;
}

.article-content th,
.article-content td {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(20, 38, 49, 0.10);
  text-align: left;
  vertical-align: top;
}

.article-content th {
  color: var(--ink);
  background: rgba(229, 238, 233, 0.52);
  font-weight: 760;
}

.article-content tr:last-child td {
  border-bottom: 0;
}

.article-author {
  padding-top: 24px;
  border-top: 1px solid rgba(20, 38, 49, 0.10);
}

.content-search {
  display: grid;
  gap: 8px;
  margin: 24px 0;
}

.content-search label {
  color: var(--ink);
  font-weight: 720;
}

.content-search input {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(20, 38, 49, 0.16);
  border-radius: var(--radius-small);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.78);
  font: inherit;
}

.knowledge-search {
  margin: -6px 0 26px;
  padding: clamp(18px, 3vw, 24px);
  border: 1px solid rgba(20, 38, 49, 0.10);
  border-radius: var(--radius-small);
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 14px 32px rgba(7, 19, 28, 0.06);
}

.knowledge-search-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
}

.knowledge-search-clear {
  min-height: 50px;
  white-space: nowrap;
}

.knowledge-search-clear[hidden],
.knowledge-results[hidden] {
  display: none !important;
}

.knowledge-search-hint {
  margin: 2px 0 0;
  color: var(--ink-soft);
  font-size: 14.5px;
}

.knowledge-results {
  margin: 0 0 30px;
}

.knowledge-results-head {
  margin-bottom: 14px;
}

.knowledge-results-head p {
  margin-top: 6px;
  color: var(--ink-soft);
  font-weight: 700;
}

.knowledge-result-grid {
  margin-top: 0;
}

.knowledge-result-card {
  box-shadow: 0 12px 30px rgba(7, 19, 28, 0.07);
}

.knowledge-results-more {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 18px;
}

.knowledge-results-more p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14.5px;
  font-weight: 700;
}

.platform-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.platform-chip {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 7px 12px;
  border: 1px solid rgba(54, 95, 88, 0.18);
  border-radius: 999px;
  color: var(--sage-dark);
  background: rgba(229, 238, 233, 0.58);
  font-size: 14px;
  font-weight: 760;
}

.platform-empty {
  margin: 14px 0 0;
  padding: 16px 18px;
  border: 1px solid rgba(20, 38, 49, 0.10);
  border-radius: var(--radius-small);
  color: var(--ink-soft);
  background: rgba(255, 255, 255, 0.54);
}

.platform-article-grid {
  margin-top: 18px;
}

.article-content > #fachimpulse,
.article-content > #angebote {
  width: min(1120px, calc(100vw - 48px));
  max-width: none;
  margin-left: 50%;
  transform: translateX(-50%);
}

.article-content > #fachimpulse .wide-article-grid,
.article-content > #angebote .offer-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.article-content > #fachimpulse .article-card h3,
.article-content > #angebote .article-card h3 {
  margin-top: 0;
}

.article-content > #fachimpulse .article-card p,
.article-content > #angebote .article-card p {
  font-size: 15.5px;
  line-height: 1.56;
}

.article-content > #angebote .offer-price {
  margin-top: 12px;
  color: var(--ink);
  font-weight: 820;
}

.platform-hub-module {
  margin-top: 46px;
}

.platform-hub-module:first-of-type {
  margin-top: 34px;
}

.platform-hub-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(320px, 1fr));
  gap: 22px;
  margin-top: 20px;
}

.platform-hub-grid .article-card {
  min-height: 0;
  padding: 26px;
}

.platform-hub-module > .article-grid,
.platform-hub-module > .platform-article-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 20px;
}

.platform-hub-module .article-card {
  box-shadow: 0 12px 30px rgba(7, 19, 28, 0.07);
}

.platform-hub-grid .article-card h3 {
  margin-bottom: 10px;
  font-size: 19px;
}

.platform-hub-module .article-card p {
  font-size: 15.5px;
  line-height: 1.54;
}

.platform-hub-module .article-card li {
  color: var(--ink-soft);
  font-size: 15.5px;
  line-height: 1.48;
  padding-left: 22px;
}

.platform-hub-module .article-card li::before {
  top: 9px;
  width: 6px;
  height: 6px;
  box-shadow: 0 0 0 4px rgba(111, 159, 145, 0.10);
}

.platform-hub-grid ul,
.platform-hub-grid ol,
.platform-article-grid ul,
.platform-article-grid ol {
  margin: 10px 0 0;
  padding-left: 0;
}

.platform-hub-grid li + li,
.platform-article-grid li + li {
  margin-top: 6px;
}

.plan-pillar-group {
  margin-top: 38px;
}

.plan-pillar-group:first-child {
  margin-top: 18px;
}

.plan-slot-card h3 {
  margin-bottom: 8px;
}

.button-on-light {
  color: var(--navy-900);
  border-color: rgba(20, 38, 49, 0.16);
  background: rgba(255, 255, 255, 0.58);
}

.button-on-light:hover,
.button-on-light:focus-visible {
  color: var(--navy-900);
  background: var(--white);
  border-color: rgba(20, 38, 49, 0.22);
}

@media (max-width: 560px) {
  .platform-hub-grid {
    grid-template-columns: 1fr;
  }

  .praxis-kompass-page {
    overflow-x: hidden;
  }

  .praxis-kompass-page .article-hero h1 {
    max-width: calc(100vw - 36px);
    text-wrap: wrap;
    overflow-wrap: anywhere;
  }

  .praxis-kompass-page .hero-actions,
  .praxis-kompass-page .button {
    min-width: 0;
  }

  .praxis-kompass-page .button {
    white-space: normal;
    overflow-wrap: anywhere;
  }
}

@media (max-width: 980px) {
  .article-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .article-layout:has(.platform-hub-module) {
    max-width: min(100%, calc(100vw - 32px));
  }

  .platform-overview-layout {
    max-width: min(100%, calc(100vw - 32px));
  }

  .platform-hub-module > .article-grid,
  .platform-hub-module > .platform-article-grid,
  .platform-hub-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .article-content > #fachimpulse,
  .article-content > #angebote {
    width: 100%;
    margin-left: 0;
    transform: none;
  }

  .article-content > #fachimpulse .wide-article-grid,
  .article-content > #angebote .offer-grid {
    grid-template-columns: 1fr;
  }
}

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

  .article-layout:has(.platform-hub-module) {
    max-width: 100%;
  }

  .platform-overview-layout {
    max-width: 100%;
  }

  .article-content:has(.platform-hub-module) {
    padding: 24px 18px;
  }

  .platform-overview-content {
    padding: 24px 18px;
  }

  .platform-hub-module {
    margin-top: 34px;
  }

  .platform-hub-module > .article-grid,
  .platform-hub-module > .platform-article-grid,
  .platform-hub-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .article-role-model__branches {
    grid-template-columns: 1fr;
  }

  .article-role-model__branches::before {
    left: 50%;
    right: auto;
    top: -12px;
    bottom: -12px;
    width: 2px;
    height: auto;
  }

  .cluster-nav {
    gap: 8px;
  }

  .cluster-button,
  .tag-link,
  .knowledge-search-clear {
    width: 100%;
  }

  .knowledge-search-row {
    grid-template-columns: 1fr;
  }

  .article-content p,
  .article-content li {
    font-size: 16.5px;
  }
}
