:root {
  --accent: #86032e;
  --text: #3e3c3c;
  --muted: #8b8b8b;
  --soft: #f3f3f3;
  --footer: #9395a0;
  --image-3d-shadow: 0 20px 36px rgba(0, 0, 0, .18), 0 6px 14px rgba(0, 0, 0, .12);
  --header-inline-padding: 48px;
  --header-inline-padding-tablet: 28px;
  --header-inline-padding-mobile: 18px;
}

@font-face {
  font-family: "FontAwesome";
  src: url("../fonts/fontawesome-webfont.woff2?v=4.6.3") format("woff2"),
       url("../fonts/fontawesome-webfont.woff?v=4.6.3") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: block;
}

.fa {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.fa-heart::before {
  content: "\f004";
}

.fa-coffee::before {
  content: "\f0f4";
}

.text-color-primary {
  color: var(--accent);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.accessibility-reduced-motion,
body.accessibility-reduced-motion * {
  scroll-behavior: auto !important;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Roboto", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  background: #fff;
  font-synthesis: none;
}

button,
input,
select,
textarea {
  font-family: "Roboto", Arial, sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Roboto", Arial, sans-serif;
}

[hidden] {
  display: none !important;
}

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

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

button {
  font: inherit;
}

.skip-link,
.sr-only {
  position: absolute;
}

.skip-link {
  top: 12px;
  left: 16px;
  z-index: 100;
  padding: 10px 14px;
  color: #fff;
  background: var(--accent);
  transform: translateY(-150%);
  transition: transform .2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-height: 150px;
  padding: 0 var(--header-inline-padding);
  color: #fff;
  transition: min-height .25s ease, padding .25s ease, background .25s ease, box-shadow .25s ease;
}

.site-header.is-scrolled {
  min-height: 92px;
  padding: 22px var(--header-inline-padding);
  background: rgba(255, 255, 255, .98);
  box-shadow: 0 1px 10px rgba(0, 0, 0, .08);
  color: var(--text);
}

.brand {
  position: absolute;
  left: var(--header-inline-padding);
  top: 0;
  display: block;
  width: 220px;
  height: 150px;
  opacity: 1;
  pointer-events: auto;
  transition: width .25s ease, height .25s ease, left .25s ease, top .25s ease;
}

.brand img {
  position: absolute;
  top: 42px;
  left: 0;
  width: 220px;
  height: auto;
  transition: top .25s ease, width .25s ease, filter .25s ease, opacity .25s ease;
}

.brand-dark {
  opacity: 0;
}

.site-header.is-scrolled .brand {
  left: var(--header-inline-padding);
  top: 14px;
  width: 205px;
  height: 65px;
}

.site-header.is-scrolled .brand img {
  top: 0;
  width: 205px;
}

.site-header.is-scrolled .brand-light {
  opacity: 0;
}

.site-header.is-scrolled .brand-dark {
  opacity: 1;
}

.main-nav {
  --nav-gap: 50px;
  display: flex;
  align-items: center;
  gap: var(--nav-gap);
  margin-left: 0;
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
}

.main-nav > a,
.nav-group > .nav-trigger {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0;
  border: 0;
  font: inherit;
  line-height: 30px;
  color: inherit;
  background: transparent;
  cursor: pointer;
  white-space: nowrap;
  text-transform: uppercase;
}

.main-nav > a.active,
.nav-group.is-active > .nav-trigger,
.nav-group:hover > .nav-trigger,
.nav-group.is-open > .nav-trigger,
.main-nav > a:hover {
  color: var(--accent);
}

.main-nav > a.active::before,
.nav-group.is-active > .nav-trigger::before,
.nav-group:hover > .nav-trigger::before,
.nav-group.is-open > .nav-trigger::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -12px;
  height: 2px;
  background: var(--accent);
}

.nav-group {
  position: relative;
}

.nav-group::after {
  content: "";
  position: absolute;
  z-index: 1;
  left: -28px;
  right: -28px;
  top: 100%;
  height: 24px;
}

.dropdown {
  position: absolute;
  z-index: 2;
  top: calc(100% + 18px);
  left: 50%;
  width: 260px;
  padding: 16px 0;
  background: #fff;
  color: #8a8a8a;
  box-shadow: 0 14px 35px rgba(0, 0, 0, .14);
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(8px);
  transition: opacity .2s ease, transform .2s ease;
}

.dropdown a {
  display: block;
  padding: 9px 24px;
  text-transform: none;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.35;
}

.dropdown a:hover {
  color: #232324;
}

.dropdown a:focus-visible {
  color: #232324;
  background: rgba(134, 3, 46, .08);
}

.nav-group:hover .dropdown,
.nav-group:focus-within .dropdown,
.nav-group.is-open .dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.flag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 21px;
  height: 14px;
  transition: transform .2s ease, opacity .2s ease, outline-offset .2s ease;
}

.main-nav .flag + .flag {
  margin-left: calc(var(--nav-gap) / -2);
}

.flag:hover {
  transform: translateY(-1px);
  opacity: .9;
}

.site-header.is-scrolled .flag {
  filter: saturate(.98);
}

.flag img {
  display: block;
  width: 18px;
  height: 12px;
  object-fit: cover;
}

.menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border: 0;
  background: transparent;
  padding: 8px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 6px 0;
  background: currentColor;
}

body:not([data-homepage]) .site-header {
  justify-content: flex-end;
  padding: 0 var(--header-inline-padding);
  color: #fff;
}

body:not([data-homepage]) .site-header.is-scrolled {
  color: var(--text);
}

body:not([data-homepage]) .brand {
  opacity: 1;
  pointer-events: auto;
}

body:not([data-homepage]) .main-nav {
  margin-left: auto;
}

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: #0b1d36;
}

.slides,
.slide {
  position: absolute;
  inset: 0;
}

.slide {
  display: grid;
  place-items: center;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1);
  transition: opacity 1.15s ease, transform 1.15s ease;
  will-change: opacity, transform;
}

.slide.is-active {
  opacity: 1;
  animation: heroSlideZoom 7s linear forwards;
}

.slide.is-exiting {
  opacity: 0;
  transform: scale(1.14);
}

@keyframes heroSlideZoom {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.12);
  }
}

.hero-frame {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 100vh;
  background-position: center;
  background-size: cover;
}

.hero-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: transparent;
}

.hero-title {
  position: relative;
  z-index: 1;
  width: min(900px, calc(100vw - 60px));
  margin-top: 0;
  text-align: center;
  color: #fff;
}

.hero-title h1 {
  margin: 0 0 26px;
  color: #fff;
  font-size: clamp(42px, 4.5vw, 78px);
  font-weight: 300;
  line-height: .92;
  letter-spacing: 0;
}

.section h2 span,
.timeline-section h2 span,
.partners h2 span,
.text-columns h3 span,
.subtitle span {
  color: var(--accent);
}

.hero-title h1 span,
.hero-title h1 em {
  color: var(--accent);
  font-style: normal;
}

.hero-title h1 {
  text-shadow: 0 2px 8px rgba(0, 0, 0, .28);
}

.hero-title h1 {
  word-spacing: -3px;
}

.hero-title h1 br {
  display: block;
}

.hero-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.hero-link {
  transition: color .2s ease, opacity .2s ease;
}

.hero-link:hover,
.hero-link:focus-visible {
  color: rgba(255, 255, 255, .76);
}

.hero-links span {
  width: 5px;
  height: 26px;
  background: rgba(134, 3, 46, .65);
}

.slider-arrow {
  position: absolute;
  z-index: 3;
  top: 50%;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  transform: translateY(-50%) rotate(45deg);
  cursor: pointer;
}

.slider-prev {
  left: 40px;
  border-bottom: 5px solid #fff;
  border-left: 5px solid #fff;
}

.slider-next {
  right: 40px;
  border-top: 5px solid #fff;
  border-right: 5px solid #fff;
}

.scroll-indicator {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 110px;
  width: 34px;
  height: 58px;
  border: 3px solid #fff;
  border-radius: 30px;
  transform: translateX(-50%);
}

.scroll-indicator span {
  position: absolute;
  left: 50%;
  top: 30px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #fff;
  transform: translateX(-50%);
  animation: scrollDot 1.4s infinite;
}

@keyframes scrollDot {
  0% { opacity: 1; transform: translate(-50%, -10px); }
  100% { opacity: 0; transform: translate(-50%, 8px); }
}

.section {
  padding: 56px 0;
}

.section h2,
.timeline-section h2,
.partners h2 {
  font-family: "Roboto", Arial, sans-serif;
  margin: 0 0 34px;
  color: #6a6a6a;
  text-align: center;
  font-size: clamp(34px, 4.1vw, 52px);
  font-weight: 300;
  line-height: 1.1153846154;
}

.benefits {
  background: #fff;
  padding-bottom: 0;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: #f1f1f1;
}

.benefit {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 14px;
  min-height: 198px;
  padding: 30px 21px 26px;
}

.benefit img {
  width: 43px;
  height: 43px;
  object-fit: contain;
}

.benefit h3 {
  margin: 0 0 8px;
  color: #5f5f5f;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.15;
}

.benefit p {
  margin: 0;
  color: #333;
  font-size: 13px;
  line-height: 1.72;
}

.offers {
  min-height: 610px;
  background: #fff;
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
  width: min(820px, calc(100vw - 40px));
  margin: 0 auto;
  perspective: 1200px;
}

.offer-card {
  position: relative;
  text-align: center;
  transition: transform 240ms ease;
}

.offer-cube {
  --offer-cube-size: 214px;
  --offer-cube-depth: 107px;
  display: block;
  width: var(--offer-cube-size);
  height: var(--offer-cube-size);
  margin: 0 auto;
  color: var(--accent);
  perspective: 900px;
}

.offer-cube-inner {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transform-origin: center center;
  transition: transform 650ms cubic-bezier(.22, 1, .36, 1);
}

.offer-cube:hover .offer-cube-inner,
.offer-cube:focus-visible .offer-cube-inner,
.offer-card.is-open .offer-cube-inner {
  transform: rotateX(90deg);
}

.offer-card:hover {
  transform: translateY(-6px);
}

.offer-face {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  backface-visibility: hidden;
  transform-style: preserve-3d;
}

.offer-front {
  grid-template-rows: 1fr auto;
  gap: 16px;
  padding: 30px 20px 20px;
  background: #f7f7f7;
  border-radius: 8px;
  transform: translateZ(var(--offer-cube-depth));
}

.offer-back {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  padding: 20px 18px;
  color: #fff;
  text-align: center;
  background: var(--accent);
  border-radius: 8px;
  transform: rotateX(-90deg) translateZ(var(--offer-cube-depth));
}

.offer-back span {
  display: block;
  color: #fff;
  max-width: 100%;
  font-size: clamp(11px, 1vw, 12.8px);
  font-weight: 400;
  line-height: 1.32;
  overflow-wrap: anywhere;
  text-wrap: balance;
}

.offer-icon {
  display: grid;
  place-items: center;
  width: 128px;
  height: 128px;
  color: var(--accent);
}

.offer-icon i {
  display: block;
  color: currentColor;
  font-size: 88px;
  line-height: 1;
}

.offer-title {
  display: block;
  color: #6f6f6f;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.2;
}

.offer-card:nth-child(2) .offer-cube-inner {
  transition-delay: 40ms;
}

.offer-card:nth-child(3) .offer-cube-inner {
  transition-delay: 80ms;
}

.stats-band {
  min-height: 330px;
  padding: 55px 0;
  color: #fff;
  background: url("../img/parallax-front.jpg") center / cover fixed;
}

.stats-inner {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
  width: min(1120px, calc(100vw - 40px));
  margin: 0 auto;
}

.stat {
  text-align: center;
}

.stat-circle {
  display: grid;
  place-items: center;
  width: 142px;
  aspect-ratio: 1;
  margin: 0 auto 16px;
  border: 5px solid rgba(255, 255, 255, .45);
  border-left-color: var(--accent);
  border-radius: 50%;
}

.stat-number {
  font-size: 32px;
  font-weight: 300;
}

