﻿:root {
  --color-primary: #1d2dc3;
  --color-secondary: #1220a0;
  --color-accent: #3b4ad6;
  --color-background: #d8d8d8;
  --color-surface: #efefef;
  --color-panel: #f8f8f8;
  --color-text: #111111;
  --color-muted: #2f2f2f;
  --color-border: #9a9a9a;
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --space-xs: 0.4rem;
  --space-sm: 0.7rem;
  --space-md: 1rem;
  --space-lg: 1.4rem;
  --space-xl: 2rem;
  --space-2xl: 2.8rem;
  --container: 94rem;
  --font-body: "Source Sans 3", "Segoe UI", "Helvetica Neue", sans-serif;
  --font-head: "Alegreya Sans", "Trebuchet MS", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--color-text);
  background: var(--color-background);
  min-height: 100vh;
}

.container {
  width: min(var(--container), calc(100% - 2.8rem));

}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.skip-link {
  position: absolute;
  top: -200px;
  left: 1rem;
  background: var(--color-primary);
  color: #fff;
  padding: 0.6rem 0.95rem;
  border-radius: var(--radius-sm);
  z-index: 1000;
}

.skip-link:focus {
  top: 0.8rem;
}

a {
  color: var(--color-primary);
  text-underline-offset: 0.12em;
}

a:hover,
a:focus-visible {
  color: #101c84;
}

:focus-visible {
  outline: 3px solid var(--color-primary);
  outline-offset: 2px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: #ececec;
  border-top: 1px solid #f6f6f6;
  border-bottom: 6px solid var(--color-primary);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
  min-height: 5.1rem;

  transition:
    border-color 220ms ease,
    box-shadow 220ms ease,
    background 220ms ease;
}
.site-header.is-scrolled {
  backdrop-filter: blur(18px);
  background: rgba(255,255,255,.82);
  box-shadow: 0 1px 0 rgba(29,43,216,.12);
}

.site-header.is-scrolled .header-inner {
  border-bottom: 1px solid rgba(29,43,216,100);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--color-text);
  font-family: var(--font-head);
  font-weight: 800;
  letter-spacing: 0.02em;
  padding-left: 25px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: var(--color-primary);
  color: #fff;
  font-size: 0.8rem;
  text-transform: uppercase;
}

.brand-text {
  font-size: clamp(1.15rem, 1.7vw, 1.6rem);
}

.brand-logo {
  display: block;
  height: 3rem;
  width: auto;
}

.site-nav ul {
  display: flex;
  align-items: center;
  gap: 0.62rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav a {
  display: block;
  padding: 0.48rem 0.82rem;
  border-radius: 999px;
  text-decoration: none;
  color: var(--color-primary);
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.site-nav a[aria-current='page'] {
  background: #d6def8;
  color: #131f93;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: #dfe4f8;
}

.nav-toggle {
  display: none;
  width: 2.6rem;
  height: 2.6rem;
  border: 1px solid var(--color-primary);
  border-radius: 0.45rem;
  background: #f4f4f4;
  cursor: pointer;
}

.nav-toggle span[aria-hidden='true'] {
  display: block;
  width: 1.2rem;
  height: 2px;
  background: var(--color-primary);
  margin: 0 auto;
  position: relative;
}

.nav-toggle span[aria-hidden='true']::before,
.nav-toggle span[aria-hidden='true']::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--color-primary);
}

.nav-toggle span[aria-hidden='true']::before {
  top: -0.35rem;
}

.nav-toggle span[aria-hidden='true']::after {
  top: 0.35rem;
}

.hero {
  padding: clamp(1.4rem, 3vw, 2rem) 0 clamp(1rem, 2.8vw, 1.6rem);
}

.hero-grid {
  display: grid;
  gap: var(--space-xl);
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 var(--space-sm);
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  border: 1px solid #b9c4f1;
  background: #e9edff;
  color: #1726a5;
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero h1 {
  margin: 0;
  color: var(--color-primary);
  font-family: var(--font-head);
  font-size: clamp(1.85rem, 4vw, 2.8rem);
  line-height: 1.15;
}

.hero .lead {
  margin: var(--space-md) 0 0;
  max-width: 54ch;
  color: var(--color-muted);
  font-size: clamp(1.03rem, 2.2vw, 1.16rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
}

.hero-wireframe .button-primary,
.hero-wireframe .button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  height: 54px;
  padding: 0 1.3rem;
  font-size: 1.02rem;
  line-height: 1;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 0.62rem 1rem;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.button-primary {
  background: #1d2dc3;
  color: #ffffff;
  border: 1px solid #1d2dc3;
}

.button-secondary {
  background: #ffffff;
  color: #1d2dc3;
  border: 1px solid #a6b2f9;
}

.button-ghost {
  border-color: var(--color-primary);
  color: var(--color-primary);
  background: #f7f7f7;
}

.to-top-button {
  position: fixed;
  right: clamp(0.9rem, 1.5vw, 1.3rem);
  bottom: clamp(6.4rem, 8.2vw, 7.6rem);
  width: 48px;
  height: 48px;
  border: 1px solid #a6b2f9;
  border-radius: 999px;
  background: #ffffff;
  color: #1d2dc3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(18, 28, 88, 0.2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.2s ease, transform 0.2s ease, background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  z-index: 60;
}

.to-top-button svg {
  display: block;
}

.to-top-button.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.to-top-button:hover,
.to-top-button:focus-visible {
  background: #1d2dc3;
  color: #ffffff;
  border-color: #1d2dc3;
}

@media (max-width: 760px) {
  .to-top-button {
    width: 44px;
    height: 44px;
    bottom: 6.2rem;
    right: 0.75rem;
  }
}

.hero-media {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 2px solid #7887df;
  background: #e5e5e5;
  box-shadow: 0 1rem 2rem rgba(17, 17, 17, 0.12);
}

.hero-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-shape {
  min-height: 13rem;
  border-radius: var(--radius-lg);
  border: 2px solid #7887df;
  background:
    linear-gradient(120deg, rgba(29, 45, 195, 0.96), rgba(59, 74, 214, 0.9)),
    repeating-linear-gradient(-35deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.2) 6px, rgba(255, 255, 255, 0.03) 6px, rgba(255, 255, 255, 0.03) 15px);
}

.content {
  padding: var(--space-lg);
  padding-bottom: var(--space-2xl);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-surface);
}

.hero-module {
  margin-top: var(--space-lg);
}


.modular-section + .modular-section {
  margin-top: var(--space-lg);
}

.content h2,
.content h3 {
  font-family: var(--font-head);
  letter-spacing: 0.01em;
}

.content h2 {
  margin-top: clamp(1.7rem, 3vw, 2.4rem);
  margin-bottom: 0.68rem;
  color: var(--color-primary);
  font-size: clamp(1.42rem, 3vw, 1.9rem);
}

.content h3 {
  margin-top: var(--space-lg);
  margin-bottom: 0.45rem;
  font-size: clamp(1.14rem, 2.2vw, 1.35rem);
}

.content p,
.content ul,
.content ol {
  max-width: 76ch;
}

.content ul,
.content ol {
  padding-left: 1.25rem;
}

.content li + li {
  margin-top: 0.3rem;
}

.feature-grid,
.two-col {
  display: grid;
  gap: var(--space-md);
  grid-template-columns: repeat(12, minmax(0, 1fr));
  margin-top: var(--space-md);
}

.feature-card {
  grid-column: span 4;
  background: var(--color-panel);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
}

.feature-card h3,
.feature-card p {
  margin: 0;
}

.feature-card p {
  margin-top: var(--space-sm);
  color: var(--color-muted);
}

.split-card {
  grid-column: span 6;
  background: var(--color-panel);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
}

.cta-band {
  margin-top: var(--space-xl);
  padding: clamp(1.2rem, 2.3vw, 1.65rem);
  border-radius: var(--radius-md);
  color: #fff;
  background: linear-gradient(130deg, #0f1f9f, #1d2dc3 60%, #4453da);
  border: 1px solid #7684dd;
}

.cta-band h3,
.cta-band p {
  margin: 0;
  color: #fff;
}

.cta-band p {
  margin-top: var(--space-sm);
}

.contact-form-section {
  margin-top: clamp(0.65rem, 1.2vw, 1rem);
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.contact-form-section h2 {
  margin: 0;
  color: #121a3b;
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  line-height: 1.2;
}

.contact-form-section > p {
  margin: 0.65rem 0 0;
  color: #2d3b5e;
  line-height: 1.6;
  max-width: 72ch;
}

.form-wrapper {
  margin-top: 1.1rem;
}

.form-field {
  margin-bottom: 0.9rem;
}

.form-field label {
  display: inline-block;
  font-weight: 700;
  margin-bottom: 0.32rem;
  color: #13214a;
}

.form-field input:not([type="checkbox"]):not([type="radio"]),
.form-field textarea,
.form-field select {
  width: 100%;
  border: 1px solid #bcc7e8;
  border-radius: 0.78rem;
  padding: 0.72rem 0.86rem;
  font: inherit;
  color: #14234e;
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.form-field input:not([type="checkbox"]):not([type="radio"]):focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: none;
  border-color: #1d2dc3;
  box-shadow: 0 0 0 3px rgba(29, 45, 195, 0.14);
}

.form-field textarea {
  min-height: 11rem;
  resize: vertical;
}

.form-wrapper .buttons {
  display: flex;
  gap: 0.72rem;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 0.9rem;
}

.page-contact .contact-form-section .button-ghost {
  background: #ffffff;
  color: #1d2dc3;
  border: 1px solid #a6b2f9;
}

.page-contact .contact-form-section .button-ghost:hover,
.page-contact .contact-form-section .button-ghost:focus-visible {
  background: #1d2dc3;
  border-color: #1d2dc3;
  color: #ffffff;
  box-shadow: 0 8px 18px rgba(29, 45, 195, 0.2);
}

.page-contact .module-legal-section__body {
  margin-top: 0.55rem;
  max-width: 74ch;
}

.page-contact .module-legal-section__body p {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.72;
  color: #233154;
  white-space: pre-line;
}

.page-contact .module-legal-section__body p + p {
  margin-top: 0.7rem;
}

.page-contact .modular-section > .module-legal-section.home-section {
  width: min(980px, calc(100% - (var(--home-side-gap) * 2)));
  max-width: none;
  margin-inline: auto;
  padding-top: clamp(1.15rem, 2vw, 1.7rem);
  padding-bottom: clamp(0.8rem, 1.5vw, 1.1rem);
  padding-left: 0;
  padding-right: 0;
}

.page-contact .modular-section > .module-legal-section.home-section h2 {
  margin-bottom: 0.45rem;
}

.page-contact .modular-section + .modular-section {
  margin-top: 0.35rem;
}

.page-contact .modular-section .content.container {
  width: min(980px, calc(100% - (var(--home-side-gap) * 2)));
  max-width: none;
  margin-inline: auto;
  border: 0;
  background: transparent;
  border-radius: 0;
  padding: 0 0 clamp(2.2rem, 4vw, 3rem);
}

.page-contact .contact-form-section .form-label {
  margin: 0;
  padding: 0;
}

.page-contact .contact-form-section .form-data[data-grav-field="checkbox"] .form-input-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 0.62rem;
  margin-top: 0.25rem;
}

.page-contact .contact-form-section .form-data[data-grav-field="checkbox"] input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin: 0.22rem 0 0;
  flex: 0 0 18px;
  accent-color: #1d2dc3;
}