.stat p {
  margin: 0;
  font-size: 14px;
  letter-spacing: .5px;
}

.portfolio-section {
  padding-top: 64px;
  padding-bottom: 54px;
}

.portfolio-section h2 {
  margin-bottom: 2px;
}

.subtitle {
  margin: 0 0 30px;
  text-align: center;
  color: #595959;
  font-size: 24px;
  line-height: 1.25;
}

.portfolio-filter {
  display: flex;
  justify-content: center;
  gap: 44px;
  margin: 0 0 30px;
}

.portfolio-filter button {
  position: relative;
  border: 0;
  color: #333;
  background: transparent;
  padding: 0 0 8px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

.portfolio-filter button.active::after,
.portfolio-filter button[aria-pressed="true"]::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--accent);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(var(--portfolio-columns, 4), minmax(0, 1fr));
  width: min(1480px, calc(100vw - 28px));
  margin: 0 auto;
  background: transparent;
}

.portfolio-card {
  position: relative;
  min-height: 190px;
  padding: 31px 31px 28px;
  color: #fff;
  background-color: #222;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  transition: opacity .2s ease, transform .2s ease;
}

.portfolio-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .68);
  transition: background .2s ease;
}

.portfolio-card:hover::before {
  background: rgba(134, 3, 46, .76);
}

.portfolio-card a {
  position: absolute;
  inset: 0;
  z-index: 3;
}

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

.portfolio-card h3 {
  margin: 0 0 17px;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.25;
}

.portfolio-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
}

.portfolio-card.is-hidden {
  display: none;
}

.economy {
  padding-top: 34px;
  background: #fff;
}

.economy blockquote {
  width: min(850px, calc(100vw - 40px));
  margin: 0 auto 48px;
  padding-left: 24px;
  border-left: 1px solid #d6d6d6;
  color: #333;
  font-size: 15px;
  line-height: 1.9;
}

.text-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 52px;
  width: min(850px, calc(100vw - 40px));
  margin: 0 auto;
}

.text-columns h3 {
  margin: 0 0 16px;
  color: #777;
  font-size: 24px;
  font-weight: 300;
  line-height: 1.2;
}

.text-columns p {
  margin: 0;
  font-size: 13px;
  line-height: 1.8;
}

.timeline-section {
  padding: 64px 0 0;
  background: #fff;
}

.timeline-shell {
  position: relative;
  min-height: 320px;
  padding: 50px 48px;
  background: linear-gradient(rgba(255, 255, 255, .80), rgba(255, 255, 255, .86)), url("../img/arena-erfolgsgeschichte.jpg") center 43% / cover;
  overflow: hidden;
}

.timeline-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 48px;
  max-width: 1480px;
  margin: 0 auto;
}

.timeline-track::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 76px;
  height: 2px;
  background: var(--accent);
}

.timeline-item {
  position: relative;
  min-height: 210px;
  padding-right: 10px;
}

.timeline-item::before {
  content: "";
  position: absolute;
  top: 69px;
  left: 0;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--timeline-dot, #e430c0);
}

.timeline-item h3 {
  margin: 0 0 86px;
  color: #4d4d4d;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.1;
}

.timeline-item strong {
  display: block;
  margin-bottom: 8px;
  color: #5b5b5b;
  font-size: 13px;
  line-height: 1.35;
}

.timeline-item p {
  margin: 0;
  color: #555;
  font-size: 13px;
  line-height: 1.55;
}

.timeline-arrow {
  position: absolute;
  z-index: 4;
  top: 50%;
  width: 24px;
  height: 24px;
  border: 0;
  background: transparent;
  cursor: pointer;
  transform: translateY(-50%) rotate(45deg);
  transition: opacity .2s ease, border-color .2s ease;
}

.timeline-arrow.left {
  left: 34px;
  border-bottom: 3px solid #b7bac2;
  border-left: 3px solid #b7bac2;
}

.timeline-arrow.right {
  right: 34px;
  border-top: 3px solid #b7bac2;
  border-right: 3px solid #b7bac2;
}

.timeline-arrow:disabled {
  opacity: .35;
  cursor: default;
}

.partners {
  padding-top: 56px;
  background: #fff;
}

.partner-band {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 5vw, 90px);
  min-height: 260px;
  padding: 48px 30px;
  background: var(--accent);
}

.partner-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform .2s ease, filter .2s ease;
}

.partner-link:hover,
.partner-link:focus-visible {
  filter: drop-shadow(0 12px 20px rgba(0, 0, 0, .18));
  transform: scale(1.12);
}

.partner-band img {
  width: clamp(118px, 9vw, 148px);
  height: clamp(118px, 9vw, 148px);
  object-fit: contain;
}

.site-footer {
  color: #fff;
  background: var(--footer);
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  width: min(1180px, calc(100vw - 40px));
  min-height: 170px;
  margin: 0 auto;
  padding: 32px 0 24px;
}

.footer-main section:last-child {
  text-align: right;
}

.footer-main h2 {
  margin: 0 0 13px;
  color: #4c4c4c;
  font-size: 22px;
  font-weight: 700;
}

.footer-main p {
  margin: 0 0 6px;
  font-size: 12px;
  font-weight: 700;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .35em;
  flex-wrap: wrap;
  min-height: 42px;
  padding: 13px 20px;
  background: #050505;
  color: #fff;
  text-align: center;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.footer-bottom .fa {
  letter-spacing: 0;
}

.footer-bottom .fa-heart,
.footer-bottom .fa-coffee {
  font-size: 12px;
}

.footer-bottom .fa-heart > font {
  font-family: "Roboto", Arial, sans-serif;
  font-size: 9px;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.footer-bottom__and {
  font-size: 10px;
}

.utility-actions {
  position: fixed;
  z-index: 40;
  right: 28px;
  bottom: 28px;
  display: grid;
  gap: 12px;
  justify-items: end;
}

.contact-tab {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 18px;
  width: 50px;
  height: 46px;
  padding: 0 18px 0 14px;
  margin-bottom: clamp(70px, 12vh, 144px);
  overflow: hidden;
  color: #fff;
  background: var(--accent);
  transition: width .24s ease, box-shadow .24s ease;
}

.offer-detail-hero h1,
.detail-hero__inner h1,
.detail-richtext h2,
.legal-column h2,
.detail-form h2,
.award-item h2 {
  font-family: "Roboto", Arial, sans-serif;
}

.contact-tab:hover,
.contact-tab:focus-visible {
  width: 165px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .18);
}

.contact-tab:focus-visible,
.accessibility-toggle:focus-visible,
.accessibility-close:focus-visible {
  outline-color: #fff;
}

.contact-tab svg {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.contact-tab__label {
  display: inline-block;
  min-width: 0;
  overflow: hidden;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(10px);
  transition: opacity .2s ease, transform .24s ease;
}

.contact-tab:hover .contact-tab__label,
.contact-tab:focus-visible .contact-tab__label {
  opacity: 1;
  transform: translateX(0);
}

.accessibility-toggle {
  display: block;
  width: 60px;
  height: 60px;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  cursor: pointer;
}

.accessibility-toggle__icon {
  display: block;
  width: 60px;
  height: 60px;
  padding: 10px;
  background: #0048fe;
  border-radius: 50%;
  box-shadow: 0 12px 28px rgba(0, 0, 0, .2);
  transition: transform .22s ease;
}

.accessibility-toggle:hover .accessibility-toggle__icon,
.accessibility-toggle:focus-visible .accessibility-toggle__icon {
  transform: scale(1.08);
}

.accessibility-panel {
  position: fixed;
  z-index: 65;
  top: 0;
  right: 0;
  width: min(580px, 100vw);
  height: 100vh;
  padding: 0;
  color: #111827;
  background: #eef2f7;
  box-shadow: 2px 8px 60px -2px rgba(0, 0, 0, .2);
  overflow-y: auto;
  opacity: 0;
  transform: translateX(100%);
  transition: transform .65s cubic-bezier(.23, 1, .32, 1), opacity .2s ease;
}

.accessibility-panel.is-open {
  opacity: 1;
  transform: translateX(0);
}

.accessibility-panel__header {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 14px;
  padding: 36px 32px 26px;
  color: #fff;
  background: #0048fe;
  text-align: center;
}

.accessibility-panel__badge span {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  background: #fff;
  border-radius: 50%;
}

.accessibility-panel__badge img {
  width: 28px;
  height: 28px;
  filter: brightness(0) saturate(100%) invert(19%) sepia(100%) saturate(5207%) hue-rotate(226deg) brightness(102%) contrast(108%);
}

.accessibility-panel__heading h2 {
  margin: 0 0 6px;
  color: inherit;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.2;
}

.accessibility-panel__heading p {
  margin: 0;
  color: rgba(255, 255, 255, .84);
  font-size: 15px;
  line-height: 1.4;
}

.accessibility-section {
  padding: 24px 20px 0;
}

.accessibility-section h3 {
  margin: 0 0 16px;
  color: #111827;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.35;
}

.accessibility-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.accessibility-grid--content .accessibility-card--wide {
  grid-column: span 2;
}

.accessibility-card,
.accessibility-reset {
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  background: #fff;
}

.accessibility-card {
  display: grid;
  place-items: center;
  gap: 12px;
  min-height: 122px;
  padding: 18px 14px;
  color: #111827;
  text-align: center;
  box-shadow: 0 4px 14px rgba(15, 23, 42, .04);
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease, color .2s ease;
}

.accessibility-card > span,
.accessibility-card > p {
  margin: 0;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.35;
}

.accessibility-card:hover,
.accessibility-card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(0, 72, 254, .4);
  box-shadow: 0 12px 24px rgba(15, 23, 42, .08);
}

.accessibility-card.is-active {
  color: #fff;
  background: #0048fe;
  border-color: #0048fe;
}

.accessibility-card--step {
  align-content: center;
  justify-items: stretch;
}

.accessibility-stepper {
  display: grid;
  grid-template-columns: 44px 1fr 44px;
  align-items: center;
  gap: 10px;
  width: 100%;
}

.accessibility-stepper button {
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: #0048fe;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.accessibility-stepper button[disabled] {
  opacity: .35;
  cursor: not-allowed;
}

.accessibility-stepper span {
  font-size: 15px;
  font-weight: 500;
}

.accessibility-reset {
  display: block;
  width: calc(100% - 40px);
  margin: 24px 20px 26px;
  padding: 15px 18px;
  border-color: #0048fe;
  color: #fff;
  background: #0048fe;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
}

.accessibility-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 34px;
  height: 34px;
  border: 0;
  color: #fff;
  background: transparent;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.accessibility-reading-line {
  position: fixed;
  left: 0;
  z-index: 64;
  width: 100%;
  height: 12px;
  border: 3px solid #fff300;
  border-radius: 5px;
  background: rgba(0, 0, 0, .8);
  pointer-events: none;
}

.accessibility-reading-mask {
  position: fixed;
  left: 0;
  z-index: 63;
  width: 100%;
  background: rgba(0, 0, 0, .5);
  pointer-events: none;
}

.cookie-revisit {
  position: fixed;
  z-index: 65;
  left: 15px;
  bottom: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #0056a7;
  cursor: pointer;
}

.cookie-revisit[hidden] {
  display: none;
}

.cookie-revisit:hover::before,
.cookie-revisit:focus-visible::before {
  content: attr(data-tooltip);
  position: absolute;
  left: calc(100% + 7px);
  width: max-content;
  padding: 4px 8px;
  color: #fff;
  background: #4e4b66;
  border-radius: 4px;
  font-size: 12px;
  line-height: 16px;
}

.cookie-revisit:hover::after,
.cookie-revisit:focus-visible::after {
  content: "";
  position: absolute;
  left: calc(100% + 2px);
  border: 5px solid transparent;
  border-left-width: 0;
  border-right-color: #4e4b66;
}

.cookie-revisit img {
  width: 30px;
  height: 30px;
  max-width: fit-content;
  margin: 0;
}

.cookie-card {
  position: fixed;
  z-index: 60;
  left: 40px;
  bottom: 40px;
  width: min(440px, calc(100vw - 40px));
  padding: 22px 26px;
  color: #2d2d2d;
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, .18);
}

.cookie-card.is-hidden {
  display: none;
}

.cookie-card h2 {
  margin: 0 0 12px;
  color: #303030;
  font-size: 20px;
  font-weight: 700;
}

.cookie-card p {
  margin: 0 0 18px;
  font-size: 14px;
  line-height: 1.65;
}

.cookie-card div {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.cookie-card button {
  min-height: 44px;
  border: 2px solid #1f68e5;
  color: #1f68e5;
  background: #fff;
  font-weight: 700;
  cursor: pointer;
}

.cookie-card button:first-child {
  color: #fff;
  background: #1f68e5;
}

.cookie-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 66;
  background: rgba(10, 14, 24, .42);
}

.cookie-modal {
  position: fixed;
  z-index: 67;
  left: 50%;
  top: 50%;
  display: grid;
  gap: 18px;
  width: min(806px, calc(100vw - 32px));
  max-height: calc(100vh - 32px);
  overflow: auto;
  padding: 28px 28px 24px;
  color: #232323;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 22px 60px rgba(0, 0, 0, .22);
  transform: translate(-50%, -50%);
}

.cookie-modal h2 {
  margin: 0;
  color: #202020;
  font-size: 28px;
  font-weight: 700;
}

.cookie-modal p {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
}

.cookie-modal-copy {
  display: grid;
  gap: 10px;
}

.cookie-modal-close {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 34px;
  height: 34px;
  border: 0;
  color: #555;
  background: transparent;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.cookie-settings-list {
  display: grid;
  gap: 12px;
}

.cookie-setting {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 14px 16px;
  border: 1px solid #d9dee8;
  border-radius: 8px;
}

.cookie-setting strong {
  display: block;
  margin-bottom: 4px;
  font-size: 16px;
}

.cookie-setting small {
  display: block;
  color: #666;
  font-size: 13px;
  line-height: 1.5;
}

.cookie-setting input {
  width: 20px;
  height: 20px;
  margin: 0;
}

.cookie-modal-actions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.cookie-modal-actions button {
  min-height: 46px;
  border: 2px solid #1f68e5;
  color: #1f68e5;
  background: #fff;
  font-weight: 700;
  cursor: pointer;
}

.cookie-modal-actions button:last-child {
  color: #fff;
  background: #1f68e5;
}

body.accessibility-readable-font {
  font-family: Arial, Helvetica, sans-serif;
}

body.accessibility-big-cursor,
body.accessibility-big-cursor * {
  cursor: url("../img/original/a11y-big-cursor.svg") 2 2, auto !important;
}

body.accessibility-letter-spacing,
body.accessibility-letter-spacing p,
body.accessibility-letter-spacing li,
body.accessibility-letter-spacing a,
body.accessibility-letter-spacing span,
body.accessibility-letter-spacing button,
body.accessibility-letter-spacing input,
body.accessibility-letter-spacing textarea {
  letter-spacing: .06em;
}

body.accessibility-align-text main,
body.accessibility-align-text .section,
body.accessibility-align-text .detail-content,
body.accessibility-align-text .offer-detail-content,
body.accessibility-align-text .contact-content,
body.accessibility-align-text .contact-main {
  text-align: center;
}

body.accessibility-font-weight p,
body.accessibility-font-weight li,
body.accessibility-font-weight a,
body.accessibility-font-weight span,
body.accessibility-font-weight label,
body.accessibility-font-weight button {
  font-weight: 700;
}

body.accessibility-light-contrast,
body.accessibility-light-contrast .site-header.is-scrolled,
body.accessibility-light-contrast .dropdown,
body.accessibility-light-contrast .cookie-card,
body.accessibility-light-contrast .cookie-modal,
body.accessibility-light-contrast .accessibility-panel,
body.accessibility-light-contrast .offer-front,
body.accessibility-light-contrast .accessibility-card {
  color: #1f2937 !important;
  background: #fff !important;
}

body.accessibility-light-contrast a {
  color: #1d4ed8 !important;
}

body.accessibility-light-contrast .accessibility-card.is-active {
  color: #1d4ed8 !important;
  background: #dbeafe !important;
  border-color: #1d4ed8 !important;
}

body.accessibility-high-contrast,
body.accessibility-high-contrast .site-header.is-scrolled,
body.accessibility-high-contrast .dropdown,
body.accessibility-high-contrast .cookie-card,
body.accessibility-high-contrast .cookie-modal,
body.accessibility-high-contrast .accessibility-panel,
body.accessibility-high-contrast .offer-front,
body.accessibility-high-contrast .accessibility-card {
  color: #fff !important;
  background: #111 !important;
}

body.accessibility-high-contrast a,
body.accessibility-high-contrast h1,
body.accessibility-high-contrast h2,
body.accessibility-high-contrast h3,
body.accessibility-high-contrast h4,
body.accessibility-high-contrast h5,
body.accessibility-high-contrast h6 {
  color: #fff36d !important;
}

body.accessibility-high-contrast .portfolio-card::before {
  background: rgba(0, 0, 0, .88);
}

body.accessibility-high-contrast .accessibility-card.is-active {
  color: #111 !important;
  background: #fff36d !important;
  border-color: #fff36d !important;
}

body.accessibility-monochrome {
  filter: grayscale(1);
}

body.accessibility-hide-images img:not(.accessibility-toggle__icon):not(.accessibility-panel__badge-icon) {
  opacity: 0 !important;
}

body.accessibility-hide-images .slide,
body.accessibility-hide-images .detail-hero,
body.accessibility-hide-images .timeline-shell,
body.accessibility-hide-images .stats-band,
body.accessibility-hide-images .partner-band,
body.accessibility-hide-images .portfolio-card,
body.accessibility-hide-images .offer-back {
  background-image: none !important;
}

body.accessibility-highlight-links a:not(.accessibility-close):not(.flag) {
  color: #111 !important;
  background: #fff300 !important;
  text-decoration: underline !important;
}

body.accessibility-highlight-content section,
body.accessibility-highlight-content article,
body.accessibility-highlight-content .benefit,
body.accessibility-highlight-content .offer-card,
body.accessibility-highlight-content .portfolio-card,
body.accessibility-highlight-content .timeline-item,
body.accessibility-highlight-content .contact-panel,
body.accessibility-highlight-content input,
body.accessibility-highlight-content textarea {
  outline: 2px solid #b057f1;
  outline-offset: 3px;
}

body.accessibility-stop-animations,
body.accessibility-stop-animations * {
  scroll-behavior: auto !important;
}

body.accessibility-stop-animations .slide,
body.accessibility-stop-animations .dropdown,
body.accessibility-stop-animations .flag,
body.accessibility-stop-animations .skip-link,
body.accessibility-stop-animations .scroll-indicator span,
body.accessibility-stop-animations .offer-card,
body.accessibility-stop-animations .offer-cube-inner,
body.accessibility-stop-animations .contact-tab,
body.accessibility-stop-animations .contact-tab__label,
body.accessibility-stop-animations .accessibility-toggle__icon,
body.accessibility-stop-animations .accessibility-panel,
body.accessibility-stop-animations .accessibility-card {
  transition: none !important;
  animation: none !important;
}

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

  .dropdown,
  .flag,
  .skip-link,
  .scroll-indicator span {
    transition: none !important;
    animation: none !important;
  }
}

@media (max-width: 720px) {
  .accessibility-panel {
    width: 100%;
  }

  .accessibility-panel__header {
    padding-inline: 18px;
  }

  .accessibility-section {
    padding-inline: 12px;
  }

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

  .accessibility-grid--content .accessibility-card--wide {
    grid-column: span 2;
  }

  .accessibility-reset {
    width: calc(100% - 24px);
    margin-inline: 12px;
  }
}

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

  .accessibility-grid--content .accessibility-card--wide {
    grid-column: span 1;
  }
}

.subpage-body {
  min-height: 100vh;
  background: #fff;
}

.subpage-body .site-header {
  position: fixed;
}

.subpage-nav {
  color: inherit;
}

.offer-detail {
  padding-top: 0;
}

.offer-detail-hero {
  display: grid;
  place-items: center;
  min-height: 420px;
  padding: 150px 24px 80px;
  color: #fff;
  background:
    linear-gradient(rgba(0, 0, 0, .45), rgba(0, 0, 0, .55)),
    url("../img/parallax-front.jpg") center / cover;
}

.offer-detail-hero > div {
  width: min(860px, 100%);
  text-align: center;
}

.offer-detail-hero p {
  margin: 0 0 14px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.offer-detail-hero h1 {
  margin: 0 0 28px;
  color: #fff;
  font-size: clamp(44px, 5vw, 74px);
  font-weight: 300;
  line-height: 1;
}

.offer-detail-hero h1 span {
  color: var(--accent);
}

.offer-detail-hero blockquote {
  margin: 0 auto;
  max-width: 760px;
  color: #fff;
  font-size: 21px;
  font-weight: 300;
  line-height: 1.65;
}

.offer-detail-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 42px;
  width: min(1060px, calc(100vw - 40px));
  margin: 0 auto;
  padding: 70px 0 50px;
}

.offer-detail-content article {
  border-left: 2px solid var(--accent);
  padding-left: 24px;
}

.offer-detail-content h2 {
  margin: 0 0 14px;
  color: #737373;
  font-size: 27px;
  font-weight: 300;
  line-height: 1.2;
}

.offer-detail-content p {
  margin: 0;
  color: #333;
  font-size: 15px;
  line-height: 1.85;
}

.offer-detail-links {
  display: flex;
  justify-content: center;
  gap: 18px;
  padding: 0 20px 76px;
}

.offer-detail-links a {
  min-width: 150px;
  padding: 12px 18px;
  border: 1px solid var(--accent);
  color: var(--accent);
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.offer-detail-links a:hover {
  color: #fff;
  background: var(--accent);
}

.detail-page {
  padding-top: 0;
  background: #fff;
}

.detail-hero {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  min-height: 460px;
  padding: 150px 24px 88px;
  color: #fff;
  background-position: center;
  background-size: cover;
}

.detail-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0, 0, 0, .36), rgba(0, 0, 0, .6));
}

.detail-hero__inner {
  position: relative;
  z-index: 1;
  width: min(900px, 100%);
  text-align: center;
}