.page-contact .contact-form-section .form-data[data-grav-field="checkbox"] label.inline {
  display: inline-block !important;
  margin: 0;
  font-weight: 700;
  line-height: 1.45;
}

.page-contact .modular-section:first-of-type > .module-legal-section.home-section {
  padding-top: clamp(1.8rem, 3.2vw, 2.5rem);
}

.site-footer {
  border-top: 4px solid var(--color-primary);
  background: #bad8eb;
}

.footer-grid {
  display: grid;
  gap: var(--space-lg);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding: var(--space-xl) 0;
}

.site-footer h2 {
  margin: 0 0 var(--space-sm);
  color: var(--color-primary);
  font-size: 1rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.site-footer p,
.site-footer li {
  margin: 0;
  color: #172239;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li + li {
  margin-top: 0.35rem;
}

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

  .hero-shape {
    min-height: 10.6rem;
  }

  .feature-card {
    grid-column: span 6;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(var(--container), calc(100% - 1.4rem));
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .site-nav {
    position: fixed;
    inset: 5.1rem 0 auto 0;
    background: rgba(236, 236, 236, 0.99);
    border-bottom: 3px solid var(--color-primary);
    transform: translateY(-140%);
    transition: transform 220ms ease;
    visibility: hidden;
  }

  .site-nav.is-open {
    transform: translateY(0);
    visibility: visible;
  }

  .site-nav ul {
    display: grid;
    gap: 0;
    padding: 0.6rem;
  }

  .site-nav a {
    border-radius: var(--radius-sm);
    padding: 0.75rem;
  }

  .feature-card,
  .split-card {
    grid-column: span 12;
  }

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
.hero-slider {
  position: relative;
  overflow: hidden;
  min-height: 620px;
}

.hero-slide {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  min-height: 620px;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  inset: 0;
  transition: opacity 700ms ease;
}

.hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  position: relative;
}

.hero-slide-content h1 {
  max-width: 720px;
  font-size: clamp(3rem, 6vw, 6.5rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
  margin: 0 0 1.5rem;
}

.hero-slide-content p {
  max-width: 540px;
  font-size: 1.125rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.hero-slide-media {
  position: relative;
  overflow: hidden;
  border-radius: 3rem;
  min-height: 460px;
}

.hero-slide-media img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
  display: block;
}

.hero-slider-controls {
  position: absolute;
  left: 0;
  bottom: 2rem;
  display: flex;
  gap: 0.75rem;
  z-index: 5;
}

.hero-slider-dot {
  width: 2.5rem;
  height: 0.35rem;
  border: 0;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.18);
  cursor: pointer;
}

.hero-slider-dot.is-active {
  background: var(--color-primary, #1d2bd8);
}

@media (max-width: 900px) {
  .hero-slider,
  .hero-slide {
    min-height: auto;
  }

  .hero-slide {
    grid-template-columns: 1fr;
    position: absolute;
  }

  .hero-slide.is-active {
    position: relative;
  }

  .hero-slide-content h1 {
    font-size: clamp(2.5rem, 12vw, 4rem);
  }

  .hero-slide-media,
  .hero-slide-media img {
    min-height: 320px;
  }

  .hero-slider-controls {
    position: relative;
    bottom: auto;
    margin-top: 2rem;
  }
}

/* Home Design Refresh (reference-aligned) */
.page-home {
  background: #f3f4f7;
  color: #121a34;
  --home-max-width: 1520px;
  --home-side-gap: 1.2rem;
}

.page-home .container {
  width: min(var(--home-max-width), calc(100% - (var(--home-side-gap) * 2)));
  max-width: none;
  margin-inline: auto;
}

.page-home .site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(8px);
  border: 0;
}

.page-home .header-inner {
  min-height: 5.6rem;
}

.page-home .brand {
  gap: 0.9rem;
  padding-left: 0;
}

.page-home .brand-logo {
  height: 3.4rem;
  width: auto;
}


.page-home .site-nav a {
  color: #161f3c;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 700;
  padding: 0.52rem 0.88rem;
}

.page-home .site-nav {
  margin-right: clamp(0.4rem, 1.1vw, 1.35rem);
}

.page-home .site-nav a[aria-current='page'] {
  background: transparent;
  color: #1d2dc3;
}

.page-home .site-nav li:last-child a {
  color: #fff;
  background: #1d2dc3;
  padding: 0.78rem 1.35rem;
  border-radius: 999px;
}

.page-home .site-nav li:last-child a::after {
  content: "â†’";
  display: inline-block;
  margin-left: 0.5rem;
}

.page-home .hero-module {
  margin: 0;
  background: #ffffff;
}

.page-home .module-content,
.page-home .content {
  background: transparent;
  border: 0;
  padding: 0;
  border-radius: 0;
}

.page-home .hero-slider {
  min-height: 690px;
  overflow: visible;
}

.page-home .hero-slide {
  min-height: 690px;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(1.4rem, 2.6vw, 2.8rem);
}

.page-home .hero-slide-content {
  padding: 2.8rem 0 1.8rem;
}

.page-home .hero-slide-content .section-kicker {
  margin: 0 0 1rem;
  color: #1d2dc3;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.page-home .hero-slide-content h1 {
  margin: 0;
  color: #0f1a3c;
  font-family: "Source Sans 3", "Segoe UI", sans-serif;
  font-size: clamp(3rem, 5.2vw, 5rem);
  font-weight: 800;
  line-height: 1.03;
  letter-spacing: -0.03em;
  max-width: 16ch;
}

.page-home .hero-slide-content p {
  margin-top: 1.55rem;
  max-width: 34ch;
  color: #1f2945;
  font-size: clamp(1.12rem, 1.9vw, 1.44rem);
  line-height: 1.55;
}

.page-home .hero-actions {
  margin-top: 2.1rem;
  gap: 0.95rem;
}


.page-home .hero-slide-media {
  min-height: 620px;
  border-radius: 0 0 0 70px;
  box-shadow: 0 24px 60px rgba(17, 24, 48, 0.18);
}

.page-home .hero-slide-media::before {
  content: "";
  position: absolute;
  left: -56px;
  top: 0;
  width: 88px;
  height: 100%;
  background: #f3f4f7;
  clip-path: polygon(100% 0, 0 100%, 100% 100%);
  z-index: 2;
}

.page-home .hero-slide-media::after {
  content: "FÃ¼r eine\A inklusive und\A gerechte\A Gesellschaft.";
  white-space: pre-line;
  position: absolute;
  right: 1.3rem;
  bottom: 1.5rem;
  width: 180px;
  height: 180px;
  border-radius: 999px;
  background: #d5efcf;
  color: #10223f;
  font-size: 1.1rem;
  line-height: 1.35;
  font-weight: 600;
  padding: 1.65rem 1.4rem;
  z-index: 3;
}

.page-home .hero-slide-media img {
  min-height: 620px;
}

.page-home .hero-slider-controls {
  left: 0.1rem;
  bottom: -1.05rem;
  gap: 0.6rem;
}

.page-home .hero-slider-dot {
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: #c7cfef;
}

.page-home .hero-slider-dot.is-active {
  background: #1d2dc3;
}

.page-home .modular-section {
  margin-top: 0;
}

.page-home .home-section {
  padding: clamp(2.6rem, 5vw, 4.2rem) 0;
  border-top: 0;
}

.page-home .hero-module,
.page-home .modular-section > .module-feature-cards,
.page-home .modular-section > .module-focus-list,
.page-home .modular-section > .module-cta-block,
.page-home .home-audience,
.page-home .home-project-cta {
  padding-left: max(var(--home-side-gap), calc((100vw - var(--home-max-width)) / 2));
  padding-right: max(var(--home-side-gap), calc((100vw - var(--home-max-width)) / 2));
}

.page-home .home-section-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
  margin-bottom: 2rem;
}