.detail-hero__eyebrow {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.detail-hero__inner p {
  margin: 0 0 14px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.detail-hero__inner h1 {
  margin: 0 0 24px;
  color: #fff;
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 300;
  line-height: 1.06;
  max-width: 14ch;
  margin-inline: auto;
  text-wrap: balance;
}

.detail-hero__inner h1 span {
  color: var(--accent);
}

.detail-hero__inner blockquote {
  max-width: 820px;
  margin: 0 auto;
  color: #fff;
  font-size: 20px;
  font-weight: 300;
  line-height: 1.7;
}

.detail-shell {
  width: min(1180px, calc(100vw - 44px));
  margin: 0 auto;
  padding: 78px 0;
}

.detail-stack {
  display: grid;
  gap: 28px;
}

.detail-feature {
  display: grid;
  grid-template-columns: minmax(250px, 360px) 1fr;
  gap: 34px;
  align-items: start;
  padding: 26px 0;
  border-top: 1px solid #e6e6e6;
}

.detail-feature:first-child {
  border-top: 0;
  padding-top: 0;
}

.detail-feature img,
.detail-card img,
.detail-sidebar-card img,
.award-item img {
  display: block;
  width: 100%;
  max-width: 100%;
  border-radius: 0;
  box-shadow: 0 20px 40px rgba(0, 0, 0, .08);
}

.detail-image-curved-shadow {
  display: block;
  position: relative;
  z-index: 0;
  max-width: 100%;
  margin-bottom: 15px;
  border-radius: 0;
}

.detail-image-curved-shadow::before,
.detail-image-curved-shadow::after {
  content: "";
  position: absolute;
  z-index: -1;
  bottom: 8px;
  left: 5px;
  right: 50%;
  height: 30%;
  border-radius: inherit;
  box-shadow: 0 15px 10px rgba(0, 0, 0, .6);
  transform: skewY(-6deg);
  transform-origin: 0 0;
}

.detail-image-curved-shadow::after {
  left: 50%;
  right: 5px;
  transform: skewY(6deg);
  transform-origin: 100% 0;
}

.detail-image-curved-shadow > img {
  position: relative;
  z-index: 1;
  width: 100%;
  box-shadow: none !important;
}

.detail-image-curved-shadow.award-zoom-trigger {
  display: inline-flex;
  overflow: visible;
}

.detail-image-curved-shadow.award-zoom-trigger .award-item__image {
  box-shadow: none;
}

.detail-feature h2,
.detail-card h2,
.award-item h2,
.detail-form h2,
.detail-richtext h2,
.legal-column h2 {
  margin: 0 0 14px;
  color: #6c6c6c;
  font-size: 31px;
  font-weight: 300;
  line-height: 1.2;
}

.detail-feature p,
.detail-card p,
.award-item p,
.detail-richtext p,
.legal-column p,
.legal-column li {
  margin: 0 0 15px;
  color: #333;
  font-size: 16px;
  line-height: 28px;
}

.detail-feature ul,
.legal-column ul {
  margin: 0;
  padding-left: 22px;
}

.detail-card-grid,
.contact-panels {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px 28px;
}

.detail-card {
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.detail-card__body {
  padding: 22px 0 0;
}

.detail-card__list {
  margin: 14px 0 0;
  padding-left: 18px;
  color: #333;
  font-size: 14px;
  line-height: 1.7;
}

.detail-card__list li + li {
  margin-top: 6px;
}

.detail-card h2,
.award-item h2 {
  font-size: 24px;
}

.detail-card h2 {
  margin-bottom: 10px;
  color: var(--accent);
  font-size: 27px;
}

.detail-richtext {
  max-width: 940px;
}

.detail-richtext h2,
.legal-column h2 {
  margin-top: 0;
}

.detail-richtext h2:not(:first-child),
.legal-column h3 {
  margin: 28px 0 10px;
  color: var(--accent);
  font-size: 24px;
  font-weight: 700;
}

.award-list {
  display: grid;
  gap: 34px;
}

.award-item {
  display: grid;
  grid-template-columns: 100px minmax(0, 1fr) clamp(150px, 14vw, 220px);
  gap: 28px 36px;
  align-items: start;
  padding: 0;
  border-top: 0;
}

.award-item__image {
  width: 100px;
  box-shadow: none;
}

.award-zoom-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}

.award-zoom-trigger img {
  transition: transform .18s ease;
}

.award-zoom-trigger:hover img,
.award-zoom-trigger:focus-visible img {
  transform: scale(1.04);
}

.award-item__image--badge {
  justify-self: end;
}

.award-item__image--certificate {
  width: clamp(150px, 14vw, 220px);
  justify-self: start;
}

.award-item__image--certificate .award-item__image {
  width: 100%;
}

.award-item__year {
  margin-bottom: 10px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.image-zoom-backdrop {
  position: fixed;
  inset: 0;
  z-index: 68;
  background: rgba(10, 14, 24, .76);
}

.image-zoom-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 69;
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(100vw - 48px);
  height: calc(100vh - 48px);
  padding: 18px;
  background: #fff;
  box-shadow: 0 22px 60px rgba(0, 0, 0, .22);
  transform: translate(-50%, -50%);
}

.image-zoom-modal__image {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

.image-zoom-close {
  position: absolute;
  top: 8px;
  right: 12px;
  width: 34px;
  height: 34px;
  padding: 0;
  border: 0;
  color: #555;
  background: transparent;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.contact-panel {
  position: relative;
  min-height: 210px;
  padding: 28px;
  color: #fff;
  background-position: center;
  background-size: cover;
  border-radius: 6px;
  overflow: hidden;
}

.contact-panel__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .32);
}

.contact-panel__body {
  position: relative;
  z-index: 1;
}

.contact-panel__body p {
  margin: 0 0 14px;
  color: #fff;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.contact-panel__body strong {
  display: inline-block;
  color: #fff;
  font-size: 25px;
  line-height: 1.25;
}

.contact-panel__body a {
  color: inherit;
}

.detail-form-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, .7fr);
  gap: 28px;
}

.detail-form,
.detail-sidebar-card,
.legal-column {
  padding: 28px;
  background: #f7f7f7;
  border-radius: 0;
}

.legal-column {
  padding: 0;
  background: transparent;
}

.detail-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 18px;
}

.detail-form label {
  display: grid;
  gap: 8px;
  color: #191919;
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
}

.detail-form input,
.detail-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  border: 1px solid #cfcfcf;
  color: #222;
  background: #fff;
  font: inherit;
}

.detail-form textarea {
  min-height: 160px;
  resize: vertical;
}

.detail-form button {
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid var(--accent);
  color: #fff;
  background: var(--accent);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
}

.form-alert {
  margin: 0 0 16px;
  padding: 12px 14px;
  border-left: 4px solid var(--accent);
  font-size: 14px;
  line-height: 1.6;
}

.form-alert--success {
  color: #154734;
  background: #ecf8f0;
}

.form-alert--error {
  color: #7a1023;
  background: #fdeef1;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.detail-checkbox {
  grid-template-columns: 18px 1fr;
  align-items: start;
}

.detail-checkbox input {
  min-height: 18px;
  height: 18px;
  margin-top: 0;
  align-self: start;
}

.detail-sidebar-card h2 {
  margin-top: 18px;
}