.page-home .home-section h2 {
  margin: 0;
  color: #121a3b;
  font-family: "Source Sans 3", "Segoe UI", sans-serif;
  font-size: clamp(2rem, 3.4vw, 3.1rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.page-home .home-section-head > p {
  margin: 0.7rem 0 0;
  font-size: clamp(1.1rem, 1.8vw, 1.32rem);
  line-height: 1.6;
  color: #252f4a;
}

.page-home .section-kicker {
  margin: 0 0 0.65rem;
  color: #1d2dc3;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.page-home .home-offers-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 0;
  background: #f5f6fb;
  border: 1px solid #e3e6f2;
}

.page-home .home-offers-grid .feature-card {
  border: 0;
  border-right: 1px solid #e3e6f2;
  border-radius: 0;
  background: transparent;
  padding: 2rem 1.8rem 1.9rem;
}

.page-home .home-offers-grid .feature-card:last-child {
  border-right: 0;
}

.page-home .feature-icon {
  display: inline-grid;
  place-items: center;
  width: 76px;
  height: 76px;
  border-radius: 999px;
  background: #ebe9fb;
  color: #1d2dc3;
  font-size: 0;
  margin-bottom: 1.1rem;
}

.page-home .home-offers-grid .feature-card:nth-child(1) .feature-icon::before {
  content: "OO";
  font-size: 1.2rem;
  letter-spacing: -0.1em;
  font-weight: 700;
}

.page-home .home-offers-grid .feature-card:nth-child(2) .feature-icon::before {
  content: "[ ]";
  font-size: 1.2rem;
  letter-spacing: -0.04em;
  font-weight: 700;
}

.page-home .home-offers-grid .feature-card:nth-child(3) .feature-icon::before {
  content: "O";
  font-size: 1.2rem;
  font-weight: 700;
}

.page-home .home-offers-grid h3 {
  margin: 0;
  font-size: clamp(1.55rem, 2.4vw, 2rem);
  line-height: 1.18;
  color: #111b39;
  letter-spacing: -0.01em;
}

.page-home .home-offers-grid p {
  margin: 1rem 0 0;
  color: #2a3551;
  font-size: 1.07rem;
  line-height: 1.6;
}

.page-home .feature-arrow {
  display: inline-flex;
  margin-top: 1.3rem;
  color: #1d2dc3;
  font-size: 1.08rem;
  font-weight: 800;
}

.page-home .home-section-focus,
.page-home .home-section-target {
  background: #f3f4f7;
}

.page-home .home-bullet-list {
  margin: 1.2rem 0 0;
  padding-left: 1.28rem;
}

.page-home .home-bullet-list li {
  margin-bottom: 0.56rem;
  color: #1f2945;
}

.page-home .home-section-cta .cta-band {
  margin-top: 0;
  border: 0;
  border-radius: 0;
  padding: 1.35rem 1.6rem;
  background: linear-gradient(90deg, #1530d2, #223bdd 55%, #1a2dbc);
}

.page-home .home-section-modular {
  padding-bottom: 3.4rem;
}

.page-home .site-footer {
  margin-top: 0;
  border-top: 4px solid #1d2bd8;
  background: #e7e9f0;
}

.page-home .footer-grid {
  border-top: 0;
}

@media (max-width: 1080px) {
  .page-home .hero-slider,
  .page-home .hero-slide {
    min-height: auto;
  }

  .page-home .hero-slide {
    grid-template-columns: 1fr;
  }

  .page-home .hero-slide-content {
    padding-top: 1.6rem;
  }

  .page-home .hero-slide-media,
  .page-home .hero-slide-media img {
    min-height: 420px;
  }

  .page-home .hero-slide-media::before {
    display: none;
  }

  .page-home .hero-slide-media::after {
    width: 150px;
    height: 150px;
    font-size: 1rem;
    padding: 1.2rem 1rem;
  }

  .page-home .home-section-head {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .page-home .container {
    width: calc(100% - 1.2rem);
  }

  .page-home .modular-section > .module-feature-cards,
  .page-home .modular-section > .module-focus-list,
  .page-home .modular-section > .module-cta-block,
  .page-home .hero-module,
  .page-home .home-audience,
  .page-home .home-project-cta {
    padding-left: 0.6rem;
    padding-right: 0.6rem;
  }

  .page-home .brand-logo {
    height: 2.8rem;
    width: auto;
  }

  .page-home .site-nav {
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid #dbe1f1;
  }

  .page-home .site-nav li:last-child a {
    border-radius: 10px;
  }

  .page-home .hero-slide-media,
  .page-home .hero-slide-media img {
    min-height: 300px;
    border-radius: 24px;
  }

  .page-home .hero-slide-media::after {
    display: none;
  }

  .page-home .home-offers-grid {
    grid-template-columns: 1fr;
  }

  .page-home .home-offers-grid .feature-card {
    border-right: 0;
    border-bottom: 1px solid #e3e6f2;
  }

  .page-home .home-offers-grid .feature-card:last-child {
    border-bottom: 0;
  }
}

/* Wireframe Sections */
.page-home .home-impact-band,
.page-home .module-impact-band {
  padding-top: 0;
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 0;
  margin: 0;
  border-top: 0;
  background: #cccccc;
}

.page-home .impact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #F0F0F5;
  align-items: stretch;
  overflow: hidden;
}

.page-home .impact-quote {
  margin: 0;
  padding: clamp(1.8rem, 3vw, 2.8rem);
  background:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,.18), transparent 28%),
    linear-gradient(135deg, #1d2bd8 0%, #071bb8 100%);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.page-home .impact-quote-mark {
  margin: 0 0 0.1rem;
  color: rgba(237, 241, 255, 0.9);
  font-size: 4rem;
  line-height: 0.7;
  font-weight: 800;
}

.page-home .impact-quote-text {
  margin: 0;
  font-size: clamp(1.6rem, 2.45vw, 3.05rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  font-weight: 700;
}

.page-home .impact-quote-meta {
  margin: 1.25rem 0 0;
  font-size: 0;
  line-height: 1;
  border-top: 2px solid rgba(240, 244, 255, 0.9);
  margin-inline: auto;
}

.page-home .impact-quote-meta span {
  display: inline-block;
  margin-top: 0.9rem;
  font-size: 1.05rem;
  line-height: 1.25;
  opacity: 0.95;
  color: #eef2ff;
}

.page-home .impact-stats {
  padding: clamp(1.8rem, 3vw, 2.8rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.page-home .impact-stats-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: center;
  gap: clamp(1rem, 2.2vw, 2.8rem);
  margin-bottom: 1.25rem;
  max-width: 980px;
  width: 100%;
  margin-inline: auto;
}

.page-home .impact-item {
  position: relative;
  padding: 0 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-home .impact-stats p {
  text-align: center;
  margin: 0.25rem 0 0;
}

.page-home .impact-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 10px;
  bottom: 10px;
  width: 1px;
  background: #d3daef;
}

.page-home .impact-item:not(:last-child)::after {
  top: 20%;
  bottom: 20%;
  background: rgba(29,43,216,.16);
}

.page-home .impact-item-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: auto;
  height: auto;
  border-radius: 0;
  background: transparent;
  margin-bottom: 0.52rem;
  margin-inline: auto;
  color: #1d2dc3;
}

.page-home .impact-item-icon svg {
  width: 38px;
  height: 38px;
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.page-home .impact-item-icon svg path,
.page-home .impact-item-icon svg circle,
.page-home .impact-item-icon svg line,
.page-home .impact-item-icon svg polyline {
  stroke: currentColor !important;
  fill: none !important;
}

.page-home .impact-item strong {
  display: block;
  width: 100%;
  color: #1d2dc3;
  font-size: clamp(2.05rem, 2.6vw, 3.35rem);
  line-height: 1;
  letter-spacing: -0.02em;
}

.page-home .impact-item .impact-item-label {
  display: block;
  width: 100%;
  margin-top: 0.55rem;
  color: #25304d;
  font-size: 1rem;
  line-height: 1.35;
}

.page-home .impact-link {
  display: inline-flex;
  align-items: center;
  color: #1d2dc3;
  font-weight: 700;
  text-decoration: none;
  margin-top: 0.35rem;
}

.page-home .home-audience {
  background: #f7f8fe;
}

.page-home .audience-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.9fr 0.75fr;
  align-items: center;
  gap: 1.7rem;
}

.page-home .audience-media {
  margin: 0;
  min-height: 360px;
  border-radius: 36px;
  overflow: hidden;
}

.page-home .audience-media img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  display: block;
}

.page-home .audience-content p {
  margin-top: 1rem;
  color: #25304c;
}

.page-home .audience-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.8rem;
}

.page-home .audience-list li {
  padding: 0.7rem 0.85rem;
  border-radius: 14px;
  background: #eceefe;
  color: #1f2a47;
  font-weight: 600;
}

.page-home .home-project-cta {
  padding-top: 1.4rem;
  background: #f0f3ff;
}

.page-home .project-cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.2rem;
  align-items: center;
  padding: 1.35rem 1.5rem;
  border-radius: 18px;
  color: #fff;
  background: linear-gradient(90deg, #1230d8, #1f38dd);
}

.page-home .project-cta-inner h3 {
  margin: 0;
  color: #fff;
  font-family: "Source Sans 3", "Segoe UI", sans-serif;
  font-size: clamp(1.6rem, 2.2vw, 2.2rem);
  line-height: 1.2;
}

.page-home .project-cta-inner p {
  margin: 0.5rem 0 0;
  color: #e6eaff;
  max-width: none;
}


@media (max-width: 1080px) {
  .page-home .impact-grid {
    grid-template-columns: 1fr;
  }

  .page-home .impact-stats-row {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .page-home .audience-grid {
    grid-template-columns: 1fr;
  }

  .page-home .impact-item {
    padding: 0 1rem;
  }
}

@media (max-width: 760px) {
  .page-home .impact-stats-row {
    grid-template-columns: 1fr;
  }

  .page-home .impact-item {
    padding: 0.35rem 0;
  }

  .page-home .impact-item:not(:last-child)::after {
    display: none;
  }

  .page-home .project-cta-inner {
    grid-template-columns: 1fr;
  }
}

/* Reusable Modular Feature Cards */
.module-feature-cards {
  padding-top: clamp(2.1rem, 4vw, 3.2rem);
  background: #f8f8fa;
  border-top: 0;
}

.module-feature-cards__head {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: clamp(1.2rem, 2.4vw, 3rem);
  align-items: end;
  margin-bottom: clamp(1.4rem, 2.3vw, 2.2rem);
}

.module-feature-cards__head > div {
  max-width: 52rem;
}

.module-feature-cards__head h2 {
  margin: 0;
  color: #121a3b;
  font-family: "Source Sans 3", "Segoe UI", sans-serif;
  font-size: clamp(1.9rem, 3vw, 3.05rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.module-feature-cards__intro {
  margin: 0.45rem 0 0;
  max-width: 38ch;
  justify-self: end;
  color: #252f4a;
  font-size: clamp(1.02rem, 1.25vw, 1.2rem);
  line-height: 1.55;
}

.module-feature-cards__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 0;
  background: transparent;
  border: 0;
}

.module-feature-cards__card {
  border: 1px solid #e7ebf4;
  border-radius: 10px;
  background: #ffffff;
  padding: 2rem 1.8rem 1.9rem;
  min-height: 320px;
  box-shadow: none;
}

.module-feature-cards__card:last-child {
  border-right: 1px solid #e3e6f2;
}

.module-feature-cards__icon {
  display: inline-grid;
  place-items: center;
  width: 76px;
  height: 76px;
  border-radius: 999px;
  background: #f3f5fb;
  border: 1px solid #e6eaf5;
  color: #1d2dc3;
  margin-bottom: 1.1rem;
}

.module-feature-cards__icon svg {
  width: 32px;
  height: 32px;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.module-feature-cards__card h3 {
  margin: 0;
  color: #111b39;
  font-family: "Source Sans 3", "Segoe UI", sans-serif;
  font-size: clamp(1.55rem, 2.4vw, 2rem);
  line-height: 1.18;
  letter-spacing: -0.01em;
}

.module-feature-cards__text {
  margin: 1rem 0 0;
  color: #2a3551;
  font-size: 1.07rem;
  line-height: 1.6;
}

.module-feature-cards__intro > :first-child,
.module-feature-cards__text > :first-child,
.module-focus-list__intro > :first-child,
.module-focus-list__text > :first-child,
.module-cta-block__text > :first-child,
.hero-wireframe__lead > :first-child {
  margin-top: 0;
}

.module-feature-cards__intro > :last-child,
.module-feature-cards__text > :last-child,
.module-focus-list__intro > :last-child,
.module-focus-list__text > :last-child,
.module-cta-block__text > :last-child,
.hero-wireframe__lead > :last-child {
  margin-bottom: 0;
}

.module-feature-cards__link {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  margin-top: 1.3rem;
  color: #1d2dc3;
  text-decoration: none;
  font-size: 1.08rem;
  font-weight: 700;
}

.module-feature-cards__link-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.module-feature-cards__link-icon svg {
  width: 0.92rem;
  height: 0.92rem;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (max-width: 1080px) {
  .module-feature-cards__intro {
    max-width: 62ch;
  }
}

@media (max-width: 760px) {
  .module-feature-cards__grid {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .module-feature-cards__card {
    border-right: 1px solid #e3e6f2;
    min-height: 0;
  }

  .module-feature-cards__card:last-child {
    border-right: 1px solid #e3e6f2;
  }
}

/* Reusable Focus List Module */
.module-focus-list {
  border-top: 0;
  background: #ffffff;
}

.module-focus-list__head {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: clamp(1.2rem, 2.4vw, 2.8rem);
  align-items: end;
  margin-bottom: 1.7rem;
}

.module-focus-list__head-main {
  max-width: 48rem;
}

.module-focus-list__head h2 {
  margin: 0;
  
  color: #121a3b;
  font-family: "Source Sans 3", "Segoe UI", sans-serif;
  font-size: clamp(2rem, 3.2vw, 2.9rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.module-focus-list__intro {
  margin: 0.5rem 0 0;
  justify-self: end;
  color: #26314d;
  font-size: clamp(1.02rem, 1.35vw, 1.18rem);
  line-height: 1.56;
}

.module-focus-list__items {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.05rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.module-focus-list__item {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 1.1rem;
  align-items: start;
  background: #eef2ff;
  border: 1px solid #dbe3fb;
  border-radius: 20px;
  padding: 1.45rem 1.45rem 1.3rem;
  box-shadow: 0 8px 20px rgba(16, 31, 89, 0.05);
  overflow: hidden;
}

.module-focus-list__item-accent {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 6px;
  background: #1d2dc3;
  border-radius: 6px;
}

.module-focus-list__item-icon {
  display: inline-grid;
  place-items: center;
  width: 88px;
  height: 88px;
  border-radius: 999px;
  color: #ffffff;
  background: #1d2dc3;
  margin-left: 0.6rem;
}

.module-focus-list__item-icon svg {
  width: 36px;
  height: 36px;
  stroke: currentColor;
  stroke-width: 1.85;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.module-focus-list__item-copy {
  min-width: 0;
}

.module-focus-list__item h3 {
  margin: 0;
  color: #121b39;
  font-family: "Source Sans 3", "Segoe UI", sans-serif;
  font-size: clamp(1.42rem, 2vw, 2rem);
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.module-focus-list__text {
  margin: 0.75rem 0 0;
  color: #2b3653;
  font-size: 1.03rem;
  line-height: 1.58;
  max-width: 38ch;
}

.module-focus-list__item-index {
  align-self: end;
  justify-self: end;
  color: #c3cdf2;
  font-family: "Source Sans 3", "Segoe UI", sans-serif;
  font-size: clamp(3rem, 4.8vw, 5rem);
  line-height: 0.9;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-right: 0.2rem;
}

/* Reusable CTA Block Module */
.module-cta-block {
  padding-top: 1.2rem;
  background: #ffffff;
}

.module-cta-block__inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 1.25rem;
  align-items: center;
  padding: 1.6rem 1.9rem;
  border-radius: 16px;
  color: #101c3b;
  border: 1px solid #e3e8f6;
  background: #f0f3fb;
}

.module-cta-block__icon {
  display: inline-grid;
  place-items: center;
  width: auto;
  height: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #1d2dc3;

}

.module-cta-block__icon svg {
  width: 56px;
  height: 56px;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.module-cta-block__copy h3 {
  margin: 0;
  color: #121a3b;
  font-family: "Source Sans 3", "Segoe UI", sans-serif;
  font-size: clamp(1.55rem, 2vw, 2.05rem);
  line-height: 1.23;
}

.module-cta-block__text {
  margin: 0.45rem 0 0;
  color: #2a3654;
  font-size: 1.03rem;
  line-height: 1.55;
}


.module-cta-block .section-kicker {
  margin: 0 0 0.45rem;
}

@media (max-width: 1080px) {
  .module-feature-cards__head,
  .module-focus-list__head {
    grid-template-columns: 1fr;
    gap: 0.9rem;
  }

  .module-feature-cards__intro,
  .module-focus-list__intro {
    max-width: 62ch;
    justify-self: start;
    margin-top: 0;
  }

  .module-feature-cards__head > div,
  .module-focus-list__head h2 {
    max-width: none;
  }

  .module-focus-list__items {
    grid-template-columns: 1fr;
  }

  .module-focus-list__item {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .module-focus-list__item-index {
    grid-column: 2;
    justify-self: start;
    margin-top: 0.1rem;
    margin-left: 0.15rem;
  }
}

@media (max-width: 760px) {
  .module-focus-list__item {
    padding: 1.15rem 1rem 1.05rem;
    border-radius: 16px;
    gap: 0.9rem;
  }

  .module-focus-list__item-icon {
    width: 66px;
    height: 66px;
    margin-left: 0.35rem;
  }

  .module-focus-list__item-icon svg {
    width: 28px;
    height: 28px;
  }

  .module-focus-list__item h3 {
    font-size: clamp(1.25rem, 5.5vw, 1.7rem);
  }

  .module-focus-list__item-index {
    font-size: 2.6rem;
  }
}

@media (max-width: 760px) {
  .module-cta-block__inner {
    grid-template-columns: 1fr;
    align-items: start;
    padding: 1.2rem;
  }

  .module-cta-block__icon svg {
    width: 48px;
    height: 48px;
  }

}

/* Static Hero Wireframe */
.hero-wireframe {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(1.2rem, 2.2vw, 2.5rem);
  align-items: center;
  min-height: 560px;
}

.hero-wireframe__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0;
}

.hero-wireframe__text h1 {
  margin: 0;
  max-width: 11ch;
  color: #0f1a3c;
  font-family: "Source Sans 3", "Segoe UI", sans-serif;
  font-size: clamp(2.5rem, 4.6vw, 4.8rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.hero-wireframe__lead {
  margin-top: 1.55rem;
  max-width: 38ch;
  color: #1f2945;
  font-size: clamp(1rem, 1.45vw, 1.22rem);
  line-height: 1.58;
}

.hero-wireframe__media {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  border-radius: 280px 0 0 280px;
  background: #dfe5f8;
}

.hero-wireframe__media img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  display: block;
}

.hero-wireframe__badge {
  margin: 0;
  position: absolute;
  right: 1.5rem;
  bottom: 1.2rem;
  width: clamp(140px, 14vw, 190px);
  height: clamp(140px, 14vw, 190px);
  border-radius: 50%;
  background: #d9d1ff;
  color: #1a2743;
  font-size: clamp(1rem, 1.08vw, 1.18rem);
  line-height: 1.35;
  font-weight: 600;
  padding: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 3;
}

.page-home .hero-module {
  margin: 0;
  padding-top: 0;
  padding-bottom: 0;
  background: #ffffff;
}

.page-home .hero-wireframe {
  min-height: 580px;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(1.2rem, 2.2vw, 2.6rem);
}

.page-home .hero-wireframe__text {
  padding: 0;
}

.page-home .hero-wireframe__media {
  min-height: 580px;
  box-shadow: none;
}

.page-home .hero-wireframe__media::before {
  content: "";
  position: absolute;
  left: -54px;
  top: 0;
  width: 86px;
  height: 100%;
  background: #ffffff;
  clip-path: polygon(100% 0, 0 100%, 100% 100%);
  z-index: 2;
}

.page-home .hero-wireframe__media::after {
  content: "FÃ¼r eine\A inklusive und\A gerechte\A Gesellschaft.";
  white-space: pre-line;
  position: absolute;
  right: 1.3rem;
  bottom: 1.4rem;
  width: 176px;
  height: 176px;
  border-radius: 999px;
  background: #d9d1ff;
  color: #1a2743;
  font-size: 1.06rem;
  line-height: 1.34;
  font-weight: 600;
  padding: 1.5rem 1.2rem;
  z-index: 3;
}

.page-home .hero-wireframe__media img {
  min-height: 580px;
}

@media (max-width: 1080px) {
  .hero-wireframe,
  .page-home .hero-wireframe {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .hero-wireframe__text {
    padding: 1.2rem 0 1rem;
  }

  .page-home .hero-wireframe__text {
    padding: 0;
  }

  .hero-wireframe__media,
  .page-home .hero-wireframe__media {
    min-height: 400px;
    border-radius: 28px;
  }

  .hero-wireframe__media img,
  .page-home .hero-wireframe__media img {
    min-height: 400px;
  }

  .page-home .hero-wireframe__media::before {
    display: none;
  }
}

@media (max-width: 760px) {
  .hero-wireframe__media,
  .page-home .hero-wireframe__media {
    min-height: 290px;
  }

  .hero-wireframe__media img,
  .page-home .hero-wireframe__media img {
    min-height: 290px;
  }

  .page-home .hero-wireframe__media::after {
    display: none;
  }
}

/* Hero Modern Refresh */
.page-home .hero-module {
  padding-left: 0;
  padding-right: 0;
  background: #ffffff;
}

.page-home .hero-wireframe {
  min-height: 600px;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 0;
  align-items: stretch;
  background: #ffffff;
  border: 0;
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
}

.page-home .hero-wireframe__text {
  padding-top: clamp(2rem, 3vw, 3.1rem);
  padding-bottom: clamp(2rem, 3vw, 3.1rem);
  padding-left: max(var(--home-side-gap), calc((100vw - var(--home-max-width)) / 2));
  padding-right: clamp(1.2rem, 2.4vw, 2.3rem);
}

.page-home .hero-wireframe__text .section-kicker {
  margin-bottom: 1rem;
}

.page-home .hero-wireframe__text h1 {
  font-size: clamp(2rem, 3.2vw, 3.45rem);
  line-height: 1.12;
  letter-spacing: -0.028em;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

.page-home .hero-wireframe__lead {
  margin-top: 1.4rem;
  max-width: 42ch;
  font-size: clamp(1rem, 1.2vw, 1.2rem);
  line-height: 1.62;
  color: #1f2945;
}

.page-home .hero-wireframe__media {
  min-height: 600px;
  border-radius: 0;
  box-shadow: none;
  background: #d9dfef;
}

.page-home .hero-wireframe__media img {
  width: 100%;
  height: 100%;
  min-height: 600px;
  object-fit: cover;
}

.page-home .hero-wireframe__media::before,
.page-home .hero-wireframe__media::after {
  content: none;
  display: none;
}

.page-home .hero-wireframe__badge {
  right: clamp(1rem, 1.8vw, 1.8rem);
  bottom: clamp(1rem, 2vw, 1.8rem);
  width: clamp(138px, 11.5vw, 180px);
  height: clamp(138px, 11.5vw, 180px);
  padding: 1.15rem;
  font-size: clamp(0.98rem, 1vw, 1.15rem);
  background: #0000b0;
  color: #ffffff;
}

.page-home .hero-wireframe__targets {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  position: static;
  width: min(680px, 100%);
  display: grid;
  gap: 0.62rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.page-home .hero-wireframe__targets li {
  min-height: 2.8rem;
  padding: 0.72rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.62rem;
  border-radius: 10px;
  background: #ffffff;
  border: 1px solid #cfd6ea;
  box-shadow: 0 1px 0 rgba(18, 31, 74, 0.04);
  color: #1a264b;
  font-weight: 560;
  font-size: 0.98rem;
  line-height: 1.2;
  transition: border-color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.page-home .hero-wireframe__targets li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: #1d2dc3;
  flex: 0 0 auto;
}

.page-home .hero-wireframe__targets li:hover {
  border-color: #b5c0e5;
  background: #f9fbff;
  transform: translateY(-1px);
}

.page-home .hero-wireframe .hero-actions {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  gap: 0.9rem;
}


@media (max-width: 1180px) {
  .page-home .hero-wireframe {
    min-height: 540px;
  }

  .page-home .hero-wireframe__media,
  .page-home .hero-wireframe__media img {
    min-height: 540px;
  }
}

@media (max-width: 1080px) {
  .page-home .hero-wireframe {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .page-home .hero-wireframe__text {
    padding: 1.8rem 1.4rem 1.3rem;
  }

  .page-home .hero-wireframe__text h1 {
    max-width: none;
  }

  .page-home .hero-wireframe__media,
  .page-home .hero-wireframe__media img {
    min-height: 390px;
  }

  .page-home .hero-wireframe__badge {
    width: 150px;
    height: 150px;
  }

  .page-home .hero-wireframe__targets {
    width: 100%;
    grid-template-columns: 1fr 1fr;
    margin-top: 0.9rem;
  }

}

@media (max-width: 760px) {
  .page-home .hero-wireframe {
    border-radius: 0;
  }

  .page-home .hero-wireframe .hero-actions {
    flex-wrap: wrap;
  }


  .page-home .hero-wireframe__media,
  .page-home .hero-wireframe__media img {
    min-height: 290px;
  }

  .hero-wireframe__badge {
    display: none;
  }

  .page-home .hero-wireframe__targets {
    width: 100%;
    margin: 0.8rem 0 0;
    padding: 0;
    grid-template-columns: 1fr;
  }

  .page-home .hero-wireframe__targets li {
    min-height: 0;
    font-size: 0.98rem;
    padding: 0.72rem 0.85rem;
  }
}
/* Hero hotfix: prevent squeezed text column and keep clean 2-column layout */
.page-home .hero-module {
  background: #fff;
  padding-top: 0;
  padding-bottom: 0;
}

.page-home .hero-wireframe {
  max-width: var(--home-max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(560px, 1.16fr) minmax(620px, 1fr);
  gap: 0;
  align-items: stretch;
}

.page-home .hero-wireframe__text {
  display: flex;
  flex-direction: flex-start;
  justify-content: center;
  padding: clamp(2.1rem, 3vw, 3.2rem) clamp(2rem, 3vw, 3.2rem) clamp(2rem, 3vw, 3rem) clamp(2rem, 3vw, 3.2rem);
}

.page-home .hero-wireframe__text h1 {
  max-width: 12ch;
  font-size: clamp(2.4rem, 3.6vw, 4rem);
  line-height: 1.06;
  letter-spacing: -0.022em;
  hyphens: none;
  overflow-wrap: normal;
}

.page-home .hero-wireframe__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.page-home .hero-wireframe__actions .button {
  min-width: 220px;
  justify-content: center;
}

.page-home .hero-wireframe__audiences {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
  max-width: 560px;
}

.page-home .hero-wireframe__audience {
  min-height: 0;
}

.page-home .hero-wireframe__media {
  min-height: clamp(560px, 66vh, 760px);
}

.page-home .hero-wireframe__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 1320px) {
  .page-home .hero-wireframe {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }

  .page-home .hero-wireframe__text {
    padding-right: clamp(1.6rem, 2.2vw, 2.2rem);
    padding-left: clamp(1.6rem, 2.2vw, 2.2rem);
  }
}

@media (max-width: 1024px) {
  .page-home .hero-wireframe {
    grid-template-columns: minmax(0, 1fr);
  }

  .page-home .hero-wireframe__text {
    padding-right: max(var(--home-side-gap), 1rem);
    padding-left: max(var(--home-side-gap), 1rem);
  }

  .page-home .hero-wireframe__text h1 {
    max-width: 14ch;
  }

  .page-home .hero-wireframe__media {
    min-height: 420px;
  }
}
.site-header.is-scrolled {
  border-bottom: 1px solid rgba(29, 43, 216, 1);
}

.site-header.is-scrolled .header-inner {
  border-bottom: 0;
}
/* Footer color refresh inspired by legacy site */
.site-footer,
footer.site-footer {
  background: #e7e9f0;
  color: #121f4a;
  border-top: 4px solid #1d2bd8;
}

.site-footer .container,
.site-footer .footer-inner {
  background: transparent;
}

.site-footer a,
.site-footer a:visited {
  color: #1d2bd8;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: #0f1f9f;
}

.site-footer .footer-title,
.site-footer h2,
.site-footer h3,
.site-footer h4 {
  color: #16257a;
}

.site-footer .footer-bottom,
.site-footer .footer-meta,
.site-footer .subfooter {
  background: #d8e4ff;
  border-top: 2px solid #1d2bd8;
}

.site-footer .footer-nav a,
.site-footer .footer-meta a {
  font-weight: 700;
}

/* Footer final alignment + legacy color tone */
.site-footer {
  background: #e7e9f0 !important;
  border-top: 4px solid #1d2bd8 !important;
}

.site-footer .footer-grid,
.page-home .site-footer .footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr) minmax(0, 0.9fr);
  align-items: start;
  column-gap: clamp(1.6rem, 3.2vw, 4.2rem);
  row-gap: 1.1rem;
  padding: 2rem 0 2.2rem;
  border-top: 0 !important;
}

.site-footer h2 {
  margin: 0 0 0.6rem;
  line-height: 1.2;
}

.site-footer p {
  line-height: 1.55;
}

.site-footer .footer-links {
  margin-top: 0.15rem;
}

@media (max-width: 900px) {
  .site-footer .footer-grid,
  .page-home .site-footer .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* Services modular page: match home spacing and layout language */
.page-services {
  background: #f3f4f7;
  color: #121a34;
  --home-max-width: 1520px;
  --home-side-gap: 1.2rem;
}

.page-services .container {
  width: min(var(--home-max-width), calc(100% - (var(--home-side-gap) * 2)));
  max-width: none;
  margin-inline: auto;
}

.page-services .site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(8px);
  border: 0;
}

.page-services .site-header.is-scrolled {
  border-bottom: 1px solid rgba(29, 43, 216, 1);
}

.page-services .site-header.is-scrolled .header-inner {
  border-bottom: 0;
}

.page-services .header-inner {
  min-height: 5.6rem;
}

.page-services .brand {
  gap: 0.9rem;
  padding-left: 0;
}

.page-services .brand-logo {
  height: 3.4rem;
  width: auto;
}

.page-services .site-nav {
  margin-right: clamp(0.4rem, 1.1vw, 1.35rem);
}

.page-services .site-nav a {
  color: #161f3c;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 700;
  padding: 0.52rem 0.88rem;
}

.page-services .site-nav a[aria-current='page'] {
  background: transparent;
  color: #1d2dc3;
}

.page-services .site-nav li:last-child a {
  color: #fff;
  background: #1d2dc3;
  padding: 0.78rem 1.35rem;
  border-radius: 999px;
}

.page-services .site-nav li:last-child a::after {
  content: "->";
  display: inline-block;
  margin-left: 0.5rem;
}

.page-services .modular-section {
  margin-top: 0;
}

.page-services .home-section {
  padding: clamp(2.6rem, 5vw, 4.2rem) 0;
  border-top: 0;
}

.page-services .hero-module,
.page-services .modular-section > .module-feature-cards,
.page-services .modular-section > .module-focus-list,
.page-services .modular-section > .module-cta-block,
.page-services .modular-section > .module-impact-band {
  padding-left: max(var(--home-side-gap), calc((100vw - var(--home-max-width)) / 2));
  padding-right: max(var(--home-side-gap), calc((100vw - var(--home-max-width)) / 2));
}

.page-services .module-content,
.page-services .content {
  background: transparent;
  border: 0;
  padding: 0;
  border-radius: 0;
}

.page-services .hero-module {
  margin: 0;
  background: #fff;
  padding-top: 0;
  padding-bottom: 0;
}

.page-services .section-kicker {
  margin: 0 0 0.65rem;
  color: #1d2dc3;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.page-services .hero-wireframe {
  min-height: 600px;
  max-width: var(--home-max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(560px, 1.16fr) minmax(620px, 1fr);
  gap: 0;
  align-items: stretch;
  background: #ffffff;
  border: 0;
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
}

.page-services .hero-wireframe__text {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: clamp(2.1rem, 3vw, 3.2rem) clamp(2rem, 3vw, 3.2rem) clamp(2rem, 3vw, 3rem) clamp(2rem, 3vw, 3.2rem);
}

.page-services .hero-wireframe__text h1 {
  max-width: 12ch;
  font-size: clamp(2.4rem, 3.6vw, 4rem);
  line-height: 1.06;
  letter-spacing: -0.022em;
  hyphens: none;
  overflow-wrap: normal;
}

.page-services .hero-wireframe__lead {
  margin-top: 1.55rem;
  max-width: 38ch;
  color: #1f2945;
  font-size: clamp(1rem, 1.45vw, 1.22rem);
  line-height: 1.58;
}

.page-services .hero-wireframe .hero-actions {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  gap: 0.9rem;
}


.page-services .hero-wireframe__media {
  min-height: 600px;
  border-radius: 0;
  box-shadow: none;
  background: #d9dfef;
}

.page-services .hero-wireframe__media img {
  width: 100%;
  height: 100%;
  min-height: 600px;
  object-fit: cover;
}

.page-services .hero-wireframe__badge {
  right: clamp(1rem, 1.8vw, 1.8rem);
  bottom: clamp(1rem, 2vw, 1.8rem);
  width: clamp(138px, 11.5vw, 180px);
  height: clamp(138px, 11.5vw, 180px);
  padding: 1.15rem;
  font-size: clamp(0.98rem, 1vw, 1.15rem);
  background: #0000b0;
  color: #ffffff;
}

.page-services .hero-wireframe__targets {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  width: min(680px, 100%);
  display: grid;
  gap: 0.62rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.page-services .hero-wireframe__targets li {
  min-height: 2.8rem;
  padding: 0.72rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.62rem;
  border-radius: 10px;
  background: #ffffff;
  border: 1px solid #cfd6ea;
  box-shadow: 0 1px 0 rgba(18, 31, 74, 0.04);
  color: #1a264b;
  font-weight: 560;
  font-size: 0.98rem;
  line-height: 1.2;
}

.page-services .hero-wireframe__targets li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: #1d2dc3;
  flex: 0 0 auto;
}

@media (max-width: 1320px) {
  .page-services .hero-wireframe {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }

  .page-services .hero-wireframe__text {
    padding-right: clamp(1.6rem, 2.2vw, 2.2rem);
    padding-left: clamp(1.6rem, 2.2vw, 2.2rem);
  }
}

@media (max-width: 1080px) {
  .page-services .hero-wireframe {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .page-services .hero-wireframe__text {
    padding: 1.8rem 1.4rem 1.3rem;
  }

  .page-services .hero-wireframe__text h1 {
    max-width: 14ch;
  }

  .page-services .hero-wireframe__media,
  .page-services .hero-wireframe__media img {
    min-height: 390px;
  }

  .page-services .hero-wireframe__badge {
    width: 150px;
    height: 150px;
  }

  .page-services .hero-wireframe__targets {
    width: 100%;
    grid-template-columns: 1fr 1fr;
    margin-top: 0.9rem;
  }

}

@media (max-width: 760px) {
  .page-services .container {
    width: calc(100% - 1.2rem);
  }

  .page-services .modular-section > .module-feature-cards,
  .page-services .modular-section > .module-focus-list,
  .page-services .modular-section > .module-cta-block,
  .page-services .modular-section > .module-impact-band,
  .page-services .hero-module {
    padding-left: 0.6rem;
    padding-right: 0.6rem;
  }

  .page-services .hero-wireframe .hero-actions {
    flex-wrap: wrap;
  }


  .page-services .hero-wireframe__media,
  .page-services .hero-wireframe__media img {
    min-height: 290px;
  }

  .page-services .hero-wireframe__badge {
    display: none;
  }

  .page-services .hero-wireframe__targets {
    width: 100%;
    margin: 0.8rem 0 0;
    padding: 0;
    grid-template-columns: 1fr;
  }
}

/** Impressum **/
.page-impressum {
  background: #f3f4f7;
  color: #121a34;
  --home-max-width: 1520px;
  --home-side-gap: 1.2rem;
}

.page-impressum .container {
  width: min(var(--home-max-width), calc(100% - (var(--home-side-gap) * 2)));
  max-width: none;
  margin-inline: auto;
}

.page-impressum .site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(8px);
  border: 0;
}

.page-impressum .site-header.is-scrolled {
  border-bottom: 1px solid rgba(29, 43, 216, 1);
}

.page-impressum .site-header.is-scrolled .header-inner {
  border-bottom: 0;
}

.page-impressum .header-inner {
  min-height: 5.6rem;
}

.page-impressum .brand {
  gap: 0.9rem;
  padding-left: 0;
}

.page-impressum .brand-logo {
  height: 3.4rem;
  width: auto;
}

.page-impressum .site-nav {
  margin-right: clamp(0.4rem, 1.1vw, 1.35rem);
}

.page-impressum .site-nav a {
  color: #161f3c;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 700;
  padding: 0.52rem 0.88rem;
}

.page-impressum .site-nav a[aria-current='page'] {
  background: transparent;
  color: #1d2dc3;
}

.page-impressum .site-nav li:last-child a {
  color: #fff;
  background: #1d2dc3;
  padding: 0.78rem 1.35rem;
  border-radius: 999px;
}

.page-impressum .site-nav li:last-child a::after {
  content: "->";
  display: inline-block;
  margin-left: 0.5rem;
}

.page-impressum .modular-section {
  margin-top: 0;
}

.page-impressum .home-section {
  padding: clamp(2.6rem, 5vw, 4.2rem) 0;
  border-top: 0;
}

.page-impressum .hero-module,
.page-impressum .modular-section > .module-legal-section {
  padding-left: max(var(--home-side-gap), calc((100vw - var(--home-max-width)) / 2));
  padding-right: max(var(--home-side-gap), calc((100vw - var(--home-max-width)) / 2));
}

.page-impressum .module-content,
.page-impressum .content {
  background: transparent;
  border: 0;
  padding: 0;
  border-radius: 0;
}

.page-impressum .hero-module {
  margin: 0;
  background: #fff;
  padding-top: 0;
  padding-bottom: 0;
}

.page-impressum .section-kicker {
  margin: 0 0 0.65rem;
  color: #1d2dc3;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.page-impressum .hero-wireframe {
  min-height: 600px;
  max-width: var(--home-max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(560px, 1.16fr) minmax(620px, 1fr);
  gap: 0;
  align-items: stretch;
  background: #ffffff;
  border: 0;
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
}

.page-impressum .hero-wireframe__text {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: clamp(2.1rem, 3vw, 3.2rem) clamp(2rem, 3vw, 3.2rem) clamp(2rem, 3vw, 3rem) clamp(2rem, 3vw, 3.2rem);
}

.page-impressum .hero-wireframe__text h1 {
  max-width: 12ch;
  font-size: clamp(2.4rem, 3.6vw, 4rem);
  line-height: 1.06;
  letter-spacing: -0.022em;
  hyphens: none;
  overflow-wrap: normal;
}

.page-impressum .hero-wireframe__lead {
  margin-top: 1.55rem;
  max-width: 38ch;
  color: #1f2945;
  font-size: clamp(1rem, 1.45vw, 1.22rem);
  line-height: 1.58;
}

.page-impressum .hero-wireframe .hero-actions {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  gap: 0.9rem;
}


.page-impressum .hero-wireframe__media {
  min-height: 600px;
  border-radius: 0;
  box-shadow: none;
  background: #d9dfef;
}

.page-impressum .hero-wireframe__media img {
  width: 100%;
  height: 100%;
  min-height: 600px;
  object-fit: cover;
}

.page-impressum .hero-wireframe__badge {
  right: clamp(1rem, 1.8vw, 1.8rem);
  bottom: clamp(1rem, 2vw, 1.8rem);
  width: clamp(138px, 11.5vw, 180px);
  height: clamp(138px, 11.5vw, 180px);
  padding: 1.15rem;
  font-size: clamp(0.98rem, 1vw, 1.15rem);
  background: #0000b0;
  color: #ffffff;
}

.page-impressum .hero-wireframe__targets {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  width: min(680px, 100%);
  display: grid;
  gap: 0.62rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.page-impressum .hero-wireframe__targets li {
  min-height: 2.8rem;
  padding: 0.72rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.62rem;
  border-radius: 10px;
  background: #ffffff;
  border: 1px solid #cfd6ea;
  box-shadow: 0 1px 0 rgba(18, 31, 74, 0.04);
  color: #1a264b;
  font-weight: 560;
  font-size: 0.98rem;
  line-height: 1.2;
}

.page-impressum .hero-wireframe__targets li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: #1d2dc3;
  flex: 0 0 auto;
}

@media (max-width: 1320px) {
  .page-impressum .hero-wireframe {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }

  .page-impressum .hero-wireframe__text {
    padding-right: clamp(1.6rem, 2.2vw, 2.2rem);
    padding-left: clamp(1.6rem, 2.2vw, 2.2rem);
  }
}

@media (max-width: 1080px) {
  .page-impressum .hero-wireframe {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .page-impressum .hero-wireframe__text {
    padding: 1.8rem 1.4rem 1.3rem;
  }

  .page-impressum .hero-wireframe__text h1 {
    max-width: 14ch;
  }

  .page-impressum .hero-wireframe__media,
  .page-impressum .hero-wireframe__media img {
    min-height: 390px;
  }

  .page-impressum .hero-wireframe__badge {
    width: 150px;
    height: 150px;
  }

  .page-impressum .hero-wireframe__targets {
    width: 100%;
    grid-template-columns: 1fr 1fr;
    margin-top: 0.9rem;
  }

}

@media (max-width: 760px) {
  .page-impressum .container {
    width: calc(100% - 1.2rem);
  }

  .page-impressum .modular-section > .module-feature-cards,
  .page-impressum .modular-section > .module-focus-list,
  .page-impressum .modular-section > .module-cta-block,
  .page-impressum .modular-section > .module-impact-band,
  .page-impressum .hero-module {
    padding-left: 0.6rem;
    padding-right: 0.6rem;
  }

  .page-impressum .hero-wireframe .hero-actions {
    flex-wrap: wrap;
  }


  .page-impressum .hero-wireframe__media,
  .page-impressum .hero-wireframe__media img {
    min-height: 290px;
  }

  .page-impressum .hero-wireframe__badge {
    display: none;
  }

  .page-impressum .hero-wireframe__targets {
    width: 100%;
    margin: 0.8rem 0 0;
    padding: 0;
    grid-template-columns: 1fr;
  }
}

/* Shared header system for home + services */
.page-home .site-header,
.page-services .site-header,
.page-impressum .site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(8px);
  border: 0;
}

.page-home .site-header.is-scrolled,
.page-services .site-header.is-scrolled,
.page-impressum .site-header.is-scrolled {
  border-bottom: 1px solid rgba(29, 43, 216, 1);
}

.page-home .site-header.is-scrolled .header-inner,
.page-services .site-header.is-scrolled .header-inner,
.page-impressum .site-header.is-scrolled .header-inner {
  border-bottom: 0;
}

.page-home .header-inner,
.page-services .header-inner,
.page-impressum .header-inner {
  min-height: 5.6rem;
}

.page-home .brand,
.page-services .brand,
.page-impressum .brand,
.page-about .brand{
  gap: 0.9rem;
  padding-left: 0;
}

.page-home .brand-logo,
.page-services .brand-logo,
.page-impressum .brand-logo,
.page-about .brand-logo {
  height: 3.4rem;
  width: auto;
}

.page-home .site-nav,
.page-services .site-nav,
.page-impressum .site-nav,
.page-about .site-nav {
  margin-right: clamp(0.4rem, 1.1vw, 1.35rem);
}

.page-home .site-nav a,
.page-services .site-nav a,
.page-impressum .site-nav a,
.page-about .site-nav a {
  color: #161f3c;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 700;
  padding: 0.52rem 0.88rem;
}

.page-home .site-nav a[aria-current='page'],
.page-services .site-nav a[aria-current='page'],
.page-impressum .site-nav a[aria-current='page'],
.page-about .site-nav a[aria-current='page'] {
  background: transparent;
  color: #1d2dc3;
}

.page-home .site-nav li:last-child a,
.page-services .site-nav li:last-child a,
.page-impressum .site-nav li:last-child a,
.page-about .site-nav li:last-child a {
  color: #fff;
  background: #1d2dc3;
  border: 1px solid #1d2dc3;
  padding: 0.78rem 1.35rem;
  border-radius: 999px;
  transition: background-color 0.24s ease, color 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.page-home .site-nav li:last-child a:hover,
.page-home .site-nav li:last-child a:focus-visible,
.page-services .site-nav li:last-child a:hover,
.page-services .site-nav li:last-child a:focus-visible,
.page-impressum .site-nav li:last-child a:hover,
.page-impressum .site-nav li:last-child a:focus-visible,
.page-about .site-nav li:last-child a:hover,
.page-about .site-nav li:last-child a:focus-visible {
  background: #ffffff;
  color: #1d2dc3;
  border-color: #1d2dc3;
  box-shadow: 0 10px 22px rgba(29, 45, 195, 0.16);
}

.page-home .site-nav li:last-child a::after,
.page-services .site-nav li:last-child a::after,
.page-impressum .site-nav li:last-child a::after,
.page-about .site-nav li:last-child a::after {
  content: none;
}

.page-home .site-nav .nav-link-icon,
.page-services .site-nav .nav-link-icon,
.page-impressum .site-nav .nav-link-icon,
.page-about .site-nav .nav-link-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 0.46rem;
  vertical-align: middle;
}

.page-home .site-nav .nav-link-icon svg,
.page-services .site-nav .nav-link-icon svg,
.page-impressum .site-nav .nav-link-icon svg,
.page-about .site-nav .nav-link-icon svg {
  width: 0.95rem;
  height: 0.95rem;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Shared hero parity: stable responsive behavior without clipped content */
.page-home,
.page-services,
.page-impressum,
.page-about,
.page-contact,
.page-datenschutz {
  --hero-min-h-desktop: 760px;
  --hero-media-h-tablet: 420px;
  --hero-media-h-mobile: 300px;
}

.page-home .hero-module,
.page-services .hero-module,
.page-impressum .hero-module,
.page-about .hero-module,
.page-contact .hero-module,
.page-datenschutz .hero-module {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.page-home .hero-module .module-content.container,
.page-services .hero-module .module-content.container,
.page-impressum .hero-module .module-content.container,
.page-about .hero-module .module-content.container,
.page-contact .hero-module .module-content.container,
.page-datenschutz .hero-module .module-content.container {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}

.page-home .hero-module .hero-wireframe,
.page-services .hero-module .hero-wireframe,
.page-impressum .hero-module .hero-wireframe,
.page-about .hero-module .hero-wireframe,
.page-contact .hero-module .hero-wireframe,
.page-datenschutz .hero-module .hero-wireframe {
  width: 100%;
  max-width: none;
  margin: 0;
  grid-template-columns: minmax(560px, 1.16fr) minmax(620px, 1fr);
  min-height: var(--hero-min-h-desktop);
  height: auto !important;
}

.page-home .hero-module .hero-wireframe__text,
.page-services .hero-module .hero-wireframe__text,
.page-impressum .hero-module .hero-wireframe__text,
.page-about .hero-module .hero-wireframe__text,
.page-contact .hero-module .hero-wireframe__text,
.page-datenschutz .hero-module .hero-wireframe__text {
  padding-top: clamp(2rem, 3vw, 3.1rem);
  padding-bottom: clamp(2rem, 3vw, 3.1rem);
  padding-left: max(var(--home-side-gap), calc((100vw - var(--home-max-width)) / 2));
  padding-right: clamp(1.3rem, 2.3vw, 2.3rem);
}

.page-home .hero-module .hero-wireframe__media,
.page-services .hero-module .hero-wireframe__media,
.page-home .hero-module .hero-wireframe__media img,
.page-services .hero-module .hero-wireframe__media img,
.page-impressum .hero-module .hero-wireframe__media,
.page-impressum .hero-module .hero-wireframe__media img,
.page-about .hero-module .hero-wireframe__media,
.page-about .hero-module .hero-wireframe__media img,
.page-contact .hero-module .hero-wireframe__media,
.page-contact .hero-module .hero-wireframe__media img,
.page-datenschutz .hero-module .hero-wireframe__media,
.page-datenschutz .hero-module .hero-wireframe__media img {
  min-height: var(--hero-min-h-desktop);
  height: 100% !important;
}

@media (max-width: 1320px) {
  .page-home .hero-module .hero-wireframe,
  .page-services .hero-module .hero-wireframe,
  .page-impressum .hero-module .hero-wireframe,
  .page-about .hero-module .hero-wireframe,
  .page-contact .hero-module .hero-wireframe,
  .page-datenschutz .hero-module .hero-wireframe {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }
}

@media (max-width: 1080px) {
  .page-home .hero-module .hero-wireframe,
  .page-services .hero-module .hero-wireframe,
  .page-impressum .hero-module .hero-wireframe,
  .page-about .hero-module .hero-wireframe,
  .page-contact .hero-module .hero-wireframe,
  .page-datenschutz .hero-module .hero-wireframe {
    grid-template-columns: 1fr;
    min-height: 0;
    height: auto !important;
  }

  .page-home .hero-module .hero-wireframe__media,
  .page-services .hero-module .hero-wireframe__media,
  .page-impressum .hero-module .hero-wireframe__media,
  .page-about .hero-module .hero-wireframe__media,
  .page-contact .hero-module .hero-wireframe__media,
  .page-datenschutz .hero-module .hero-wireframe__media,
  .page-home .hero-module .hero-wireframe__media img,
  .page-services .hero-module .hero-wireframe__media img,
  .page-impressum .hero-module .hero-wireframe__media img,
  .page-about .hero-module .hero-wireframe__media img,
  .page-contact .hero-module .hero-wireframe__media img,
  .page-datenschutz .hero-module .hero-wireframe__media img {
    min-height: var(--hero-media-h-tablet);
    height: var(--hero-media-h-tablet) !important;
  }

  .page-home .hero-module .hero-wireframe__text,
  .page-services .hero-module .hero-wireframe__text,
  .page-impressum .hero-module .hero-wireframe__text,
  .page-about .hero-module .hero-wireframe__text,
  .page-contact .hero-module .hero-wireframe__text,
  .page-datenschutz .hero-module .hero-wireframe__text {
    padding-left: max(var(--home-side-gap), 1rem);
    padding-right: max(var(--home-side-gap), 1rem);
    padding-top: 1.6rem;
    padding-bottom: 1.2rem;
  }

  .page-home .hero-module .hero-wireframe__text h1,
  .page-services .hero-module .hero-wireframe__text h1,
  .page-impressum .hero-module .hero-wireframe__text h1,
  .page-about .hero-module .hero-wireframe__text h1,
  .page-contact .hero-module .hero-wireframe__text h1,
  .page-datenschutz .hero-module .hero-wireframe__text h1 {
    max-width: none;
  }
}

@media (max-width: 760px) {
  .page-home .hero-module .hero-wireframe,
  .page-services .hero-module .hero-wireframe,
  .page-impressum .hero-module .hero-wireframe,
  .page-about .hero-module .hero-wireframe,
  .page-contact .hero-module .hero-wireframe,
  .page-datenschutz .hero-module .hero-wireframe {
    min-height: 0;
    height: auto !important;
  }

  .page-home .hero-module .hero-wireframe__media,
  .page-services .hero-module .hero-wireframe__media,
  .page-impressum .hero-module .hero-wireframe__media,
  .page-about .hero-module .hero-wireframe__media,
  .page-contact .hero-module .hero-wireframe__media,
  .page-datenschutz .hero-module .hero-wireframe__media,
  .page-home .hero-module .hero-wireframe__media img,
  .page-services .hero-module .hero-wireframe__media img,
  .page-impressum .hero-module .hero-wireframe__media img,
  .page-about .hero-module .hero-wireframe__media img,
  .page-contact .hero-module .hero-wireframe__media img,
  .page-datenschutz .hero-module .hero-wireframe__media img {
    min-height: var(--hero-media-h-mobile);
    height: var(--hero-media-h-mobile) !important;
  }

  .page-home .hero-module .hero-wireframe .hero-actions,
  .page-services .hero-module .hero-wireframe .hero-actions,
  .page-impressum .hero-module .hero-wireframe .hero-actions,
  .page-about .hero-module .hero-wireframe .hero-actions,
  .page-contact .hero-module .hero-wireframe .hero-actions,
  .page-datenschutz .hero-module .hero-wireframe .hero-actions {
    flex-wrap: wrap;
  }
}

/* Services-only feature cards layout (independent from homepage) */
.page-services .module-feature-cards__grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.page-home .module-feature-cards__card,
.page-services .module-feature-cards__card {
  display: flex;
  flex-direction: column;
}

.page-services .module-feature-cards__card {
  min-height: 350px;
}

.page-home .module-feature-cards__link,
.page-services .module-feature-cards__link {
  align-self: flex-end;
  margin-left: auto;
  margin-top: auto;
  padding: 0.6rem 1rem;
  border: 1px solid #1d2dc3;
  border-radius: 999px;
  background: #ffffff;
  color: #1d2dc3;
  font-size: 0.98rem;
}

.page-services .module-feature-cards__link:hover,
.page-home .module-feature-cards__link:hover,
.page-home .module-feature-cards__link:focus-visible,
.page-services .module-feature-cards__link:focus-visible {
  background: #1d2dc3;
  color: #ffffff;
}

@media (max-width: 900px) {
  .page-services .module-feature-cards__grid {
    grid-template-columns: 1fr;
  }
}

/* Services process flow (Ablauf) variant */
.page-services .module-focus-list--process {
  background: #f8f8fa;
  border-radius: 0;
  padding: clamp(1.6rem, 2.4vw, 2.2rem) 0;
  display: grid;
  grid-template-columns: minmax(320px, 0.4fr) minmax(0, 1fr);
  gap: clamp(1.6rem, 2.7vw, 3rem);
  align-items: start;
}

.page-services .module-focus-list--process .module-focus-list__head {
  display: block;
  margin: 0;
  padding-right: clamp(0.2rem, 1.3vw, 1rem);
}

.page-services .module-focus-list--process .module-focus-list__head-main::after {
  content: "";
  display: block;
  width: 86px;
  margin-top: 1.25rem;
  border-top: 3px solid #1d2dc3;
}

.page-services .module-focus-list--process .module-focus-list__intro {
  margin: 1.2rem 0 0;
  justify-self: auto;
  font-size: clamp(1.02rem, 1.35vw, 1.18rem);
  line-height: 1.55;
}

.module-focus-list__item-arrow {
  display: none;
}

.page-services .module-focus-list--process .module-focus-list__items {
  position: relative;
  grid-template-columns: 1fr;
  gap: 1.05rem;
  padding: 0;
  margin: 0;
  padding-left: 116px;
}

.page-services .module-focus-list--process .module-focus-list__items::before {
  content: "";
  position: absolute;
  left: 56px;
  top: 32px;
  width: 3px;
  height: calc(100% - 64px);
  background: #d2d8f1;
  border-radius: 999px;
}

.page-services .module-focus-list--process .module-focus-list__item {
  position: relative;
  z-index: 1;
  grid-template-columns: 132px minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem;
  background: #ffffff;
  border: 1px solid #d9deee;
  border-radius: 20px;
  padding: 1.25rem 1.6rem;
  margin: 0;
  box-shadow: none;
  overflow: visible;
}

.page-services .module-focus-list--process .module-focus-list__item-accent {
  display: none;
}

.page-services .module-focus-list--process .module-focus-list__item:not(:last-child)::after {
  content: "";
  position: absolute;
  left: -60px;
  top: calc(100% + 8px);
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 3px solid #b8c5ef;
  background: #f8f8fa;
  transform: translateX(-50%);
}

.page-services .module-focus-list--process .module-focus-list__item-icon {
  width: 92px;
  height: 92px;
  margin-left: 0.2rem;
  background: #edf1ff;
  color: #2c44cf;
}

.page-services .module-focus-list--process .module-focus-list__item h3 {
  font-size: clamp(1.6rem, 2vw, 2.25rem);
  line-height: 1.16;
  letter-spacing: -0.01em;
}

.page-services .module-focus-list--process .module-focus-list__text {
  margin-top: 0.5rem;
  font-size: clamp(1.18rem, 1.4vw, 1.6rem);
  line-height: 1.4;
  max-width: 42ch;
}

.page-services .module-focus-list--process .module-focus-list__item-copy {
  text-align: left;
}

.page-services .module-focus-list--process .module-focus-list__item-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #2f45cf;
  margin-right: 0.6rem;
}

.page-services .module-focus-list--process .module-focus-list__item-arrow svg {
  width: 1.6rem;
  height: 1.6rem;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.page-services .module-focus-list--process .module-focus-list__item-index {
  position: absolute;
  left: -60px;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: #1d2dc3;
  color: #ffffff;
  font-size: 2.1rem;
  line-height: 1;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0;
}

@media (max-width: 1080px) {
  .page-services .module-focus-list--process {
    grid-template-columns: 1fr;
    gap: 1.2rem;
    padding: 1.3rem 0;
  }

  .page-services .module-focus-list--process .module-focus-list__head-main::after {
    margin-top: 0.95rem;
  }

  .page-services .module-focus-list--process .module-focus-list__items {
    padding-left: 0;
  }

  .page-services .module-focus-list--process .module-focus-list__items::before {
    display: none;
  }

  .page-services .module-focus-list--process .module-focus-list__item {
    grid-template-columns: 96px minmax(0, 1fr) auto;
    padding: 1.1rem 1.05rem;
  }

  .page-services .module-focus-list--process .module-focus-list__item:not(:last-child)::after {
    display: none;
  }

  .page-services .module-focus-list--process .module-focus-list__item-index {
    position: static;
    transform: none;
    width: 44px;
    height: 44px;
    font-size: 1.32rem;
    margin-left: auto;
  }

  .page-services .module-focus-list--process .module-focus-list__item h3 {
    font-size: clamp(1.28rem, 3vw, 1.82rem);
  }

  .page-services .module-focus-list--process .module-focus-list__text {
    font-size: clamp(1.02rem, 2vw, 1.2rem);
    max-width: none;
  }
}

@media (max-width: 760px) {
  .page-services .module-focus-list--process .module-focus-list__item {
    grid-template-columns: 1fr;
    justify-items: start;
    text-align: left;
    gap: 0.55rem;
    padding: 0.95rem 4rem 0.95rem 0.9rem;
  }

  .page-services .module-focus-list--process .module-focus-list__item-icon {
    width: 62px;
    height: 62px;
    margin-left: 0;
  }

  .page-services .module-focus-list--process .module-focus-list__item-copy {
    text-align: left;
    padding-right: 0.2rem;
  }

  .page-services .module-focus-list--process .module-focus-list__item-arrow {
    display: none;
  }

  .page-services .module-focus-list--process .module-focus-list__item-index {
    position: absolute;
    left: auto;
    right: 0.85rem;
    top: 0.85rem;
    bottom: auto;
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }
}
/* Einheitliche Button-Interaktionen (siteweit, ohne Transform) */
.button-primary,
.button-secondary {
  transition: background-color 0.24s ease, color 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
  transform: none !important;
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #ffffff;
  border-color: #1d2dc3;
  color: #1d2dc3;
  box-shadow: 0 10px 22px rgba(29, 45, 195, 0.16);
  transform: none !important;
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: #1d2dc3;
  border-color: #1d2dc3;
  color: #ffffff;
  box-shadow: 0 8px 18px rgba(29, 45, 195, 0.2);
  transform: none !important;
}

.button-primary:active,
.button-secondary:active {
  transform: none !important;
}

@media (max-width: 1180px) {
  .hero-wireframe .button-primary,
  .hero-wireframe .button-secondary {
    min-width: 200px;
    height: 52px;
  }
}

@media (max-width: 760px) {
  .hero-wireframe .button-primary,
  .hero-wireframe .button-secondary {
    width: 100%;
    justify-content: center;
  }
}