.whistle-layout .detail-form {
  max-width: none;
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.whistle-layout {
  width: min(1165px, calc(100vw - 44px));
}

.whistle-intro {
  margin-bottom: 24px;
}

.whistle-intro h2 {
  margin: 15px 0 5px;
  color: #3e3c3c;
  font-size: 30px;
  font-weight: 300;
  line-height: 20px;
  text-align: left;
}

.whistle-intro h2 span {
  color: var(--accent);
}

.whistle-intro p,
.whistle-form > p {
  margin: 0 0 15px;
  color: #191919;
  font-size: 16px;
  line-height: 1.75;
}

.whistle-divider {
  margin: 14px 0 22px;
  border: 0;
  border-top: 1px solid #d9d9d9;
}

.whistle-section-title {
  margin: 0 0 15px;
  color: #191919;
  font-size: 16px;
  line-height: 1.75;
}

.whistle-section-note {
  margin: 0 0 15px;
  color: #191919;
  font-size: 16px;
  line-height: 1.75;
}

.whistle-list {
  margin: 0 0 20px;
  padding-left: 20px;
  color: #191919;
  font-size: 16px;
  line-height: 1.75;
}

.whistle-honeypot-note {
  margin: 0 0 18px;
  color: #4f4f4f;
  font-size: 14px;
}

.whistle-form .detail-form__grid {
  grid-template-columns: 1fr;
  gap: 15px;
  margin-bottom: 24px;
}

.whistle-form label {
  color: #191919;
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
}

.whistle-form input,
.whistle-form textarea {
  min-height: 52px;
  padding: 12px 30px;
  border: 1px solid rgba(169, 174, 189, 0.3);
  font-size: 16px;
  line-height: 1.75;
}

.whistle-form textarea {
  min-height: 170px;
}

.file-upload-label {
  display: grid;
  gap: 8px;
}

.file-upload-control {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  min-height: 52px;
  padding: 9px 14px;
  border: 1px solid rgba(169, 174, 189, 0.3);
  background: #fff;
}

.file-upload-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 14px;
  color: #fff;
  background: var(--text);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.file-upload-name {
  min-width: 0;
  overflow: hidden;
  color: #555;
  font-size: 14px;
  line-height: 1.3;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.file-upload-control input[type="file"] {
  position: absolute;
  inset: 0;
  width: 100%;
  min-height: 100%;
  padding: 0;
  border: 0;
  cursor: pointer;
  opacity: 0;
}

.whistle-form .detail-checkbox {
  gap: 10px;
  margin-bottom: 18px;
  color: #191919;
  font-size: 16px;
  line-height: 1.45;
}

.whistle-form .detail-checkbox input {
  width: 18px;
  min-width: 18px;
  min-height: 18px;
  height: 18px;
  padding: 0;
}

.whistle-form button {
  min-height: 0;
  padding: 12px 40px;
  border: 1px solid #3e3c3c;
  color: #3e3c3c;
  background: #fff;
  font-size: 14px;
  font-weight: 400;
  text-transform: none;
}

.legal-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.page-angebot-consulting .detail-hero {
  min-height: 501px;
  padding: 0;
  background-position: center;
}

.page-angebot-consulting .site-header:not(.is-scrolled),
body.page-angebot-consulting .site-header:not(.is-scrolled) {
  position: absolute;
  min-height: 150px;
  padding: 0 var(--header-inline-padding);
  background: transparent;
  box-shadow: none;
  color: #fff;
}

.page-angebot-consulting .site-header:not(.is-scrolled) .brand,
body.page-angebot-consulting .site-header:not(.is-scrolled) .brand {
  position: absolute;
  left: var(--header-inline-padding);
  top: 0;
  width: 220px;
  height: 150px;
}

.page-angebot-consulting .site-header:not(.is-scrolled) .brand img,
body.page-angebot-consulting .site-header:not(.is-scrolled) .brand img {
  top: 42px;
  width: 220px;
}

.page-angebot-consulting .site-header:not(.is-scrolled) .brand-light {
  opacity: 1;
}

.page-angebot-consulting .site-header:not(.is-scrolled) .brand-dark {
  opacity: 0;
}

.page-angebot-consulting .detail-hero__overlay {
  background: transparent;
}

.page-angebot-consulting .detail-hero__inner {
  display: none;
}

.page-angebot-consulting .detail-richtext {
  width: min(1180px, calc(100vw - 44px));
  max-width: calc(100vw - 44px);
  padding: 70px 0 58px;
}

.page-angebot-consulting .detail-richtext h2 {
  margin: 15px 0 25px;
  color: var(--text);
  font-size: 52px;
  font-weight: 300;
  line-height: 58px;
}

.page-angebot-consulting .detail-richtext h2 span {
  color: var(--accent);
}

.page-angebot-consulting .detail-richtext p {
  max-width: none;
  margin: 0;
  color: #191919;
  font-size: 15px;
  line-height: 1.82;
}

.page-angebot-consulting .detail-stack {
  width: min(1180px, calc(100vw - 44px));
  padding-top: 0;
  padding-bottom: 44px;
  gap: 34px;
}

.page-angebot-consulting .detail-feature {
  display: flex;
  gap: 30px;
  align-items: start;
  padding: 0 0 24px;
  border-top: 0;
  border-bottom: 1px solid #e6e6e6;
}

.page-angebot-consulting .detail-feature img {
  flex: 0 1 clamp(280px, 34vw, 392px);
  width: clamp(280px, 34vw, 392px);
  margin-top: 30px;
  object-fit: contain;
  box-shadow: var(--image-3d-shadow);
}

.page-angebot-consulting .detail-feature .detail-feature__media {
  flex: 0 0 clamp(280px, 34vw, 392px);
  width: clamp(280px, 34vw, 392px);
  min-width: clamp(280px, 34vw, 392px);
  margin-top: 30px;
}

.page-angebot-consulting .detail-feature .detail-feature__media img {
  width: 100%;
  margin-top: 0;
  object-fit: contain;
  box-shadow: none;
}

.page-angebot-consulting .detail-feature > div {
  flex: 1 1 auto;
  min-width: 0;
}

.page-angebot-consulting .detail-feature h2 {
  margin: 0 0 15px;
  color: var(--accent);
  font-size: 16px;
  font-weight: 700;
  line-height: 28px;
}

.page-angebot-consulting .detail-feature p,
.page-angebot-consulting .detail-feature li {
  color: #191919;
  font-size: 15px;
  line-height: 28px;
}

.page-angebot-consulting .detail-feature p {
  margin-bottom: 15px;
}

.page-angebot-consulting .detail-feature ul {
  margin: 0 0 15px;
  padding-left: 40px;
}

.page-angebot-consulting .offer-detail-links {
  display: none;
}

.page-angebot-migration .detail-hero {
  min-height: 501px;
  padding: 0;
  background-position: center;
}

.page-angebot-migration .site-header:not(.is-scrolled),
body.page-angebot-migration .site-header:not(.is-scrolled) {
  position: absolute;
  min-height: 150px;
  padding: 0 var(--header-inline-padding);
  background: transparent;
  box-shadow: none;
  color: #fff;
}

.page-angebot-migration .site-header:not(.is-scrolled) .brand,
body.page-angebot-migration .site-header:not(.is-scrolled) .brand {
  position: absolute;
  left: var(--header-inline-padding);
  top: 0;
  width: 220px;
  height: 150px;
}

.page-angebot-migration .site-header:not(.is-scrolled) .brand img,
body.page-angebot-migration .site-header:not(.is-scrolled) .brand img {
  top: 42px;
  width: 220px;
}

.page-angebot-migration .site-header:not(.is-scrolled) .brand-light {
  opacity: 1;
}

.page-angebot-migration .site-header:not(.is-scrolled) .brand-dark {
  opacity: 0;
}

.page-angebot-migration .detail-hero__overlay {
  background: transparent;
}

.page-angebot-migration .detail-hero__inner {
  display: none;
}

.page-angebot-migration .detail-page {
  position: relative;
  background-color: #fff;
}

.page-angebot-migration .detail-page::before {
  content: "";
  position: absolute;
  inset: 501px 0 0;
  background: url("../img/original/home-05-bg-clientsay.jpg") center top / cover no-repeat;
  pointer-events: none;
}

.page-angebot-migration .detail-page > * {
  position: relative;
  z-index: 1;
}

.page-angebot-migration .detail-richtext {
  width: min(1180px, calc(100vw - 44px));
  max-width: calc(100vw - 44px);
  padding: 70px 0 58px;
}

.page-angebot-migration .detail-richtext h2 {
  margin: 15px 0 25px;
  color: var(--text);
  font-size: 52px;
  font-weight: 300;
  line-height: 58px;
}

.page-angebot-migration .detail-richtext h2 span {
  color: var(--accent);
}

.page-angebot-migration .detail-richtext p {
  max-width: none;
  margin: 0;
  color: #191919;
  font-size: 15px;
  line-height: 1.82;
}

.page-angebot-migration .detail-stack {
  width: min(1770px, calc(100vw - 44px));
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(min(100%, 320px), clamp(320px, 36vw, 642px)) minmax(0, 1fr);
  grid-template-areas:
    ". center-top ."
    "left-top center-image right-top"
    "left-bottom center-bottom right-bottom";
  padding-top: 0;
  padding-bottom: 44px;
  gap: clamp(24px, 2.5vw, 40px) clamp(24px, 2.65vw, 42px);
}

.page-angebot-migration .detail-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  padding: 0;
  border: 0;
  text-align: center;
}

.page-angebot-migration .detail-feature:nth-child(1) {
  grid-area: left-top;
  padding-top: clamp(72px, 11vw, 200px);
}

.page-angebot-migration .detail-feature:nth-child(2) {
  grid-area: left-bottom;
}

.page-angebot-migration .detail-feature:nth-child(3) {
  grid-area: center-top;
  transform: none;
}

.page-angebot-migration .detail-feature:nth-child(4) {
  grid-area: center-image;
  align-self: center;
}

.page-angebot-migration .detail-feature:nth-child(5) {
  grid-area: center-bottom;
  transform: none;
}

.page-angebot-migration .detail-feature:nth-child(6) {
  grid-area: right-top;
  padding-top: clamp(72px, 11vw, 200px);
}

.page-angebot-migration .detail-feature:nth-child(7) {
  grid-area: right-bottom;
}

.page-angebot-migration .detail-feature img {
  flex: 0 0 auto;
  width: clamp(70px, 7vw, 92px);
  max-width: 92px;
  max-height: 92px;
  margin: 0 auto 18px;
  background: transparent;
  box-shadow: none;
  object-fit: contain;
}

.page-angebot-migration .detail-feature img[alt="Migration Overview"] {
  width: clamp(320px, 36vw, 642px);
  max-width: 100%;
  height: auto;
  max-height: none;
  margin-top: 0;
}

.page-angebot-migration .detail-feature > div {
  width: 100%;
  min-width: 0;
}

.page-angebot-migration .detail-feature h2 {
  margin: 0 0 16px;
  color: #3e3c3c;
  font-size: 28px;
  font-weight: 700;
  line-height: 32px;
}

.page-angebot-migration .detail-feature p,
.page-angebot-migration .detail-feature li {
  color: #191919;
  font-size: 18px;
  line-height: 32px;
}

.page-angebot-migration .detail-feature p {
  margin-bottom: 15px;
}

.page-angebot-migration .detail-feature ul {
  margin: 0;
  padding-left: 24px;
  text-align: left;
}

.page-angebot-migration .detail-stack.detail-stack--migration-columns {
  grid-template-columns: minmax(0, 1fr) minmax(min(100%, 180px), clamp(180px, 36vw, 642px)) minmax(0, 1fr);
  grid-template-areas: none;
  align-items: center;
}

.page-angebot-migration .migration-feature-column {
  display: grid;
  align-content: center;
  gap: clamp(32px, 5vw, 76px);
}

.page-angebot-migration .migration-feature-column--left {
  grid-column: 1;
  grid-row: 1;
}

.page-angebot-migration .migration-feature-column--center {
  grid-column: 2;
  grid-row: 1;
  gap: clamp(24px, 2.5vw, 40px);
}

.page-angebot-migration .migration-feature-column--right {
  grid-column: 3;
  grid-row: 1;
}

.page-angebot-migration .detail-stack--migration-columns .detail-feature {
  grid-area: auto;
  padding-top: 0;
  transform: none;
}

.page-angebot-migration .offer-detail-links {
  display: none;
}

.page-angebot-service .detail-hero {
  min-height: 501px;
  padding: 0;
  background-position: center;
}

.page-angebot-service .site-header:not(.is-scrolled),
body.page-angebot-service .site-header:not(.is-scrolled) {
  position: absolute;
  min-height: 150px;
  padding: 0 var(--header-inline-padding);
  background: transparent;
  box-shadow: none;
  color: #fff;
}

.page-angebot-service .site-header:not(.is-scrolled) .brand,
body.page-angebot-service .site-header:not(.is-scrolled) .brand {
  position: absolute;
  left: var(--header-inline-padding);
  top: 0;
  width: 220px;
  height: 150px;
}

.page-angebot-service .site-header:not(.is-scrolled) .brand img,
body.page-angebot-service .site-header:not(.is-scrolled) .brand img {
  top: 42px;
  width: 220px;
}

.page-angebot-service .site-header:not(.is-scrolled) .brand-light {
  opacity: 0;
}

.page-angebot-service .site-header:not(.is-scrolled) .brand-dark {
  opacity: 1;
}

.page-angebot-service .site-header:not(.is-scrolled) .subpage-nav,
.page-angebot-service .site-header:not(.is-scrolled) .subpage-nav .nav-trigger,
.page-angebot-service .site-header:not(.is-scrolled) .subpage-nav > a {
  color: var(--text);
}

.page-angebot-service .detail-hero__overlay {
  background: transparent;
}

.page-angebot-service .detail-hero__inner {
  display: none;
}

.page-angebot-service .detail-richtext {
  width: min(1180px, calc(100vw - 44px));
  max-width: calc(100vw - 44px);
  padding: 70px 0 58px;
}

.page-angebot-service .detail-richtext h2 {
  margin: 15px 0 25px;
  color: var(--text);
  font-size: 52px;
  font-weight: 300;
  line-height: 58px;
}

.page-angebot-service .detail-richtext h2 span {
  color: var(--accent);
}

.page-angebot-service .detail-richtext p {
  max-width: none;
  margin: 0;
  color: #191919;
  font-size: 15px;
  line-height: 1.82;
}

.page-angebot-service .detail-stack {
  width: min(1180px, calc(100vw - 44px));
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
  padding-top: 0;
  padding-bottom: 44px;
  gap: 34px;
}

.page-angebot-service .detail-feature {
  display: flex;
  flex-direction: row;
  gap: 30px;
  align-items: flex-start;
  height: auto;
  padding: 0 0 24px;
  background: transparent;
  border: 0;
  border-top: 0;
  border-bottom: 1px solid #e6e6e6;
  box-shadow: none;
}

.page-angebot-service .detail-feature img {
  flex: 0 0 clamp(72px, 8vw, 96px);
  width: clamp(72px, 8vw, 96px);
  margin-top: 8px;
  background: transparent;
  box-shadow: none;
  object-fit: contain;
  filter: grayscale(1) brightness(.58);
}

.page-angebot-service .detail-feature > div {
  flex: 1 1 auto;
  width: auto;
  min-width: 0;
}

.page-angebot-service .detail-feature h2 {
  margin: 0 0 15px;
  color: var(--accent);
  font-size: 16px;
  font-weight: 700;
  line-height: 28px;
}

.page-angebot-service .detail-feature p,
.page-angebot-service .detail-feature li {
  color: #191919;
  font-size: 15px;
  line-height: 28px;
}

.page-angebot-service .detail-feature p {
  margin-bottom: 0;
}

.page-angebot-service .detail-linebreak-copy {
  margin-bottom: 0;
}

.page-angebot-service .detail-feature ul {
  margin: 0 0 15px;
  padding-left: 40px;
}

.page-angebot-service .offer-detail-links {
  display: none;
}

.page-angebot-service .detail-hero,
.page-angebot-migration .detail-hero,
.page-ueber-uns .detail-hero,
.page-zertifikateundauszeichnungen .detail-hero {
  background-position: center;
}

.page-group-organisation .detail-hero {
  min-height: 200px;
  padding: 0;
  margin-bottom: 30px;
}

.page-group-organisation .detail-shell {
  width: min(1770px, calc(100vw - 44px));
}

.page-whistle-blowing-form .detail-shell {
  width: min(1165px, calc(100vw - 44px));
}

.page-ueber-uns .detail-richtext h2:first-child {
  margin: 0 0 28px;
  color: #464646;
  font-size: 52px;
  font-weight: 300;
  line-height: 58px;
  letter-spacing: 0;
  text-align: center;
}

.page-ueber-uns .detail-richtext h2:first-child span {
  color: var(--accent);
}

.page-zertifikateundauszeichnungen .detail-richtext h2:first-child,
.page-privacy-policy-datenschutz .legal-column h2,
.page-modern-slavery-and-human-trafficking-statement .legal-column h2 {
  margin: 0 0 28px;
  color: #464646;
  font-size: 52px;
  font-weight: 300;
  line-height: 58px;
  letter-spacing: 0;
  text-align: center;
}

.page-privacy-policy-datenschutz .legal-column h2,
.page-modern-slavery-and-human-trafficking-statement .legal-column h2 {
  font-size: 56px;
  line-height: 52px;
}

.page-zertifikateundauszeichnungen .detail-richtext h2:first-child span,
.page-privacy-policy-datenschutz .legal-column h2::first-letter,
.page-modern-slavery-and-human-trafficking-statement .legal-column h2::first-letter {
  color: var(--accent);
}

.page-privacy-policy-datenschutz .detail-page,
.page-modern-slavery-and-human-trafficking-statement .detail-page {
  background: #fff;
}

.page-privacy-policy-datenschutz .legal-columns,
.page-modern-slavery-and-human-trafficking-statement .legal-columns {
  width: min(2301px, calc(100vw - 44px));
  gap: 32px;
}

.page-privacy-policy-datenschutz .legal-column,
.page-modern-slavery-and-human-trafficking-statement .legal-column {
  background: #fff;
  padding: 36px;
}

.page-group-organisation .detail-richtext {
  max-width: 1410px;
}

.page-kontakt .detail-hero,
.page-whistle-blowing-form .detail-hero {
  background-position: center top;
}

.page-zertifikateundauszeichnungen .site-header:not(.is-scrolled) .subpage-nav,
.page-zertifikateundauszeichnungen .site-header:not(.is-scrolled) .subpage-nav .nav-trigger,
.page-zertifikateundauszeichnungen .site-header:not(.is-scrolled) .subpage-nav > a {
  color: var(--text);
}

.page-whistle-blowing-form .site-header:not(.is-scrolled) .subpage-nav,
.page-whistle-blowing-form .site-header:not(.is-scrolled) .subpage-nav .nav-trigger,
.page-whistle-blowing-form .site-header:not(.is-scrolled) .subpage-nav > a {
  color: var(--text);
}

.page-whistle-blowing-form .site-header:not(.is-scrolled) .brand-light,
.page-modern-slavery-and-human-trafficking-statement .site-header:not(.is-scrolled) .brand-light {
  opacity: 0;
}

.page-whistle-blowing-form .site-header:not(.is-scrolled) .brand-dark,
.page-modern-slavery-and-human-trafficking-statement .site-header:not(.is-scrolled) .brand-dark {
  opacity: 1;
}

.page-modern-slavery-and-human-trafficking-statement .site-header:not(.is-scrolled) .subpage-nav,
.page-modern-slavery-and-human-trafficking-statement .site-header:not(.is-scrolled) .subpage-nav .nav-trigger,
.page-modern-slavery-and-human-trafficking-statement .site-header:not(.is-scrolled) .subpage-nav > a {
  color: var(--text);
}

.page-privacy-policy-datenschutz .detail-hero {
  background-position: center;
}

.page-modern-slavery-and-human-trafficking-statement .detail-hero {
  background-position: center bottom;
}

.page-angebot-service .detail-card-grid,
.page-angebot-migration .detail-card-grid,
.page-big-data-analytics .detail-card-grid,
.page-compliance-management .detail-card-grid,
.page-kunden-management .detail-card-grid,
.page-omni-channel-kommunikation .detail-card-grid,
.page-order-management .detail-card-grid,
.page-portfolio-management .detail-card-grid,
.page-rechtssichere-beratung .detail-card-grid,
.page-reporting-und-versandsteuerung .detail-card-grid {
  align-items: start;
}

.page-angebot-service .detail-card,
.page-angebot-migration .detail-card,
.page-big-data-analytics .detail-card,
.page-compliance-management .detail-card,
.page-kunden-management .detail-card,
.page-omni-channel-kommunikation .detail-card,
.page-order-management .detail-card,
.page-portfolio-management .detail-card,
.page-rechtssichere-beratung .detail-card,
.page-reporting-und-versandsteuerung .detail-card {
  text-align: left;
}

.page-compliance-management .detail-card-grid {
  width: min(1180px, calc(100vw - 44px));
  max-width: calc(100vw - 44px);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px 28px;
  padding-top: 44px;
  padding-bottom: 44px;
}

.page-compliance-management .detail-card {
  display: block;
  width: auto;
  margin: 0;
  padding: 0;
  background: transparent;
}

.page-compliance-management .detail-card__body {
  padding-top: 22px;
}

.page-compliance-management .detail-card img {
  width: 100%;
  height: auto;
  margin: 0;
  box-shadow: 0 20px 40px rgba(0, 0, 0, .08);
}

.page-angebot-service .detail-card img,
.page-angebot-migration .detail-card img {
  width: min(170px, 100%);
  margin: 0 auto 14px;
  background: transparent;
  box-shadow: none;
}

.page-angebot-service .detail-card,
.page-angebot-migration .detail-card {
  text-align: center;
  padding: 10px 8px 0;
}

.page-angebot-service .detail-card h2,
.page-angebot-migration .detail-card h2 {
  font-size: 24px;
  margin-bottom: 12px;
}

.page-group-digital-platform .detail-stack,
.page-group-digital-platform .detail-card-grid {
  width: 100%;
  max-width: none;
  padding: 0;
  grid-template-columns: 1fr;
  gap: 0;
}

.page-group-digital-platform .detail-feature,
.page-group-digital-platform .detail-card {
  display: grid;
  width: 100%;
  grid-template-columns:
    minmax(22px, 1fr)
    minmax(300px, 720px)
    minmax(300px, 860px)
    minmax(22px, 1fr);
  grid-template-areas: ". media content .";
  gap: clamp(28px, 4vw, 54px);
  align-items: center;
  padding: 44px 0;
  border: 0;
  background: #fff;
}

.page-group-digital-platform .detail-feature:first-child {
  padding-top: 44px;
}

.page-group-digital-platform .detail-feature:nth-child(even),
.page-group-digital-platform .detail-card:nth-child(even) {
  grid-template-areas: ". content media .";
  background: #f3f3f3;
}

.page-group-digital-platform .detail-feature:nth-child(odd),
.page-group-digital-platform .detail-card:nth-child(odd) {
  background: #fff;
}

.page-group-digital-platform .detail-feature img,
.page-group-digital-platform .detail-card img {
  grid-area: media;
  width: min(100%, 720px);
  justify-self: center;
  height: auto;
  max-height: min(48vh, 520px);
  margin: 0;
  object-fit: contain;
}

.page-group-digital-platform .detail-feature__media,
.page-group-digital-platform .detail-card__media {
  grid-area: media;
  width: min(100%, 720px);
  justify-self: center;
  margin: 0 0 15px;
}

.page-group-digital-platform .detail-feature__media img,
.page-group-digital-platform .detail-card__media img {
  width: 100%;
  height: auto;
  max-height: min(48vh, 520px);
  object-fit: contain;
}

.page-big-data-analytics .detail-feature:nth-child(1) img {
  width: min(57.6%, 420px);
}

.page-big-data-analytics .detail-feature:nth-child(1) .detail-feature__media {
  grid-area: media;
  width: min(57.6%, 420px);
  justify-self: center;
}

.page-big-data-analytics .detail-feature:nth-child(1) .detail-feature__media img {
  width: 100%;
  max-height: none;
}

.page-big-data-analytics .detail-feature:nth-child(2) img {
  width: min(86.4%, 620px);
}

.page-big-data-analytics .detail-feature:nth-child(2) .detail-feature__media {
  grid-area: media;
  width: min(86.4%, 620px);
  justify-self: center;
}

.page-big-data-analytics .detail-feature:nth-child(2) .detail-feature__media img {
  width: 100%;
  max-width: none;
}

.page-compliance-management .detail-card:nth-child(2) .detail-card__media {
  width: min(82%, 565px);
}

.page-compliance-management .detail-card:nth-child(2) .detail-card__media::before,
.page-compliance-management .detail-card:nth-child(2) .detail-card__media::after {
  bottom: 6px;
  height: 24px;
  box-shadow: 0 11px 9px rgba(0, 0, 0, .42);
}

.page-compliance-management .detail-card:nth-child(2) .detail-card__media img {
  width: 100%;
  max-width: none;
}

.page-kunden-management .detail-card:nth-child(3) .detail-card__media {
  width: min(82%, 501px);
}

.page-kunden-management .detail-card:nth-child(4) .detail-card__media {
  width: min(82%, 562px);
}

.page-kunden-management .detail-card:nth-child(5) .detail-card__media {
  width: min(82%, 546px);
}

.page-kunden-management .detail-card:nth-child(3) .detail-card__media::before,
.page-kunden-management .detail-card:nth-child(3) .detail-card__media::after,
.page-kunden-management .detail-card:nth-child(4) .detail-card__media::before,
.page-kunden-management .detail-card:nth-child(4) .detail-card__media::after,
.page-kunden-management .detail-card:nth-child(5) .detail-card__media::before,
.page-kunden-management .detail-card:nth-child(5) .detail-card__media::after {
  bottom: 6px;
  height: 24px;
  box-shadow: 0 11px 9px rgba(0, 0, 0, .42);
}

.page-kunden-management .detail-card:nth-child(3) .detail-card__media img,
.page-kunden-management .detail-card:nth-child(4) .detail-card__media img,
.page-kunden-management .detail-card:nth-child(5) .detail-card__media img {
  width: 100%;
  max-width: none;
}

.page-omni-channel-kommunikation .detail-card:nth-child(1) .detail-card__media {
  width: min(82%, 591px);
}

.page-omni-channel-kommunikation .detail-card:nth-child(2) .detail-card__media {
  width: min(82%, 559px);
}

.page-omni-channel-kommunikation .detail-card:nth-child(3) .detail-card__media {
  width: min(82%, 523px);
}

.page-omni-channel-kommunikation .detail-card:nth-child(1) .detail-card__media::before,
.page-omni-channel-kommunikation .detail-card:nth-child(1) .detail-card__media::after,
.page-omni-channel-kommunikation .detail-card:nth-child(2) .detail-card__media::before,
.page-omni-channel-kommunikation .detail-card:nth-child(2) .detail-card__media::after,
.page-omni-channel-kommunikation .detail-card:nth-child(3) .detail-card__media::before,
.page-omni-channel-kommunikation .detail-card:nth-child(3) .detail-card__media::after {
  bottom: 6px;
  height: 24px;
  box-shadow: 0 11px 9px rgba(0, 0, 0, .42);
}

.page-omni-channel-kommunikation .detail-card:nth-child(1) .detail-card__media img,
.page-omni-channel-kommunikation .detail-card:nth-child(2) .detail-card__media img,
.page-omni-channel-kommunikation .detail-card:nth-child(3) .detail-card__media img {
  width: 100%;
  max-width: none;
}

.page-portfolio-management .detail-card:nth-child(1) .detail-card__media {
  width: min(82%, 600px);
}

.page-portfolio-management .detail-card:nth-child(4) .detail-card__media {
  width: min(82%, 617px);
}

.page-portfolio-management .detail-card:nth-child(5) .detail-card__media {
  width: min(82%, 591px);
}

.page-portfolio-management .detail-card:nth-child(1) .detail-card__media::before,
.page-portfolio-management .detail-card:nth-child(1) .detail-card__media::after,
.page-portfolio-management .detail-card:nth-child(4) .detail-card__media::before,
.page-portfolio-management .detail-card:nth-child(4) .detail-card__media::after,
.page-portfolio-management .detail-card:nth-child(5) .detail-card__media::before,
.page-portfolio-management .detail-card:nth-child(5) .detail-card__media::after {
  bottom: 6px;
  height: 24px;
  box-shadow: 0 11px 9px rgba(0, 0, 0, .42);
}

.page-portfolio-management .detail-card:nth-child(1) .detail-card__media img,
.page-portfolio-management .detail-card:nth-child(4) .detail-card__media img,
.page-portfolio-management .detail-card:nth-child(5) .detail-card__media img {
  width: 100%;
  max-width: none;
}

.page-rechtssichere-beratung .detail-card:nth-child(1) .detail-card__media {
  width: min(82%, 613px);
}

.page-rechtssichere-beratung .detail-card:nth-child(2) .detail-card__media {
  width: min(82%, 560px);
}

.page-rechtssichere-beratung .detail-card:nth-child(1) .detail-card__media::before,
.page-rechtssichere-beratung .detail-card:nth-child(1) .detail-card__media::after,
.page-rechtssichere-beratung .detail-card:nth-child(2) .detail-card__media::before,
.page-rechtssichere-beratung .detail-card:nth-child(2) .detail-card__media::after {
  bottom: 6px;
  height: 24px;
  box-shadow: 0 11px 9px rgba(0, 0, 0, .42);
}

.page-rechtssichere-beratung .detail-card:nth-child(1) .detail-card__media img,
.page-rechtssichere-beratung .detail-card:nth-child(2) .detail-card__media img {
  width: 100%;
  max-width: none;
}

.page-reporting-und-versandsteuerung .detail-card:nth-child(1) .detail-card__media {
  width: min(82%, 566px);
}

.page-reporting-und-versandsteuerung .detail-card:nth-child(1) .detail-card__media::before,
.page-reporting-und-versandsteuerung .detail-card:nth-child(1) .detail-card__media::after {
  bottom: 6px;
  height: 24px;
  box-shadow: 0 11px 9px rgba(0, 0, 0, .42);
}

.page-reporting-und-versandsteuerung .detail-card:nth-child(1) .detail-card__media img {
  width: 100%;
  max-width: none;
}

.page-group-digital-platform .detail-feature > div,
.page-group-digital-platform .detail-card__body {
  grid-area: content;
  padding: 0;
}

.page-group-digital-platform .detail-feature > div > p:first-child,
.page-group-digital-platform .detail-card__body > p:first-child {
  margin: 0 0 15px;
  color: #191919;
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
}

.page-group-digital-platform .detail-feature > div > p:first-child strong,
.page-group-digital-platform .detail-feature > div > p:first-child b,
.page-group-digital-platform .detail-card__body > p:first-child strong,
.page-group-digital-platform .detail-card__body > p:first-child b {
  font-weight: 700;
}

.page-group-digital-platform .detail-feature > div > ul > li::first-line,
.page-group-digital-platform .detail-card__body > ul > li::first-line,
.page-group-digital-platform .detail-feature h2,
.page-group-digital-platform .detail-card h2 {
  font-weight: 700;
}

.page-group-digital-platform .detail-feature h2,
.page-group-digital-platform .detail-card h2 {
  margin-bottom: 14px;
}

.page-group-digital-platform .detail-card__list {
  margin-top: 16px;
}

.page-group-digital-platform .detail-hero {
  min-height: 420px;
  padding: 0;
}

.page-group-digital-platform .detail-hero__overlay {
  background: linear-gradient(rgba(0, 0, 0, .18), rgba(0, 0, 0, .18));
}

.page-group-digital-platform .detail-hero-copy {
  width: min(1770px, calc(100vw - 44px));
  max-width: calc(100vw - 44px);
  padding-top: 54px;
  padding-bottom: 38px;
  text-align: center;
}

.page-group-digital-platform .detail-hero-copy .detail-hero__eyebrow {
  margin: 0 0 14px;
  color: #3d3f44;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.page-group-digital-platform .detail-hero-copy h1 {
  margin: 0 0 24px;
  color: #3e3c3c;
  font-size: 30px;
  font-weight: 700;
  line-height: 36px;
  text-wrap: balance;
}

.page-group-digital-platform .detail-hero-copy h1 span {
  color: var(--accent);
}

.page-group-digital-platform .detail-hero-copy blockquote {
  max-width: 900px;
  margin: 0 auto;
  color: #444;
  font-size: 20px;
  font-weight: 300;
  line-height: 1.7;
}

.page-zertifikateundauszeichnungen .award-item__image {
  width: 100px;
  box-shadow: none;
}

.page-zertifikateundauszeichnungen .award-item {
  grid-template-columns: 100px minmax(0, 1fr) clamp(75px, 7vw, 110px);
}

.page-zertifikateundauszeichnungen .award-item__image--certificate.detail-image-curved-shadow {
  width: clamp(75px, 7vw, 110px);
  justify-self: start;
}

.page-zertifikateundauszeichnungen .award-item__image--certificate.detail-image-curved-shadow .award-item__image {
  width: 100%;
}

.page-kontakt .detail-form,
.page-whistle-blowing-form .detail-form {
  background: #fff;
  box-shadow: 0 16px 36px rgba(0, 0, 0, .06);
}

.page-whistle-blowing-form .whistle-form {
  background: transparent;
  box-shadow: none;
}

.page-kontakt .detail-sidebar-card {
  background: #f7f7f7;
}

.page-kontakt .detail-page {
  padding-top: 0;
}

.page-whistle-blowing-form .detail-page {
  background: #f7f7f7;
}

.page-kontakt .detail-hero {
  min-height: 500px;
  padding: 0;
  background-position: center bottom;
}

.page-kontakt .detail-hero__overlay {
  background: linear-gradient(rgba(0, 0, 0, .08), rgba(0, 0, 0, .18));
}

.page-kontakt .detail-hero__inner p {
  display: none;
}

.page-kontakt .detail-hero__inner h1 {
  margin-bottom: 0;
  max-width: none;
  text-shadow: 0 2px 10px rgba(0, 0, 0, .22);
}

.page-kontakt .detail-shell {
  padding: 34px 0;
}

.page-kontakt .contact-panels {
  position: relative;
  z-index: 2;
  margin-top: -110px;
}

.page-kontakt .contact-panel {
  min-height: 250px;
  padding: 30px 28px;
  border-radius: 0;
}

.page-kontakt .contact-panel__body {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  justify-content: space-between;
}

.page-kontakt .contact-panel__body p {
  margin-bottom: 24px;
  font-size: 30px;
  font-weight: 300;
  letter-spacing: 0;
}

.page-kontakt .contact-panel__body strong,
.page-kontakt .contact-panel__body strong a {
  color: #f1ded0;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.2;
}

.page-kontakt .contact-panel:nth-child(3) .contact-panel__body strong,
.page-kontakt .contact-panel:nth-child(3) .contact-panel__body strong a {
  color: #b4b3b3;
}

.detail-contact-intro {
  margin-bottom: 24px;
}

.detail-contact-intro h2 {
  margin: 0 0 20px;
  color: #6c6c6c;
  font-size: 30px;
  font-weight: 300;
  line-height: 1.2;
}

.detail-contact-intro p {
  margin: 0 0 14px;
  color: #3e3c3c;
  font-size: 15px;
  line-height: 1.82;
}

.detail-contact-intro a {
  color: var(--accent);
}

.page-kontakt .detail-form-layout {
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 44px;
  align-items: start;
}

.page-kontakt .detail-form {
  grid-column: 1;
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.page-kontakt .detail-form__grid {
  gap: 16px 18px;
}

.page-kontakt .detail-form label {
  gap: 0;
}

.page-kontakt .detail-form input,
.page-kontakt .detail-form textarea {
  border: 1px solid #d8d8d8;
  font-size: 12px;
  font-weight: 400;
  line-height: 22px;
}

.page-kontakt .detail-richtext h2,
.page-kontakt .detail-contact-intro h2 {
  color: #3e3c3c;
  font-size: 30px;
  font-weight: 300;
  line-height: 20px;
}

.page-kontakt .detail-richtext h2 span,
.page-kontakt .detail-contact-intro h2 span {
  color: var(--accent);
}

.page-kontakt .detail-form input::placeholder,
.page-kontakt .detail-form textarea::placeholder {
  color: #757575;
  opacity: 1;
}

.page-kontakt .detail-form button {
  width: 100%;
  border-color: #3e3c3c;
  background: #3e3c3c;
  letter-spacing: 1px;
}

.page-kontakt .detail-form button:hover {
  border-color: var(--accent);
  background: var(--accent);
}

.detail-sidebar-card--contact {
  grid-column: 2;
  padding: 0;
  background: transparent !important;
}

.detail-sidebar-card--contact img {
  width: 280px;
  box-shadow: none;
}

.detail-sidebar-card--contact div {
  padding-top: 12px;
}

.detail-sidebar-card--contact p {
  margin: 0;
  color: #3e3c3c;
  font-size: 15px;
  line-height: 1.82;
}

@media (max-width: 1180px) {
  .page-kontakt .detail-hero {
    min-height: 440px;
    padding: 0;
  }

  .page-kontakt .contact-panels {
    margin-top: -84px;
  }

  .page-kontakt .detail-form-layout {
    grid-template-columns: minmax(0, 1fr) 240px;
    gap: 32px;
  }

  .detail-sidebar-card--contact img {
    width: 240px;
  }
}

.detail-sidebar-card--contact a {
  color: inherit;
}

@media (max-width: 1180px) {
  .site-header {
    padding: 0 var(--header-inline-padding-tablet);
  }

  .site-header.is-scrolled {
    padding: 14px var(--header-inline-padding-tablet);
  }

  .brand {
    left: var(--header-inline-padding-tablet);
    width: 220px;
    height: 150px;
  }

  .brand img {
    top: 42px;
    width: 220px;
  }

  .main-nav {
    --nav-gap: 26px;
  }

  .offer-cube {
    --offer-cube-size: 196px;
    --offer-cube-depth: 98px;
  }

  .hero-frame {
    width: 100%;
  }

  .benefit-grid,
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 820px) {
  .site-header,
  .site-header.is-scrolled {
    min-height: 76px;
    padding: 14px var(--header-inline-padding-mobile);
    background: rgba(255, 255, 255, .97);
    color: var(--text);
  }

  .page-angebot-service .site-header:not(.is-scrolled),
  body.page-angebot-service .site-header:not(.is-scrolled),
  .page-angebot-migration .site-header:not(.is-scrolled),
  body.page-angebot-migration .site-header:not(.is-scrolled) {
    position: fixed;
    min-height: 76px;
    padding: 14px var(--header-inline-padding-mobile);
    background: rgba(255, 255, 255, .97);
    box-shadow: 0 1px 10px rgba(0, 0, 0, .08);
    color: var(--text);
  }

  .brand,
  .site-header.is-scrolled .brand {
    left: var(--header-inline-padding-mobile);
    top: 10px;
    width: 176px;
    height: 56px;
    opacity: 1;
    pointer-events: auto;
  }

  .page-angebot-service .site-header:not(.is-scrolled) .brand,
  body.page-angebot-service .site-header:not(.is-scrolled) .brand,
  .page-angebot-migration .site-header:not(.is-scrolled) .brand,
  body.page-angebot-migration .site-header:not(.is-scrolled) .brand {
    left: var(--header-inline-padding-mobile);
    top: 10px;
    width: 176px;
    height: 56px;
  }

  .brand img,
  .site-header.is-scrolled .brand img {
    width: 176px;
  }

  .page-angebot-service .site-header:not(.is-scrolled) .brand img,
  body.page-angebot-service .site-header:not(.is-scrolled) .brand img,
  .page-angebot-migration .site-header:not(.is-scrolled) .brand img,
  body.page-angebot-migration .site-header:not(.is-scrolled) .brand img {
    top: 0;
    width: 176px;
  }

  .brand-light {
    opacity: 0;
  }

  .brand-dark {
    opacity: 1;
  }

  .page-angebot-service .site-header:not(.is-scrolled) .brand-light,
  .page-angebot-migration .site-header:not(.is-scrolled) .brand-light {
    opacity: 0;
  }

  .page-angebot-service .site-header:not(.is-scrolled) .brand-dark,
  .page-angebot-migration .site-header:not(.is-scrolled) .brand-dark {
    opacity: 1;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    display: none;
    max-height: calc(100vh - 76px);
    overflow: auto;
    padding: 18px;
    background: #fff;
    box-shadow: 0 18px 30px rgba(0, 0, 0, .12);
  }

  .page-angebot-service .detail-stack {
    grid-template-columns: 1fr;
  }

  .main-nav.is-open {
    display: block;
  }

  .main-nav > a,
  .nav-group > .nav-trigger,
  .dropdown a {
    display: block;
    padding: 11px 0;
  }

  .main-nav > a.active::before,
  .nav-group:hover > .nav-trigger::before,
  .nav-group.is-open > .nav-trigger::before {
    display: none;
  }

  .nav-group > .nav-trigger {
    justify-content: flex-start;
    width: 100%;
  }

  .nav-group::after {
    display: none;
  }

  .dropdown {
    position: static;
    width: auto;
    padding: 0 0 0 18px;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .flag {
    display: inline-block;
    margin-top: 12px;
    margin-right: 8px;
  }

  .main-nav .flag + .flag {
    margin-left: 0;
  }

  .utility-actions {
    right: 20px;
    bottom: 20px;
  }

  .contact-tab {
    margin-bottom: 42px;
  }

  .hero-title {
    margin-top: 50px;
  }

  .hero-links {
    gap: 10px;
    font-size: 12px;
    letter-spacing: 2px;
  }

  .slider-prev {
    left: 20px;
  }

  .slider-next {
    right: 20px;
  }

  .hero {
    padding: 0;
  }

  .hero-frame {
    width: 100%;
    min-height: 100vh;
  }

  .benefit-grid,
  .offer-grid,
  .stats-inner,
  .portfolio-grid,
  .text-columns,
  .detail-card-grid,
  .contact-panels,
  .legal-columns,
  .offer-detail-content,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .detail-feature,
  .detail-form-layout {
    grid-template-columns: 1fr;
  }

  .page-angebot-consulting .detail-feature,
  .page-angebot-migration .detail-feature,
  .page-angebot-service .detail-feature {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .page-angebot-consulting .detail-feature img,
  .page-angebot-consulting .detail-feature .detail-feature__media,
  .page-angebot-consulting .detail-feature > div,
  .page-angebot-migration .detail-feature img,
  .page-angebot-migration .detail-feature > div,
  .page-angebot-service .detail-feature img,
  .page-angebot-service .detail-feature > div {
    width: min(588px, 100%);
  }

  .page-angebot-consulting .detail-feature .detail-feature__media {
    flex-basis: auto;
    min-width: 0;
  }

  .page-angebot-consulting .detail-feature img,
  .page-angebot-consulting .detail-feature .detail-feature__media,
  .page-angebot-migration .detail-feature img,
  .page-angebot-service .detail-feature img {
    margin-top: 0;
  }

  .page-angebot-migration .detail-feature img {
    width: clamp(70px, 20vw, 92px);
    max-width: 92px;
  }

  .page-angebot-migration .detail-feature img[alt="Migration Overview"] {
    width: clamp(180px, 36vw, 300px);
    max-width: 100%;
  }

  .page-angebot-migration .detail-stack {
    grid-template-columns: minmax(0, 1fr) minmax(min(100%, 180px), clamp(180px, 36vw, 300px)) minmax(0, 1fr);
    grid-template-areas:
      ". center-top ."
      "left-top center-image right-top"
      "left-bottom center-bottom right-bottom";
    gap: clamp(20px, 3vw, 34px) clamp(14px, 3vw, 24px);
  }

  .page-angebot-migration .detail-page {
    background-color: #fff;
  }

  .page-angebot-migration .detail-page::before {
    inset: 420px 0 0;
    background-position: center top;
  }

  .page-angebot-migration .detail-feature:nth-child(3),
  .page-angebot-migration .detail-feature:nth-child(5) {
    transform: none;
  }

  .page-angebot-migration .detail-feature:nth-child(1),
  .page-angebot-migration .detail-feature:nth-child(6) {
    padding-top: 0;
  }

  .page-angebot-service .detail-feature img {
    width: clamp(72px, 20vw, 96px);
    max-width: 96px;
  }

  .page-angebot-service .detail-stack {
    grid-template-columns: 1fr;
  }

  .page-group-digital-platform .detail-feature,
  .page-group-digital-platform .detail-card {
    grid-template-columns: 1fr;
    grid-template-areas:
      "media"
      "content";
    gap: 24px;
    padding: 28px 22px;
  }

  .page-group-digital-platform .detail-feature:nth-child(even),
  .page-group-digital-platform .detail-card:nth-child(even) {
    grid-template-areas:
      "media"
      "content";
  }

  .page-group-digital-platform .detail-feature img,
  .page-group-digital-platform .detail-card img,
  .page-group-digital-platform .detail-feature__media,
  .page-group-digital-platform .detail-card__media {
    width: min(100%, 560px);
    max-height: none;
  }

  .page-big-data-analytics .detail-feature:nth-child(1) img {
    width: 70%;
    max-width: 345px;
  }

  .page-big-data-analytics .detail-feature:nth-child(1) .detail-feature__media {
    width: 70%;
    max-width: 345px;
  }

  .page-big-data-analytics .detail-feature:nth-child(1) .detail-feature__media img {
    width: 100%;
    max-width: none;
  }

  .page-big-data-analytics .detail-feature:nth-child(2) img {
    width: 100%;
    max-width: 560px;
  }

  .page-big-data-analytics .detail-feature:nth-child(2) .detail-feature__media {
    width: 100%;
    max-width: 560px;
  }

  .page-big-data-analytics .detail-feature:nth-child(2) .detail-feature__media img {
    width: 100%;
    max-width: none;
  }

  .page-compliance-management .detail-card:nth-child(2) .detail-card__media {
    width: min(92%, 500px);
  }

  .page-kunden-management .detail-card:nth-child(3) .detail-card__media {
    width: min(92%, 500px);
  }

  .page-kunden-management .detail-card:nth-child(4) .detail-card__media {
    width: min(92%, 500px);
  }

  .page-kunden-management .detail-card:nth-child(5) .detail-card__media {
    width: min(92%, 500px);
  }

  .page-omni-channel-kommunikation .detail-card:nth-child(1) .detail-card__media {
    width: min(92%, 500px);
  }

  .page-omni-channel-kommunikation .detail-card:nth-child(2) .detail-card__media {
    width: min(92%, 500px);
  }

  .page-omni-channel-kommunikation .detail-card:nth-child(3) .detail-card__media {
    width: min(92%, 500px);
  }

  .page-portfolio-management .detail-card:nth-child(1) .detail-card__media {
    width: min(92%, 500px);
  }

  .page-portfolio-management .detail-card:nth-child(4) .detail-card__media {
    width: min(92%, 500px);
  }

  .page-portfolio-management .detail-card:nth-child(5) .detail-card__media {
    width: min(92%, 500px);
  }

  .page-rechtssichere-beratung .detail-card:nth-child(1) .detail-card__media {
    width: min(92%, 500px);
  }

  .page-rechtssichere-beratung .detail-card:nth-child(2) .detail-card__media {
    width: min(92%, 500px);
  }

  .page-reporting-und-versandsteuerung .detail-card:nth-child(1) .detail-card__media {
    width: min(92%, 500px);
  }

  .page-group-digital-platform .detail-hero {
    min-height: 300px;
  }

  .page-group-digital-platform .detail-hero-copy {
    padding-top: 38px;
    padding-bottom: 28px;
  }

  .page-group-digital-platform .detail-hero-copy h1 {
    font-size: clamp(34px, 8vw, 52px);
  }

  .page-group-digital-platform .detail-hero-copy blockquote {
    font-size: 18px;
  }

  .page-kontakt .detail-form-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .page-kontakt .detail-form,
  .detail-sidebar-card--contact {
    grid-column: auto;
    width: 100%;
  }

  .detail-sidebar-card--contact img {
    width: min(280px, 100%);
  }

  .page-privacy-policy-datenschutz .legal-columns,
  .page-modern-slavery-and-human-trafficking-statement .legal-columns {
    width: min(100%, calc(100vw - 28px));
    gap: 22px;
  }

  .page-privacy-policy-datenschutz .legal-column,
  .page-modern-slavery-and-human-trafficking-statement .legal-column {
    min-width: 0;
    padding: 24px 18px;
    overflow-wrap: anywhere;
  }

  .page-privacy-policy-datenschutz .legal-column h2,
  .page-modern-slavery-and-human-trafficking-statement .legal-column h2 {
    font-size: clamp(30px, 9vw, 42px);
    line-height: 1.08;
    overflow-wrap: anywhere;
  }

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

  .detail-hero {
    min-height: 420px;
    padding: 152px 20px 78px;
  }

  .detail-hero__inner {
    width: min(680px, 100%);
  }

  .detail-hero__inner h1 {
    margin-bottom: 18px;
    font-size: clamp(34px, 8vw, 52px);
    max-width: 12ch;
  }

  .detail-shell {
    padding: 62px 0;
  }

  .portfolio-card {
    min-height: 178px;
    padding: 28px 26px 26px;
  }

  .timeline-track {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .benefit {
    min-height: auto;
  }

  .stats-band {
    background-attachment: scroll;
  }

  .portfolio-filter {
    flex-wrap: wrap;
    gap: 18px 28px;
  }

  .timeline-shell {
    padding: 40px 42px;
  }

  .timeline-track {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .timeline-track::before {
    left: 6px;
    right: auto;
    top: 0;
    bottom: 0;
    width: 2px;
    height: auto;
  }

  .timeline-item {
    padding-left: 28px;
    min-height: auto;
  }

  .timeline-item::before {
    top: 7px;
    left: 0;
  }

  .timeline-item h3 {
    margin-bottom: 8px;
  }

  .partner-band {
    flex-wrap: wrap;
  }

  .footer-main section:last-child {
    text-align: left;
  }

  .offer-detail-content {
    gap: 30px;
  }

  .offer-detail-links {
    flex-direction: column;
    align-items: center;
  }

  .detail-shell {
    width: min(960px, calc(100vw - 36px));
  }

  .cookie-card {
    left: 20px;
    bottom: 20px;
  }

  .cookie-modal {
    width: min(728px, calc(100vw - 24px));
    padding: 24px 20px 20px;
  }
}

@media (max-width: 640px) {
  .page-angebot-migration .detail-stack.detail-stack--migration-columns {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .page-angebot-migration .migration-feature-column--center,
  .page-angebot-migration .migration-feature-column--left,
  .page-angebot-migration .migration-feature-column--right {
    grid-column: 1;
    grid-row: auto;
  }

  .page-angebot-migration .detail-feature img[alt="Migration Overview"] {
    width: clamp(260px, 84vw, 392px);
  }
}

@media (max-width: 520px) {
  .section {
    padding: 42px 0;
  }

  .section h2,
  .timeline-section h2,
  .partners h2 {
    padding: 0 18px;
  }

  .hero-title h1 {
    font-size: clamp(28px, 9.2vw, 34px);
    line-height: 1;
  }

  .hero-title {
    width: min(900px, calc(100vw - 28px));
  }

  .hero-links {
    flex-wrap: wrap;
    letter-spacing: 2px;
  }

  .scroll-indicator {
    bottom: 22px;
  }

  .offer-cube {
    --offer-cube-size: 176px;
    --offer-cube-depth: 88px;
    width: var(--offer-cube-size);
    height: var(--offer-cube-size);
  }

  .detail-hero {
    min-height: 360px;
    padding: 146px 18px 64px;
  }

  .detail-hero__inner p {
    margin-bottom: 10px;
    font-size: 11px;
    letter-spacing: 2px;
  }

  .detail-hero__inner h1 {
    font-size: clamp(30px, 9vw, 42px);
    max-width: 11ch;
  }

  .detail-hero__inner blockquote {
    max-width: 30rem;
    font-size: 17px;
    line-height: 1.6;
  }

  .detail-feature h2,
  .detail-card h2,
  .award-item h2,
  .detail-form h2,
  .detail-richtext h2,
  .legal-column h2 {
    font-size: 26px;
  }

  .page-zertifikateundauszeichnungen .detail-richtext h2:first-child {
    font-size: clamp(30px, 9vw, 38px);
    line-height: 1.12;
    overflow-wrap: anywhere;
  }

  .award-item {
    grid-template-columns: 78px minmax(0, 1fr);
    gap: 18px;
    overflow-wrap: anywhere;
  }

  .award-item > div {
    min-width: 0;
  }

  .award-item__image {
    width: 78px;
  }

  .award-item__image--certificate {
    grid-column: 2;
    width: min(180px, 100%);
  }

  .page-zertifikateundauszeichnungen .award-item__image--certificate.detail-image-curved-shadow {
    grid-column: 2;
    width: min(90px, 100%);
  }

  .detail-shell {
    width: min(960px, calc(100vw - 28px));
    padding: 52px 0;
  }

  .detail-form,
  .detail-sidebar-card,
  .legal-column {
    padding: 22px;
  }

  .offer-front {
    padding: 24px 16px 16px;
    transform: translateZ(var(--offer-cube-depth));
  }

  .offer-back {
    padding: 16px 14px;
    transform: rotateX(-90deg) translateZ(var(--offer-cube-depth));
  }

  .offer-back span {
    font-size: clamp(10.4px, 2.8vw, 11px);
    line-height: 1.28;
  }

  .offer-icon {
    width: 96px;
    height: 96px;
  }

  .offer-icon i {
    font-size: 68px;
  }

  .cookie-card div {
    grid-template-columns: 1fr;
  }

  .cookie-modal-actions {
    grid-template-columns: 1fr;
  }

  .cookie-setting {
    grid-template-columns: 1fr 20px;
    padding: 12px 14px;
  }
}

@media (min-width: 768px) {
  .page-group-organisation .detail-hero {
    min-height: 300px;
  }
}

@media (min-width: 992px) {
  .page-group-organisation .detail-hero {
    min-height: 500px;
  }
}
