@font-face {
  font-family: "Open Sans";
  src: url("assets/fonts/OpenSans-Variable.woff2") format("woff2");
  font-weight: 300 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Open Sans";
  src: url("assets/fonts/OpenSans-Italic-Variable.woff2") format("woff2");
  font-weight: 300 800;
  font-style: italic;
  font-display: swap;
}

:root {
  --pec-night: #04232c;
  --pec-dark: #04232c;
  --pec-white: #ffffff;
  --pec-muted: rgba(255,255,255,.5);
  --pec-green: #00a19a;
  --header-h: 104px;
  --header-h-compact: 74px;
}
* { box-sizing: border-box; }
html, body { margin: 0; min-height: 100%; overflow-x: hidden; }
body {
  min-height: 160vh;
  font-family: "Open Sans", "Segoe UI", -apple-system, BlinkMacSystemFont, Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  background: radial-gradient(circle at 50% 18%, rgba(0,161,154,.1), transparent 34%), #030d11;
  color: var(--pec-white);
}
.site-header {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 2000;
  min-height: var(--header-h);
  background: var(--pec-night);
  color: var(--pec-white);
  transition: min-height .28s ease, background-color .28s ease, box-shadow .28s ease;
}
.site-header.is-scrolled {
  min-height: var(--header-h-compact);
  background: rgba(4, 35, 44, .96);
  box-shadow: 0 12px 34px rgba(0,0,0,.22);
  backdrop-filter: blur(10px);
}
.header-inner {
  min-height: inherit;
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr) auto;
  align-items: center;
  gap: 46px;
  padding: 0 36px;
}
.brand {
  display: inline-flex;
  align-items: center;
  width: 230px;
  height: 50px;
  flex: 0 0 auto;
  line-height: 0;
}
.brand img {
  display: block;
  width: 230px;
  height: auto;
  max-height: 50px;
  transition: width .28s ease, max-height .28s ease;
}
.site-header.is-scrolled .brand img { width: 184px; max-height: 40px; }
.nav-scroll {
  min-width: 0;
  justify-self: center;
}
.primary-nav {
  display: flex;
  align-items: stretch;
  justify-content: center;
  min-height: inherit;
  white-space: nowrap;
}
.nav-link,
.language-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--pec-white);
  transition: color .2s ease, opacity .2s ease, min-height .28s ease;
}
.nav-link {
  min-height: var(--header-h);
  padding: 0 14px;
  font-size: 14px;
  line-height: 14px;
  font-weight: 600;
  letter-spacing: .7px;
}
.site-header.is-scrolled .nav-link { min-height: var(--header-h-compact); }
.nav-link.is-current { color: var(--pec-green); }
.nav-link:hover,
.language-nav a:hover { color: var(--pec-green); }
.nav-item.is-current .subnav-toggle {
  border-color: rgba(0,161,154,.75);
  color: var(--pec-green);
  background: rgba(0,161,154,.12);
}
.nav-item { position: relative; display: inline-flex; align-items: stretch; }
.nav-item > .nav-link::after {
  content: "";
  width: 6px;
  height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  margin-left: 10px;
  opacity: .65;
}
.subnav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  margin: auto 6px auto -6px;
  padding: 0;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 0;
  color: #fff;
  background: rgba(255,255,255,.06);
  cursor: pointer;
  transition: border-color .2s ease, background .2s ease, color .2s ease;
}
.subnav-toggle span {
  width: 8px;
  height: 8px;
  margin-right: 2px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform .2s ease;
}
.subnav-toggle:hover,
.subnav-toggle[aria-expanded="true"] {
  border-color: rgba(0,161,154,.75);
  color: var(--pec-green);
  background: rgba(0,161,154,.12);
}
.subnav-toggle[aria-expanded="true"] span { transform: rotate(225deg) translate(-1px, -1px); }
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  width: 278px;
  padding: 13px 0;
  background: rgba(4, 35, 44, .98);
  border-top: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 22px 44px rgba(0,0,0,.28);
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease;
}
.dropdown-wide { width: 324px; }
.has-menu:hover .dropdown,
.has-menu:focus-within .dropdown {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.dropdown a {
  display: block;
  padding: 7px 13px;
  color: rgba(255,255,255,.9);
  text-decoration: none;
  font-size: 12px;
  line-height: 1.28;
  font-weight: 400;
}
.dropdown a:hover,
.dropdown a.is-current,
.dropdown a[aria-current="page"] {
  color: #fff;
  background: rgba(0,161,154,.18);
}
.language-nav {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  min-height: inherit;
  white-space: nowrap;
}
.language-nav a {
  min-height: var(--header-h);
  font-size: 11px;
  line-height: 11px;
  font-weight: 600;
  letter-spacing: .55px;
  padding-left: 0;
}
.language-nav a + a { margin-left: 18px; }
.language-nav .is-muted { color: #959595; }
.site-header.is-scrolled .language-nav a { min-height: var(--header-h-compact); }
.page-stage { min-height: 140vh; padding-top: var(--header-h); background: #000; }
.hero-section {
  position: relative;
  min-height: 655px;
  overflow: hidden;
  isolation: isolate;
  background: #02090c;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(180deg, rgba(0,0,0,.16), rgba(0,0,0,.14) 52%, rgba(0,0,0,.54) 100%),
    linear-gradient(90deg, rgba(0,0,0,.16), rgba(0,0,0,0) 36%, rgba(0,0,0,.22) 100%),
    url("assets/headback.jpg");
  background-size: cover;
  background-position: center top;
  transform: scale(1.004);
}
.pec-home-performance .hero-bg {
  display: block;
  overflow: hidden;
  background-image: none;
}
.pec-home-performance .hero-bg img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.pec-home-performance .hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,.16), rgba(0,0,0,.14) 52%, rgba(0,0,0,.54) 100%),
    linear-gradient(90deg, rgba(0,0,0,.16), rgba(0,0,0,0) 36%, rgba(0,0,0,.22) 100%);
  pointer-events: none;
}
.hero-section::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 220px;
  z-index: -1;
  background: linear-gradient(180deg, rgba(2,9,12,0), rgba(2,9,12,.94) 78%, #02090c 100%);
  pointer-events: none;
}
.hero-inner {
  width: min(1488px, calc(100% - 432px));
  min-height: 655px;
  margin: 0 auto;
  padding-top: 91px;
  display: grid;
  grid-template-columns: 986px 484px;
  column-gap: 18px;
  align-items: start;
}
.hero-headline-wrap { padding-left: 0; }
.hero-copy-wrap { padding: 18px 0 0 0; }
.hero-section h1 {
  margin: 0;
  color: #fff;
  max-width: 986px;
  font-size: 72px;
  line-height: 76.8px;
  font-weight: 400;
  letter-spacing: .002em;
}
.hero-copy-wrap p {
  margin: 0;
  max-width: 484px;
  color: #fff;
  font-size: 24px;
  line-height: 28.8px;
  font-weight: 400;
}
.hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 305px;
  min-height: 52px;
  margin-top: 36px;
  padding: 16px 31px;
  border: 1px solid rgba(255,255,255,.88);
  border-radius: 150px;
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  line-height: 1;
  font-weight: 500;
  background: rgba(0,0,0,.08);
  transition: border-color .22s ease, background .22s ease, color .22s ease;
}
.hero-cta :is(strong, .semantic-emphasis) {
  color: var(--pec-green);
  font-size: 27px;
  line-height: 0;
  font-weight: 800;
  margin-top: 0;
}
.hero-cta:hover {
  border-color: var(--pec-green);
  background: rgba(0,161,154,.12);
}
.studies-section {
  position: relative;
  z-index: 3;
  width: min(1524px, calc(100% - 40px));
  min-height: 485px;
  margin: -73px 0 0 max(20px, calc((100vw - 1560px) / 2));
  padding-left: 36px;
}
.studies-track {
  display: grid;
  grid-template-columns: repeat(4, 345px);
  gap: 36px;
  align-items: start;
  overflow: visible;
  transition: transform .42s cubic-bezier(.22,.61,.36,1);
  will-change: transform;
}
.study-card {
  position: relative;
  display: block;
  width: 345px;
  height: 431.25px;
  overflow: hidden;
  color: #fff;
  text-decoration: none;
  background: #071016;
}
.study-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.002);
  transition: transform .45s ease, filter .45s ease;
}
.study-card:hover img { transform: scale(1.055); filter: brightness(1.05); }
.study-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0) 33%, rgba(0,0,0,.38) 64%, rgba(0,0,0,.8) 100%),
    linear-gradient(90deg, rgba(0,0,0,.14), rgba(0,0,0,0) 60%);
}
.study-text {
  position: absolute;
  left: 36px;
  right: 86px;
  bottom: 35px;
  display: block;
  color: #fff;
}
.study-text :is(strong, .semantic-emphasis) {
  display: block;
  font-size: 20px;
  line-height: 24px;
  font-weight: 500;
  letter-spacing: 0;
  margin-bottom: 9px;
}
.study-text small {
  display: block;
  font-size: 12px;
  line-height: 21px;
  font-weight: 600;
}
.carousel-dots {
  display: none;
  align-items: center;
  justify-content: flex-end;
  gap: 9px;
  margin-top: 18px;
}
.carousel-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 1px solid rgba(255,255,255,.82);
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}
.carousel-dots button.is-active {
  background: #fff;
  border-color: #fff;
  transform: scale(1.12);
}
.studies-plus {
  display: none;
  position: absolute;
  right: 431px;
  top: 354px;
  z-index: 4;
  width: 88px;
  height: 88px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: rgba(0,0,0,.82);
  box-shadow: 0 20px 40px rgba(0,0,0,.36);
  font-size: 28px;
  line-height: 88px;
  font-weight: 300;
  cursor: pointer;
}
.studies-plus:hover { color: var(--pec-green); }
.services-heading-section {
  position: relative;
  width: 100%;
  height: 180px;
  background: #000;
  color: #fff;
  padding: 72px 216px 36px;
}
.services-heading-inner {
  width: min(1488px, 100%);
  height: 72px;
  margin: 0 auto;
  text-align: center;
}
.services-heading-section h2 {
  display: inline-block;
  margin: 0;
  color: #fff;
  font-size: 60px;
  line-height: 72px;
  font-weight: 400;
  letter-spacing: 0;
}
.service-areas-section {
  width: 100%;
  min-height: 1120px;
  padding: 36px 216px 144px;
  background: #000;
  color: #fff;
}
.service-areas-grid {
  width: min(1488px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 708px);
  column-gap: 72px;
  align-items: start;
}
.service-area-card {
  width: 708px;
  color: #fff;
}
.service-area-image {
  display: block;
  width: 708px;
  height: 397.594px;
  overflow: hidden;
  line-height: 0;
  background: #071016;
}
.service-area-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease, filter .45s ease;
}
.service-area-image:hover img { transform: scale(1.035); filter: brightness(1.06); }
.service-area-card h3 {
  margin: 36px 0 40.5px;
  max-width: 620px;
  color: #fff;
  font-size: 50px;
  line-height: 60px;
  font-weight: 400;
  letter-spacing: 0;
}
.service-area-card p {
  margin: 0;
  width: 708px;
  color: #fff;
  font-size: 18px;
  line-height: 31.5px;
  font-weight: 400;
}
.service-area-card p + p { margin-top: 36px; }
.service-area-card :is(strong, .semantic-emphasis) { font-weight: 700; }
.service-area-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 23px;
  min-height: 51.53px;
  margin-top: 36px;
  padding: 16px 39px;
  border: 1px solid rgba(255,255,255,.9);
  border-radius: 999px;
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  line-height: 1.25;
  font-weight: 500;
  white-space: nowrap;
  transition: border-color .22s ease, color .22s ease, background .22s ease;
}
.service-area-button:hover {
  color: var(--pec-green);
  border-color: var(--pec-green);
  background: rgba(0,161,154,.09);
}
.service-area-button span,
.pec-group-button span {
  color: #fff;
}
.fa.fa-arrow-right2 {
  display: inline-block;
  width: 14px;
  height: 12px;
  flex: 0 0 14px;
  margin-top: 0;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath d='M438.6 278.6 278.6 438.6c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3L338.8 288H32c-17.7 0-32-14.3-32-32s14.3-32 32-32h306.7L233.4 118.6c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0l160 160c12.4 12.5 12.4 32.8-.1 45.3z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath d='M438.6 278.6 278.6 438.6c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3L338.8 288H32c-17.7 0-32-14.3-32-32s14.3-32 32-32h306.7L233.4 118.6c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0l160 160c12.4 12.5 12.4 32.8-.1 45.3z'/%3E%3C/svg%3E") center / contain no-repeat;
  transform: scaleX(.84);
}
.presence-section {
  position: relative;
  display: grid;
  grid-template-columns: 960px 960px;
  width: 100%;
  min-height: 805px;
  background: var(--pec-night);
  color: #fff;
  overflow: hidden;
}
.presence-copy {
  width: 960px;
  min-height: 805px;
  padding: 108px 108px 108px;
}
.presence-copy h2 {
  margin: 0;
  width: 744px;
  color: #fff;
  font-size: 50px;
  line-height: 60px;
  font-weight: 400;
  letter-spacing: 0;
}
.presence-profile-row {
  width: 744px;
  margin-top: 72px;
  display: grid;
  grid-template-columns: 336px 336px;
  column-gap: 72px;
  align-items: start;
}
.presence-profile {
  margin: 0;
  width: 336px;
}
.presence-profile img {
  display: block;
  width: 336px;
  height: 336px;
  border-radius: 999px;
  object-fit: cover;
}
.presence-profile figcaption {
  margin-top: 17px;
  color: #fff;
  font-size: 13px;
  line-height: 22.75px;
  font-weight: 400;
}
.presence-text {
  width: 336px;
  color: #fff;
}
.presence-text p {
  margin: 0;
  color: #fff;
  font-size: 15px;
  line-height: 26.25px;
  font-weight: 400;
}
.presence-text p + p { margin-top: 18px; }
.presence-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 305px;
  min-height: 52px;
  margin-top: 36px;
  padding: 16px 31px;
  border: 1px solid rgba(255,255,255,.88);
  border-radius: 150px;
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  line-height: 1;
  font-weight: 500;
  transition: border-color .22s ease, color .22s ease, background .22s ease;
}
.presence-button span {
  color: var(--pec-green);
  font-size: 27px;
  line-height: 0;
  font-weight: 800;
  margin-top: 0;
}
.presence-button:hover {
  border-color: var(--pec-green);
  background: rgba(0,161,154,.11);
}
.presence-map {
  position: relative;
  width: 960px;
  min-height: 805px;
}
.presence-map > img {
  position: absolute;
  left: 80px;
  top: 2.5px;
  display: block;
  width: 800px;
  height: 800px;
}
.presence-city {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 34px;
  padding: 8px 10px 8px 8px;
  color: #fff;
  background: rgba(4,35,44,.8);
  border-radius: 999px;
  text-decoration: none;
  font-size: 15px;
  line-height: 15px;
  font-weight: 700;
  white-space: nowrap;
}
.presence-city span {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255,255,255,.95);
  border-radius: 50%;
  background: rgba(0,47,53,.96);
  position: relative;
  flex: 0 0 auto;
}
.presence-city span::before,
.presence-city span::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 8px;
  height: 2px;
  background: #fff;
  transform: translate(-50%, -50%);
}
.presence-city span::after { transform: translate(-50%, -50%) rotate(90deg); }
.city-bremen { left: 383px; top: 225.5px; }
.city-wolfsburg { left: 478px; top: 289.5px; }
.city-duesseldorf { left: 283.8px; top: 377.5px; }
.city-stuttgart { left: 403.8px; top: 561.5px; }
.city-muenchen { left: 530.1px; top: 617.5px; }
.city-friedrichshafen { left: 418.7px; top: 657.5px; }
.city-marquee-section {
  position: relative;
  width: 100%;
  height: 144px;
  padding-bottom: 30px;
  background: var(--pec-night);
  color: #fff;
  overflow: hidden;
}
.city-marquee-window {
  width: 100%;
  max-width: none;
  height: 114px;
  margin: 0 auto;
  padding: 36px 0;
  overflow: hidden;
}
.city-marquee-line {
  display: block;
  width: max-content;
  height: 42px;
  margin: 0;
  white-space: nowrap;
  color: #fff;
  font-size: 35px;
  line-height: 42px;
  font-weight: 300;
  letter-spacing: 0;
  text-transform: uppercase;
  transform: translate3d(0,0,0);
  animation: none;
  will-change: transform;
}
.city-marquee-line span { display: inline; }
.pec-group-section {
  position: relative;
  width: 100%;
  min-height: 727.03px;
  padding: 144px 0 216px;
  background: var(--pec-night);
  color: #fff;
  overflow: visible;
}
.pec-group-inner {
  width: 1200px;
  max-width: 100%;
  height: 367.03px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 485px 679px;
  align-items: start;
}
.pec-group-copy {
  width: 485px;
  padding-left: 36px;
  color: #fff;
}
.pec-group-copy h2 {
  width: 449px;
  margin: 0;
  color: #fff;
  font-size: 35px;
  line-height: 42px;
  font-weight: 500;
  letter-spacing: 0;
}
.pec-group-copy p {
  width: 449px;
  margin: 36px 0 0;
  color: #fff;
  font-size: 15px;
  line-height: 26.25px;
  font-weight: 400;
}
.pec-group-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 164.88px;
  min-height: 51.53px;
  margin-top: 36px;
  padding: 16px 39px;
  border: 1px solid rgba(255,255,255,.9);
  border-radius: 999px;
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  line-height: 1.25;
  font-weight: 500;
  white-space: nowrap;
  transition: border-color .22s ease, color .22s ease, background .22s ease;
}
.pec-group-button:hover {
  color: var(--pec-green);
  border-color: var(--pec-green);
  background: rgba(0,161,154,.09);
}
.pec-group-visual {
  position: relative;
  width: 679px;
  height: 431.34px;
}
.pec-group-image {
  position: absolute;
  display: block;
  width: 458.66px;
  object-fit: cover;
  color: #fff;
  box-shadow: none;
}
.pec-group-image-top {
  left: 139.98px;
  top: 0;
  height: 229.33px;
}
.pec-group-image-front {
  left: 213.36px;
  top: 87.35px;
  height: 343.98px;
}
.transformation-section {
  --transformation-bg: #07584f;
  --transformation-content-opacity: .18;
  position: relative;
  width: 100%;
  min-height: 986.24px;
  padding: 144px 216px 72px;
  background: var(--transformation-bg);
  color: #fff;
  overflow: hidden;
  transition: background-color .18s linear;
}
.transformation-inner {
  position: relative;
  z-index: 2;
  width: 1488px;
  max-width: 100%;
  margin: 0 auto;
  text-align: center;
  opacity: var(--transformation-content-opacity);
  transition: opacity .12s linear;
}
.transformation-kicker {
  margin: 0;
  height: 84px;
  color: #fff;
  font-size: 70px;
  line-height: 84px;
  font-weight: 500;
  letter-spacing: 0;
  text-align: center;
  white-space: nowrap;
}
.transformation-kicker span,
.transformation-kicker sup { font: inherit; }
.transformation-kicker sup {
  position: static;
  vertical-align: baseline;
}
.transformation-section h2,
.transformation-copy {
  width: 724px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  color: #fff;
  font-size: 24px;
  line-height: 28.8px;
  font-weight: 500;
  letter-spacing: 0;
}
.transformation-section h2 {
  margin-top: 36px;
  margin-bottom: 0;
}
.transformation-copy {
  margin-top: 0;
  margin-bottom: 0;
}
.transformation-card-track {
  width: 1488px;
  max-width: none;
  margin: 72.01px 0 0 0;
  display: grid;
  grid-template-columns: repeat(3, 472px);
  column-gap: 36px;
  align-items: start;
  transition: transform .42s cubic-bezier(.22,.61,.36,1);
  will-change: transform;
}
.transformation-card {
  width: 472px;
  height: 314.82px;
  margin: 0;
  overflow: visible;
}
.transformation-card a {
  position: relative;
  display: block;
  width: 472px;
  height: 314.82px;
  overflow: hidden;
  color: #fff;
  text-decoration: none;
  text-align: left;
  background: #06161a;
}
.transformation-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease, filter .45s ease;
}
.transformation-card:hover img { transform: scale(1.05); filter: brightness(1.05); }
.transformation-card-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,.03) 0%, rgba(0,0,0,.2) 43%, rgba(0,0,0,.76) 100%),
    linear-gradient(90deg, rgba(0,0,0,.28), rgba(0,0,0,0) 58%);
}
.transformation-cat {
  position: absolute;
  right: 36px;
  top: 36px;
  width: auto;
  max-width: 180px;
  color: #fff;
  font-size: 15px;
  line-height: 26.25px;
  font-weight: 700;
  text-transform: uppercase;
  text-align: right;
}
.transformation-card-text {
  position: absolute;
  left: 36px;
  right: 36px;
  bottom: 35px;
  color: #fff;
}
.transformation-card-text small {
  display: block;
  margin-bottom: 8px;
  color: #fff;
  font-size: 15px;
  line-height: 26.25px;
  font-weight: 400;
}
.transformation-card-text :is(strong, .semantic-emphasis) {
  display: block;
  color: #fff;
  font-size: 24px;
  line-height: 28.8px;
  font-weight: 400;
  letter-spacing: 0;
}
.transformation-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 305.28px;
  min-height: 52.03px;
  margin-top: 123.99px;
  padding: 16px 31px;
  border: 1px solid rgba(255,255,255,.9);
  border-radius: 999px;
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  line-height: 1.25;
  font-weight: 500;
  transition: border-color .22s ease, color .22s ease, background .22s ease;
}
.transformation-button span,
.footer-cta span {
  color: var(--pec-green);
  font-size: 27px;
  line-height: 0;
  font-weight: 800;
  margin-top: 0;
}
.transformation-button:hover {
  color: var(--pec-green);
  border-color: var(--pec-green);
  background: rgba(0,0,0,.14);
}
.funnel-teaser-section {
  position: relative;
  width: 100%;
  padding: 112px max(28px, calc((100vw - 1488px) / 2));
  background: #edf4f2;
  color: var(--pec-night);
  overflow: hidden;
  isolation: isolate;
}
.funnel-teaser-section::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: calc(max(28px, calc((100vw - 1488px) / 2)) + min(189px, 13.2vw));
  border-left: 1px dashed rgba(0,161,154,.44);
  z-index: 0;
  pointer-events: none;
}
.funnel-teaser-inner {
  position: relative;
  z-index: 1;
  display: block;
}
.funnel-teaser-head {
  display: grid;
  grid-template-columns: minmax(0, 760px) auto;
  gap: 36px;
  align-items: end;
  margin-bottom: 48px;
}
.funnel-teaser-head p {
  grid-column: 1;
  margin: 0 0 16px;
  color: var(--pec-green);
  font-size: 14px;
  line-height: 17px;
  font-weight: 600;
  letter-spacing: .01em;
  text-transform: uppercase;
}
.funnel-teaser-head h2 {
  grid-column: 1;
  margin: 0;
  color: var(--pec-night);
  font-size: clamp(44px, 4.2vw, 72px);
  line-height: 1.07;
  font-weight: 400;
  letter-spacing: -.05em;
}
.funnel-teaser-sliders {
  grid-column: 2;
  grid-row: 1 / span 2;
  justify-self: end;
  align-self: end;
  position: relative;
  width: min(430px, 30vw);
  height: 176px;
  overflow: hidden;
  background: transparent;
  border-radius: 28px;
}
.funnel-teaser-sliders::after { display: none; }
.funnel-teaser-sliders span {
  position: relative;
  display: block;
  height: 1px;
  margin: 27px 0;
  background: rgba(4,35,44,.38);
}
.funnel-teaser-sliders span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: var(--pos, var(--x));
  width: 19px;
  height: 19px;
  border-radius: 50%;
  background: var(--pec-green);
  box-shadow: 0 0 24px rgba(0,161,154,.34);
  transform: translate(-50%, -50%);
  transition: left .46s steps(4, end);
}
.funnel-teaser-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid rgba(4,35,44,.16);
  border-left: 1px solid rgba(4,35,44,.16);
  width: 100%;
}
.funnel-teaser-card {
  position: relative;
  z-index: 1;
  min-width: 0;
  min-height: 270px;
  padding: 26px 22px 24px;
  border-right: 1px solid rgba(4,35,44,.16);
  border-bottom: 1px solid rgba(4,35,44,.16);
  background: #edf4f2;
  color: var(--pec-night);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  transition: background .18s ease, color .18s ease, transform .18s ease;
}
.funnel-teaser-card:hover {
  background: var(--pec-dark);
  color: #fff;
  transform: translateY(-3px);
}
.funnel-teaser-card span {
  align-self: flex-start;
  text-align: left;
  color: var(--pec-green);
  font-size: 13px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: .12em;
}
.funnel-teaser-card :is(strong, .semantic-emphasis) {
  display: block;
  margin-top: 34px;
  font-size: clamp(21px, 1.35vw, 26px);
  line-height: 1.12;
  font-weight: 400;
  letter-spacing: -.035em;
  hyphens: auto;
  overflow-wrap: normal;
}
.funnel-teaser-card small {
  display: block;
  margin-top: 16px;
  color: rgba(4,35,44,.68);
  font-size: 14px;
  line-height: 1.5;
}
.funnel-teaser-card:hover small { color: rgba(234,244,241,.70); }
.funnel-teaser-card em {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-self: flex-start;
  margin-top: auto;
  margin-left: -8px;
  padding: 8px;
  background: #edf4f2;
  color: var(--pec-green);
  font-size: 12px;
  line-height: 1;
  font-style: normal;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.funnel-teaser-card:hover em { background: var(--pec-dark); }
.impact-section {
  position: relative;
  width: 100%;
  min-height: 1083.97px;
  padding: 144px 216px;
  background: var(--pec-dark);
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.pec-noise-canvas {
  position: absolute;
  inset: -2%;
  width: 104%;
  height: 104%;
  pointer-events: none;
  z-index: 0;
  opacity: .58;
  transform: scale(1.04);
  transform-origin: center;
}
.impact-section::after,
.site-footer::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(4,35,44,.20), rgba(4,35,44,.04) 44%, rgba(0,0,0,.24));
}
.impact-inner {
  position: relative;
  z-index: 2;
  width: 1488px;
  max-width: 100%;
  margin: 0 auto;
}
.impact-section h2 {
  width: 1488px;
  max-width: 100%;
  min-height: 180px;
  margin: 0;
  color: #fff;
  font-size: 50px;
  line-height: 60px;
  font-weight: 400;
  letter-spacing: 0;
}
.impact-list {
  width: 1488px;
  max-width: 100%;
  margin-top: 36px;
}
.impact-item {
  display: grid;
  grid-template-columns: 96.98px 629px 1fr;
  column-gap: 36px;
  min-height: 187.19px;
  padding-top: 41px;
  padding-bottom: 42px;
  border-top: 1px solid rgba(255,255,255,.28);
}
.impact-item:last-child {
  border-bottom: 1px solid rgba(255,255,255,.28);
}
.impact-number,
.impact-item h3,
.impact-copy {
  margin: 0;
  color: #fff;
}
.impact-number,
.impact-item h3 {
  font-size: 35px;
  line-height: 42px;
  font-weight: 400;
  letter-spacing: 0;
}
.impact-item h3 {
  width: 295.78px;
  max-width: 100%;
}
.impact-copy {
  width: 690px;
  max-width: 100%;
  padding-top: 0;
  font-size: 24px;
  line-height: 28.8px;
  font-weight: 400;
}
.impact-copy :is(strong, .semantic-emphasis) {
  font-weight: 700;
}
.closing-heading-section {
  width: 100%;
  height: 288px;
  padding: 72px 216px;
  background: #000;
  color: #fff;
  overflow: hidden;
}
.closing-heading-inner {
  width: 1488px;
  max-width: 100%;
  height: 144px;
  margin: 0 auto;
  text-align: center;
}
.closing-heading-section h2 {
  width: 1488px;
  max-width: 100%;
  margin: 0;
  color: #fff;
  font-size: 60px;
  line-height: 72px;
  font-weight: 400;
  letter-spacing: 0;
  text-align: center;
}
.site-footer {
  position: relative;
  width: 100%;
  min-height: 914.17px;
  background: var(--pec-dark);
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.site-footer a {
  color: inherit;
  text-decoration: none;
}
.footer-top {
  position: relative;
  z-index: 2;
  width: 1596px;
  max-width: calc(100% - 216px);
  min-height: 594px;
  margin: 0 0 0 108px;
  padding-top: 144px;
  display: grid;
  grid-template-columns: 798px 798px;
}
.footer-nav {
  width: 690px;
  max-width: 100%;
  margin-left: 108px;
  display: flex;
  flex-direction: column;
}
.footer-nav a {
  display: block;
  min-height: 36px;
  margin: 0 0 18px;
  font-size: 30px;
  line-height: 36px;
  font-weight: 400;
  letter-spacing: 0;
}
.footer-claim {
  width: 690px;
  max-width: 100%;
  margin-left: 108px;
  justify-self: start;
}
.footer-claim p {
  width: 690px;
  max-width: 100%;
  margin: 0;
  color: #fff;
  font-size: 60px;
  line-height: 72px;
  font-weight: 780;
  letter-spacing: -.045em;
}
.footer-claim p span {
  display: block;
}
.footer-word {
  position: relative;
  width: max-content;
  max-width: 100%;
  opacity: 0;
  transform: translateY(22px);
  animation:
    footerIntro .9s cubic-bezier(.16, 1, .3, 1) forwards,
    footerWordGlow 9s ease-in-out infinite;
}
.footer-word::after {
  content: "";
  position: absolute;
  left: 6%;
  right: 6%;
  bottom: .04em;
  height: .08em;
  background: var(--pec-green);
  transform: scaleX(0);
  transform-origin: left;
  opacity: .65;
  animation: footerUnderlineDrift 8.7s ease-in-out infinite;
}
.footer-word:nth-child(1) {
  animation-delay: .05s, 1.1s;
  animation-duration: .9s, 8.7s;
}
.footer-word:nth-child(2) {
  animation-delay: .18s, .4s;
  animation-duration: .9s, 10.2s;
}
.footer-word:nth-child(2)::after {
  animation-delay: 1.2s;
  animation-duration: 7.8s;
}
.footer-word-accent {
  color: #fff;
}
.footer-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 320px;
  min-height: 52.03px;
  margin-top: 108.97px;
  border: 1px solid rgba(255,255,255,.95);
  border-radius: 999px;
  padding: 16px 38px;
  font-size: 15px;
  line-height: 18px;
  font-weight: 500;
  text-align: center;
  transition: border-color .22s ease, background .22s ease, color .22s ease;
}
.footer-cta:hover {
  border-color: var(--pec-green);
  background: rgba(0,161,154,.14);
  color: var(--pec-green);
}
.footer-marquee {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 115px;
  display: flex;
  align-items: flex-start;
  padding-top: 0;
  border-bottom: 1px solid rgba(255,255,255,.28);
  overflow: hidden;
}
.footer-marquee-line {
  width: max-content;
  margin: 0;
  color: #fff;
  white-space: nowrap;
  font-size: 35px;
  line-height: 42px;
  font-weight: 300;
  letter-spacing: 0;
  transform: translate3d(0,0,0);
  animation: none;
}
.footer-marquee-line span {
  display: inline-block;
}
.city-marquee-line:where(.is-css-marquee),
.footer-marquee-line:where(.is-css-marquee) {
  animation: pec-marquee-loop var(--pec-marquee-duration, 60s) linear infinite;
}
@keyframes pec-marquee-loop {
  from { transform: translate3d(calc(var(--pec-marquee-distance, 1900px) * -1), 0, 0); }
  to { transform: translate3d(0, 0, 0); }
}
.footer-bottom {
  position: relative;
  z-index: 2;
  width: 1596px;
  max-width: calc(100% - 216px);
  margin: 0 0 0 108px;
  padding-top: 72px;
  display: grid;
  grid-template-columns: 1064px 532px;
  column-gap: 0;
}
.footer-bottom p {
  width: 956px;
  max-width: 100%;
  margin: 0 0 0 108px;
  font-size: 15px;
  line-height: 26.25px;
  font-weight: 400;
  color: #fff;
}
.footer-legal {
  width: 424px;
  max-width: 100%;
  justify-self: end;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 20.39px;
  font-size: 17px;
  line-height: 20.4px;
  font-weight: 400;
}
@keyframes footer-marquee-drift {
  0% { transform: translateX(-4017px); }
  100% { transform: translateX(-1900px); }
}
@keyframes city-marquee-drift {
  0% { transform: translateX(-760px); }
  100% { transform: translateX(-2877px); }
}
@keyframes footerIntro {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes footerWordGlow {
  0%, 100% { filter: brightness(1); }
  37% { filter: brightness(1.08); }
  71% { filter: brightness(.96); }
}
@keyframes footerUnderlineDrift {
  0%, 100% { transform: scaleX(0); opacity: 0; }
  18% { transform: scaleX(.18); opacity: .35; }
  42% { transform: scaleX(.72); opacity: .65; }
  63% { transform: scaleX(.28); opacity: .25; }
  86% { transform: scaleX(.92); opacity: .48; }
}
@media (prefers-reduced-motion: reduce) {
  .city-marquee-line,
  .footer-marquee-line { animation: none; }
  .footer-word,
  .footer-word::after { animation: none; opacity: 1; transform: none; }
  .footer-word::after { display: none; }
}
@media (min-width: 1921px) {
  .presence-section {
    width: 1920px;
    max-width: 1920px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 0 0 100vmax var(--pec-night);
    clip-path: inset(0 -100vmax);
  }
  .footer-top,
  .footer-bottom {
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 1181px) and (max-width: 1919px) {
  .hero-inner {
    width: calc(100% - clamp(144px, 22.5vw, 432px));
    grid-template-columns: minmax(0, 2fr) minmax(340px, .98fr);
  }
  .hero-section h1 {
    max-width: 100%;
    font-size: clamp(54px, 3.75vw, 72px);
    line-height: 1.2;
  }
  .hero-copy-wrap p {
    max-width: 100%;
    font-size: clamp(21px, 1.25vw, 24px);
    line-height: 1.2;
  }
  .studies-section {
    width: calc(100% - clamp(72px, 11.25vw, 216px));
    margin-left: clamp(36px, 9.375vw, 180px);
    padding-left: 0;
  }
  .studies-track {
    --study-card-w: clamp(260px, 17.96875vw, 345px);
    grid-template-columns: repeat(4, var(--study-card-w));
    gap: clamp(24px, 1.875vw, 36px);
  }
  .study-card {
    width: var(--study-card-w);
    height: calc(var(--study-card-w) * 1.25);
  }
  .study-text {
    left: clamp(24px, 1.875vw, 36px);
    right: clamp(40px, 4.48vw, 86px);
    bottom: clamp(24px, 1.82vw, 35px);
  }
  .study-text :is(strong, .semantic-emphasis) {
    font-size: clamp(17px, 1.0417vw, 20px);
    line-height: 1.2;
  }
  .studies-plus {
    right: clamp(24px, 6vw, 92px);
    top: calc(var(--study-card-w) - 77px);
    width: clamp(72px, 4.583vw, 88px);
    height: clamp(72px, 4.583vw, 88px);
    line-height: clamp(72px, 4.583vw, 88px);
  }
  .services-heading-section {
    padding-left: clamp(72px, 11.25vw, 216px);
    padding-right: clamp(72px, 11.25vw, 216px);
  }
  .services-heading-section h2 {
    font-size: clamp(42px, 3.125vw, 60px);
    line-height: 1.2;
  }
  .service-areas-section {
    padding-left: clamp(72px, 11.25vw, 216px);
    padding-right: clamp(72px, 11.25vw, 216px);
  }
  .service-areas-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: clamp(36px, 3.75vw, 72px);
  }
  .service-area-card,
  .service-area-card p,
  .service-area-image {
    width: 100%;
  }
  .service-area-image {
    height: auto;
    aspect-ratio: 708 / 397.594;
  }
  .service-area-card h3 {
    max-width: 100%;
    font-size: clamp(38px, 2.604vw, 50px);
    line-height: 1.2;
  }
  .presence-section {
    grid-template-columns: 50% 50%;
    min-height: clamp(650px, 41.927vw, 805px);
  }
  .presence-copy {
    width: 100%;
    min-height: clamp(650px, 41.927vw, 805px);
    padding: clamp(72px, 5.625vw, 108px);
  }
  .presence-copy h2,
  .presence-profile-row {
    width: 100%;
  }
  .presence-copy h2 {
    font-size: clamp(38px, 2.604vw, 50px);
    line-height: 1.2;
  }
  .presence-profile-row {
    grid-template-columns: minmax(240px, 336px) minmax(280px, 336px);
    column-gap: clamp(42px, 3.75vw, 72px);
    margin-top: clamp(54px, 3.75vw, 72px);
  }
  .presence-profile,
  .presence-text {
    width: 100%;
  }
  .presence-profile img {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
  }
  .presence-map {
    width: 100%;
    min-height: clamp(650px, 41.927vw, 805px);
    --presence-map-w: clamp(650px, 41.667vw, 800px);
    --presence-map-left: clamp(0px, 4.1667vw, 80px);
  }
  .presence-map > img {
    left: var(--presence-map-left);
    top: 2.5px;
    width: var(--presence-map-w);
    height: var(--presence-map-w);
  }
  .presence-city {
    transform-origin: left top;
    transform: scale(clamp(.82, 0.05208vw, 1));
  }
  .city-bremen { left: calc(var(--presence-map-left) + var(--presence-map-w) * .37875); top: calc(var(--presence-map-w) * .281875); }
  .city-wolfsburg { left: calc(var(--presence-map-left) + var(--presence-map-w) * .4975); top: calc(var(--presence-map-w) * .361875); }
  .city-duesseldorf { left: calc(var(--presence-map-left) + var(--presence-map-w) * .25475); top: calc(var(--presence-map-w) * .471875); }
  .city-stuttgart { left: calc(var(--presence-map-left) + var(--presence-map-w) * .40475); top: calc(var(--presence-map-w) * .701875); }
  .city-muenchen { left: calc(var(--presence-map-left) + var(--presence-map-w) * .562625); top: calc(var(--presence-map-w) * .771875); }
  .city-friedrichshafen { left: calc(var(--presence-map-left) + var(--presence-map-w) * .423375); top: calc(var(--presence-map-w) * .821875); }
  .pec-group-section {
    min-height: clamp(620px, 37.866vw, 727.03px);
    padding-top: clamp(108px, 7.5vw, 144px);
    padding-bottom: clamp(162px, 11.25vw, 216px);
  }
  .pec-group-inner {
    width: clamp(960px, 62.5vw, 1200px);
    height: auto;
    grid-template-columns: minmax(380px, 40.4167%) minmax(0, 56.5833%);
  }
  .pec-group-copy {
    width: 100%;
    padding-left: clamp(24px, 1.875vw, 36px);
  }
  .pec-group-copy h2,
  .pec-group-copy p {
    width: min(449px, 100%);
  }
  .pec-group-visual {
    width: 100%;
    height: clamp(345px, 22.466vw, 431.34px);
  }
  .pec-group-image {
    width: clamp(367px, 23.889vw, 458.66px);
  }
  .pec-group-image-top {
    left: clamp(75px, 7.29vw, 139.98px);
    height: clamp(183px, 11.944vw, 229.33px);
  }
  .pec-group-image-front {
    left: clamp(134px, 11.1125vw, 213.36px);
    top: clamp(69px, 4.549vw, 87.35px);
    height: clamp(275px, 17.916vw, 343.98px);
  }
  .transformation-section {
    min-height: clamp(820px, 51.366vw, 986.24px);
    padding-left: clamp(72px, 11.25vw, 216px);
    padding-right: clamp(72px, 11.25vw, 216px);
  }
  .transformation-card-track {
    width: 100%;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: clamp(24px, 1.875vw, 36px);
  }
  .transformation-card,
  .transformation-card a {
    width: 100%;
    height: auto;
    aspect-ratio: 472 / 314.82;
  }
  .transformation-kicker {
    font-size: clamp(52px, 3.6458vw, 70px);
    line-height: 1.2;
  }
  .transformation-card-text :is(strong, .semantic-emphasis) {
    font-size: clamp(20px, 1.25vw, 24px);
    line-height: 1.2;
  }
  .impact-section {
    min-height: clamp(920px, 56.457vw, 1083.97px);
    padding-left: clamp(72px, 11.25vw, 216px);
    padding-right: clamp(72px, 11.25vw, 216px);
  }
  .impact-section h2 {
    font-size: clamp(40px, 2.604vw, 50px);
    line-height: 1.2;
  }
  .impact-item {
    grid-template-columns: clamp(78px, 5.05vw, 96.98px) minmax(320px, 629px) minmax(360px, 1fr);
  }
  .impact-copy {
    font-size: clamp(21px, 1.25vw, 24px);
    line-height: 1.2;
  }
  .closing-heading-section {
    padding-left: clamp(72px, 11.25vw, 216px);
    padding-right: clamp(72px, 11.25vw, 216px);
  }
  .closing-heading-section h2 {
    font-size: clamp(48px, 3.125vw, 60px);
    line-height: 1.2;
  }
  .footer-top,
  .footer-bottom {
    width: calc(100% - clamp(72px, 11.25vw, 216px));
    max-width: 1596px;
    margin-left: auto;
    margin-right: auto;
  }
  .footer-top {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }
  .footer-bottom {
    grid-template-columns: minmax(0, 2fr) minmax(220px, 1fr);
  }
  .footer-nav,
  .footer-claim {
    width: auto;
    margin-left: clamp(36px, 5.625vw, 108px);
  }
  .footer-bottom p {
    width: auto;
    margin-left: clamp(36px, 5.625vw, 108px);
  }
  .footer-claim p {
    width: min(690px, 100%);
    font-size: clamp(48px, 3.125vw, 60px);
    line-height: 1.2;
  }
}
@media (max-width: 1180px) {
  .header-inner { grid-template-columns: 196px minmax(0, 1fr) auto; gap: 20px; padding: 0 24px; }
  .brand, .brand img { width: 196px; }
  .nav-scroll { justify-self: stretch; overflow-x: auto; scrollbar-width: none; -webkit-overflow-scrolling: touch; }
  .nav-scroll::-webkit-scrollbar { display: none; }
  .primary-nav { justify-content: flex-start; width: max-content; }
  .nav-link { padding: 0 12px; font-size: 13px; }
  .hero-inner {
    width: min(1020px, calc(100% - 72px));
    grid-template-columns: minmax(0, 1.65fr) minmax(300px, .85fr);
    padding-top: 91px;
  }
  .hero-section h1 { font-size: 49px; line-height: 59px; }
  .hero-copy-wrap p { font-size: 21px; line-height: 26px; }
  .studies-section {
    width: calc(100% - 72px);
    padding-left: 0;
    overflow: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .carousel-dots { display: flex; }
  .studies-dots { width: 100%; }
  .studies-section::-webkit-scrollbar { display: none; }
  .studies-track { width: max-content; }
  .studies-plus { right: 30px; }
  .services-heading-section { height: 145px; padding: 72px 36px 36px; }
  .services-heading-section h2 { font-size: 30.72px; line-height: 36.864px; }
  .service-areas-section { min-height: 0; padding: 36px 36px 96px; }
  .service-areas-grid { width: min(696px, 100%); grid-template-columns: 1fr; row-gap: 124px; }
  .service-area-card, .service-area-card p, .service-area-image { width: 100%; }
  .service-area-image { height: auto; aspect-ratio: 696 / 390.84; }
  .service-area-card h3 { margin: 36px 0 31px; font-size: 42px; line-height: 50.4px; max-width: 100%; }
  .presence-section {
    display: block;
    min-height: 0;
    overflow: visible;
  }
  .presence-copy {
    width: 100%;
    min-height: 650.5px;
    padding: 54px 36px;
  }
  .presence-copy h2 {
    width: 696px;
    max-width: 100%;
    font-size: 30.72px;
    line-height: 36.864px;
  }
  .presence-profile-row {
    width: 696px;
    max-width: 100%;
    margin-top: 72px;
    grid-template-columns: 330px 330px;
    column-gap: 36px;
  }
  .presence-profile,
  .presence-text {
    width: 330px;
  }
  .presence-profile img {
    width: 330px;
    height: 330px;
  }
  .presence-map {
    width: 100%;
    min-height: 768px;
  }
  .presence-map > img {
    left: 0;
    top: 0;
    width: 768px;
    height: 768px;
  }
  .city-bremen { left: 289px; top: 213px; }
  .city-wolfsburg { left: 380px; top: 275px; }
  .city-duesseldorf { left: 193px; top: 359px; }
  .city-stuttgart { left: 309px; top: 536px; }
  .city-muenchen { left: 430px; top: 590px; }
  .city-friedrichshafen { left: 322px; top: 628px; }
  .pec-group-section {
    min-height: 861.22px;
    padding: 72px 36px;
  }
  .pec-group-inner {
    width: 696px;
    max-width: 100%;
    height: 717.22px;
    display: block;
    position: relative;
  }
  .pec-group-copy {
    width: 696px;
    max-width: 100%;
    padding-left: 0;
  }
  .pec-group-copy h2,
  .pec-group-copy p {
    width: 696px;
    max-width: 100%;
  }
  .pec-group-copy h2 {
    font-size: 35px;
    line-height: 42px;
  }
  .pec-group-copy p {
    height: auto;
    margin-top: 36px;
  }
  .pec-group-button {
    margin-top: 36px;
  }
  .pec-group-visual {
    position: absolute;
    left: 0;
    top: 314.53px;
    width: 696px;
    max-width: 100%;
    height: 549px;
    margin-top: 0;
  }
  .pec-group-image {
    width: 584.66px;
  }
  .pec-group-image-top {
    left: 8.9px;
    top: 0;
    height: 292.33px;
  }
  .pec-group-image-front {
    left: 102.44px;
    top: 111.36px;
    height: 438.56px;
  }
  .transformation-section {
    min-height: 724.96px;
    padding: 72px 36px;
  }
  .transformation-inner {
    width: 696px;
  }
  .transformation-kicker {
    height: 42px;
    font-size: 35px;
    line-height: 42px;
  }
  .transformation-section h2,
  .transformation-copy {
    width: 696px;
    font-size: 24px;
    line-height: 28.8px;
  }
  .transformation-section h2 { margin-top: 35px; }
  .transformation-card-track {
    width: 732px;
    margin: 72px 0 0 0;
    grid-template-columns: repeat(3, 208px);
    column-gap: 36px;
  }
  .transformation-card,
  .transformation-card a {
    width: 208px;
    height: 138.74px;
  }
  .transformation-cat {
    right: 16px;
    top: 18px;
    font-size: 12px;
    line-height: 18px;
  }
  .transformation-card-text {
    left: 36px;
    right: 36px;
    bottom: auto;
    top: 46px;
  }
  .transformation-card-text small {
    margin-bottom: 9px;
    font-size: 15px;
    line-height: 26.25px;
  }
  .transformation-card-text :is(strong, .semantic-emphasis) {
    font-size: 24px;
    line-height: 28.8px;
  }
  .transformation-button {
    margin-top: 124px;
  }
  .impact-section {
    min-height: 900px;
    padding: 72px 36px;
  }
  .impact-inner,
  .impact-section h2,
  .impact-list {
    width: 696px;
  }
  .impact-section h2 {
    min-height: 0;
    font-size: 35px;
    line-height: 42px;
  }
  .impact-list {
    margin-top: 42px;
  }
  .impact-item {
    grid-template-columns: 64px minmax(0, 260px) minmax(0, 1fr);
    column-gap: 24px;
    min-height: 0;
    padding-top: 36px;
    padding-bottom: 36px;
  }
  .impact-number,
  .impact-item h3 {
    font-size: 30px;
    line-height: 36px;
  }
  .impact-item h3 {
    width: 100%;
  }
  .impact-copy {
    width: 100%;
    font-size: 18px;
    line-height: 25.2px;
  }
  .closing-heading-section {
    height: 217.72px;
    padding: 72px 36px;
  }
  .closing-heading-inner {
    width: 696px;
    max-width: 100%;
    height: 73.72px;
  }
  .closing-heading-section h2 {
    width: 696px;
    max-width: 100%;
    font-size: 30.72px;
    line-height: 36.864px;
  }
  .site-footer {
    min-height: 886.42px;
  }
  .footer-top {
    width: calc(100% - 72px);
    max-width: 696px;
    min-height: 504px;
    margin: 0 auto;
    padding-top: 72px;
    grid-template-columns: 330px 330px;
    column-gap: 36px;
  }
  .footer-nav,
  .footer-claim,
  .footer-claim p {
    width: 330px;
    max-width: 100%;
  }
  .footer-nav,
  .footer-claim,
  .footer-bottom p {
    margin-left: 0;
  }
  .footer-nav a {
    font-size: 30px;
    line-height: 36px;
    font-weight: 500;
  }
  .footer-claim p {
    font-size: 30.72px;
    line-height: 36.864px;
  }
  .footer-cta {
    margin-top: 36px;
  }
  .footer-marquee {
    height: 115px;
  }
  .footer-marquee-line {
    transform: translateX(-4186px);
  }
  .footer-bottom {
    width: calc(100% - 72px);
    max-width: 696px;
    margin: 0 auto;
    padding-top: 36px;
    display: block;
  }
  .footer-bottom p {
    width: 696px;
    max-width: 100%;
  }
  .footer-legal {
    width: 696px;
    max-width: 100%;
    margin-top: 72px;
    align-items: flex-start;
  }
}
@media (max-width: 1024px) {
  :root { --header-h: 116px; --header-h-compact: 96px; }
  .header-inner {
    grid-template-columns: 196px minmax(0, 1fr);
    grid-template-rows: 62px 46px;
    align-content: center;
    gap: 0 20px;
    padding: 4px 24px 6px;
  }
  .brand,
  .brand img { width: 196px; }
  .language-nav {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
  }
  .language-nav a { min-height: 44px; }
  .nav-scroll {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-self: stretch;
    margin: -4px -24px 0;
    padding: 0 24px;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 24px, #000 calc(100% - 24px), transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0, #000 24px, #000 calc(100% - 24px), transparent 100%);
  }
  .primary-nav,
  .nav-link { min-height: 46px; }
  .primary-nav { width: max-content; align-items: center; margin-inline: auto; }
  .nav-link { font-size: 12.5px; padding: 0 10px; }
  .nav-item > .nav-link::after { display: none; }
  .subnav-toggle { display: inline-flex; }
  .site-header .has-menu:hover .dropdown,
  .site-header .has-menu:focus-within .dropdown {
    opacity: 0;
    transform: translateY(8px);
    pointer-events: none;
  }
  .site-header .nav-item.is-open .dropdown {
    opacity: 0;
    transform: translateY(8px);
    pointer-events: none;
  }
  .mobile-subnav-panel {
    position: fixed;
    top: var(--mobile-menu-top, var(--header-h));
    left: 18px;
    right: 18px;
    z-index: 2400;
    max-height: min(56vh, 430px);
    overflow-y: auto;
    padding: 12px 0;
    border: 1px solid rgba(255,255,255,.14);
    background: rgba(4, 35, 44, .995);
    box-shadow: 0 22px 44px rgba(0,0,0,.42);
  }
  .mobile-subnav-panel[hidden] { display: none; }
  .mobile-subnav-panel a {
    display: block;
    padding: 10px 14px;
    color: rgba(255,255,255,.92);
    text-decoration: none;
    font-size: 13px;
    line-height: 1.28;
    font-weight: 500;
  }
  .mobile-subnav-panel a:hover { color: var(--pec-green); }
  .mobile-subnav-panel a.is-current,
  .mobile-subnav-panel a[aria-current="page"] {
    padding-left: 11px;
    color: #fff;
    font-weight: 700;
    background: rgba(0,161,154,.22);
    border-left: 3px solid var(--pec-green);
  }
  .dropdown a { padding: 10px 14px; font-size: 13px; line-height: 1.28; }
}
@media (max-width: 760px) {
  :root { --header-h: 92px; --header-h-compact: 76px; }
  .header-inner { grid-template-columns: 168px minmax(0, 1fr); grid-template-rows: 46px 46px; gap: 0 16px; padding: 0 18px; }
  .brand, .brand img { width: 168px; }
  .language-nav { grid-column: 2; grid-row: 1; justify-self: end; }
  .language-nav a { min-height: 46px; }
  .nav-scroll {
    grid-column: 1 / -1;
    grid-row: 2;
    margin: -3px -18px 0;
    padding: 0 18px;
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 18px, #000 calc(100% - 18px), transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0, #000 18px, #000 calc(100% - 18px), transparent 100%);
  }
  .primary-nav, .nav-link { min-height: 46px; }
  .nav-link { font-size: 12px; padding: 0 9px; }
  .subnav-toggle { width: 32px; height: 32px; margin-right: 5px; }
  .mobile-subnav-panel { left: 14px; right: 14px; }
  .site-header .nav-item.is-open .dropdown { left: 14px; right: 14px; }
  .hero-section { min-height: 648px; }
  .hero-bg { background-position: 48% top; opacity: .94; }
  .pec-home-performance .hero-bg img { object-position: 48% top; }
  .hero-inner {
    width: calc(100% - 72px);
    min-height: 648px;
    padding-top: 36px;
    grid-template-columns: 1fr;
    row-gap: 18px;
    align-content: start;
  }
  .hero-headline-wrap,
  .hero-copy-wrap { padding-left: 0; padding-top: 0; }
  .hero-section h1 {
    max-width: 100%;
    font-size: 34px;
    line-height: 1.16;
    letter-spacing: 0;
  }
  .hero-copy-wrap p {
    max-width: 100%;
    font-size: 19px;
    line-height: 1.25;
  }
  .hero-cta {
    min-width: 0;
    width: 100%;
    max-width: 315px;
    margin-top: 30px;
    padding-left: 24px;
    padding-right: 24px;
    gap: 10px;
  }
  .studies-section { width: calc(100% - 40px); margin-top: -58px; min-height: 350px; }
  .studies-track { grid-template-columns: repeat(4, 245px); gap: 24px; }
  .study-card { width: 245px; height: 306px; }
  .study-text { left: 22px; right: 32px; bottom: 20px; }
  .study-text :is(strong, .semantic-emphasis) { font-size: 16px; line-height: 19.2px; }
  .studies-plus { top: 252px; right: 8px; width: 68px; height: 68px; line-height: 68px; font-size: 25px; }
  .services-heading-section { height: 180px; padding: 72px 36px 36px; }
  .services-heading-inner { width: 318px; max-width: 100%; height: 72px; }
  .services-heading-section h2 { font-size: 30px; line-height: 36px; max-width: 318px; }
  .service-areas-section { padding: 36px 36px 90px; }
  .service-areas-grid { width: 318px; max-width: 100%; row-gap: 96px; }
  .service-area-image { aspect-ratio: 318 / 178.03; }
  .service-area-card h3 { margin: 34px 0 30px; font-size: 30px; line-height: 36px; }
  .service-area-card p { font-size: 18px; line-height: 31.5px; }
  .service-area-card p + p { margin-top: 36px; }
  .service-area-button { width: 100%; min-height: 52px; padding-left: 24px; padding-right: 24px; gap: 16px; }
  .presence-copy {
    min-height: 927.78px;
    padding: 54px 36px;
  }
  .presence-copy h2 {
    width: 318px;
    font-size: 25px;
    line-height: 30px;
  }
  .presence-profile-row {
    width: 318px;
    margin-top: 72px;
    grid-template-columns: 1fr;
    row-gap: 36px;
    text-align: center;
  }
  .presence-profile,
  .presence-text {
    width: 318px;
  }
  .presence-profile img {
    width: 159px;
    height: 159px;
    margin: 0 auto;
  }
  .presence-profile figcaption {
    margin-top: 17px;
  }
  .presence-text {
    text-align: left;
  }
  .presence-button {
    width: 100%;
    min-width: 0;
    max-width: 305px;
    margin: 36px auto 0;
    padding-left: 24px;
    padding-right: 24px;
    gap: 10px;
  }
  .presence-map {
    min-height: 390px;
    overflow: hidden;
  }
  .presence-map > img {
    width: 390px;
    height: 390px;
  }
  .presence-city {
    min-height: 30px;
    padding: 6px 9px 6px 7px;
    gap: 6px;
    font-size: 13px;
    line-height: 13px;
  }
  .presence-city span {
    width: 16px;
    height: 16px;
  }
  .presence-city span::before,
  .presence-city span::after { width: 7px; }
  .city-bremen { left: 131.75px; top: 102px; }
  .city-wolfsburg { left: 175.24px; top: 133.2px; }
  .city-duesseldorf { left: 79.84px; top: 176.09px; }
  .city-stuttgart { left: 140.8px; top: 265.8px; }
  .city-muenchen { left: 201.85px; top: 293.09px; }
  .city-friedrichshafen { left: 140.28px; top: 312.59px; }
  .pec-group-section {
    min-height: 824.97px;
    padding: 72px 36px;
  }
  .pec-group-inner {
    width: 318px;
    max-width: 100%;
    height: 680.97px;
  }
  .pec-group-copy,
  .pec-group-copy h2,
  .pec-group-copy p {
    width: 318px;
    max-width: 100%;
  }
  .pec-group-copy h2 {
    font-size: 35px;
    line-height: 42px;
  }
  .pec-group-visual {
    position: absolute;
    left: 0;
    top: 497.53px;
    width: 318px;
    height: 253.25px;
    margin-top: 0;
  }
  .pec-group-image {
    width: 267.13px;
  }
  .pec-group-image-top {
    left: 4.07px;
    top: 0;
    height: 133.56px;
  }
  .pec-group-image-front {
    left: 46.81px;
    top: 50.88px;
    height: 200.38px;
  }
  .transformation-section {
    min-height: 922.54px;
    padding: 72px 36px;
  }
  .transformation-inner {
    width: 318px;
  }
  .transformation-kicker {
    width: 318px;
    height: auto;
    min-height: 82px;
    font-size: 35px;
    line-height: 42px;
    white-space: normal;
  }
  .transformation-kicker span { display: inline-block; }
  .transformation-section h2,
  .transformation-copy {
    width: 318px;
    font-size: 24px;
    line-height: 28.8px;
  }
  .transformation-section h2 {
    margin-top: 36px;
  }
  .transformation-card-track {
    width: 1026px;
    margin: 72px 0 0 0;
    display: grid;
    grid-template-columns: repeat(3, 318px);
    column-gap: 36px;
    overflow: visible;
  }
  .transformation-card,
  .transformation-card a {
    width: 318px;
    height: 212.11px;
  }
  .transformation-cat {
    right: 36px;
    top: 36px;
    font-size: 12px;
    line-height: 18px;
  }
  .transformation-card-text {
    left: 36px;
    right: 36px;
    bottom: 34px;
    top: auto;
  }
  .transformation-card-text small {
    margin-bottom: 0;
    font-size: 15px;
    line-height: 26.25px;
  }
  .transformation-card-text :is(strong, .semantic-emphasis) {
    font-size: 17px;
    line-height: 20px;
  }
  .transformation-button {
    width: 305.29px;
    min-width: 0;
    margin-top: 91px;
    padding-left: 24px;
    padding-right: 24px;
  }
  .impact-section {
    min-height: 2051.13px;
    padding: 72px 36px;
  }
  .impact-inner,
  .impact-section h2,
  .impact-list {
    width: 318px;
  }
  .impact-section h2 {
    min-height: 0;
    font-size: 30px;
    line-height: 36px;
  }
  .impact-list {
    margin-top: 36px;
  }
  .impact-item {
    display: block;
    min-height: 0;
    padding-top: 42px;
    padding-bottom: 72px;
  }
  .impact-number {
    font-size: 35px;
    line-height: 42px;
  }
  .impact-item h3 {
    width: 318px;
    margin-top: 36px;
    font-size: 35px;
    line-height: 42px;
  }
  .impact-copy {
    width: 318px;
    margin-top: 36px;
    font-size: 24px;
    line-height: 28.8px;
  }
  .closing-heading-section {
    height: 252px;
    padding: 72px 36px;
  }
  .closing-heading-inner {
    width: 318px;
    height: 108px;
  }
  .closing-heading-section h2 {
    width: 318px;
    font-size: 30px;
    line-height: 36px;
  }
  .site-footer {
    min-height: 984.7px;
  }
  .footer-top {
    width: 318px;
    max-width: calc(100% - 72px);
    min-height: 612px;
    padding-top: 72px;
    display: flex;
    flex-direction: column;
  }
  .footer-claim {
    order: 1;
    width: 318px;
    max-width: 100%;
  }
  .footer-nav {
    order: 2;
    width: 318px;
    max-width: 100%;
    margin-top: 36px;
  }
  .footer-nav a {
    min-height: 36px;
    margin-bottom: 18px;
    font-size: 30px;
    line-height: 36px;
    font-weight: 500;
  }
  .footer-claim p {
    width: 318px;
    font-size: 30px;
    line-height: 36px;
  }
  .footer-cta {
    width: 320px;
    min-width: 0;
    margin-top: 37px;
    padding-left: 24px;
    padding-right: 24px;
  }
  .footer-marquee {
    height: 115px;
  }
  .footer-marquee-line {
    font-size: 35px;
    line-height: 42px;
    transform: translateX(-4192px);
  }
  .footer-bottom {
    width: 318px;
    max-width: calc(100% - 72px);
    padding-top: 36px;
    display: block;
  }
  .footer-bottom p {
    width: 318px;
    font-size: 15px;
    line-height: 26.25px;
  }
  .footer-legal {
    width: 318px;
    margin-top: 72px;
    align-items: flex-start;
    gap: 20.39px;
  }
}
@media (min-width: 430px) and (max-width: 760px) {
  /* Intermediate mobile/tablet: keep the 36px PEC gutters instead of the narrow 318px phone column. */
  .services-heading-inner,
  .service-areas-grid,
  .presence-copy h2,
  .presence-profile-row,
  .pec-group-inner,
  .pec-group-copy,
  .pec-group-copy h2,
  .pec-group-copy p {
    width: calc(100vw - 72px);
    max-width: 696px;
  }
  .services-heading-section h2 {
    max-width: calc(100vw - 72px);
  }
  .service-area-image {
    aspect-ratio: 696 / 390.84;
  }
  .service-area-card h3 {
    font-size: clamp(32px, 5.526vw, 42px);
    line-height: 1.2;
  }
  .presence-copy {
    min-height: 650.5px;
  }
  .presence-copy h2 {
    font-size: 30.72px;
    line-height: 36.864px;
  }
  .presence-profile-row {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    column-gap: 36px;
    row-gap: 0;
    text-align: left;
  }
  .presence-profile,
  .presence-text {
    width: 100%;
  }
  .presence-profile img {
    width: min(330px, 100%);
    height: auto;
    aspect-ratio: 1;
  }
  .presence-button {
    width: 100%;
    min-width: 0;
    max-width: 305px;
    margin-left: 0;
    margin-right: 0;
  }
  .presence-map {
    min-height: 100vw;
  }
  .presence-map > img {
    width: 100vw;
    height: 100vw;
  }
  .city-bremen { left: 37.8205vw; top: 27.8646vw; }
  .city-wolfsburg { left: 49.4792vw; top: 35.8073vw; }
  .city-duesseldorf { left: 25.1302vw; top: 46.7448vw; }
  .city-stuttgart { left: 40.2344vw; top: 69.7917vw; }
  .city-muenchen { left: 55.9896vw; top: 76.8229vw; }
  .city-friedrichshafen { left: 41.9271vw; top: 81.7708vw; }
  .pec-group-section {
    min-height: clamp(825px, 115vw, 861.22px);
    padding: 72px 36px;
  }
  .pec-group-inner {
    height: clamp(681px, 94.4vw, 717.22px);
    position: relative;
  }
  .pec-group-copy {
    padding-left: 0;
  }
  .pec-group-copy h2 {
    font-size: 35px;
    line-height: 42px;
  }
  .pec-group-visual {
    position: absolute;
    left: 0;
    top: clamp(360px, 56vw, 386.53px);
    width: 100%;
    height: clamp(300px, 72vw, 549px);
    margin-top: 0;
  }
  .pec-group-image {
    width: min(84%, 584.66px);
  }
  .pec-group-image-top {
    left: 1.28%;
    top: 0;
    height: auto;
    aspect-ratio: 2 / 1;
  }
  .pec-group-image-front {
    left: 14.72%;
    top: clamp(72px, 14.5vw, 111.36px);
    height: auto;
    aspect-ratio: 1777 / 1333;
  }
  .transformation-inner,
  .transformation-kicker,
  .transformation-section h2,
  .transformation-copy,
  .impact-inner,
  .impact-section h2,
  .impact-list,
  .closing-heading-inner,
  .closing-heading-section h2,
  .footer-top,
  .footer-bottom,
  .footer-nav,
  .footer-claim,
  .footer-claim p,
  .footer-bottom p,
  .footer-legal {
    width: calc(100vw - 72px);
    max-width: 696px;
  }
  .transformation-kicker {
    min-height: 42px;
    height: auto;
    white-space: nowrap;
  }
  .transformation-section h2,
  .transformation-copy {
    font-size: 24px;
    line-height: 28.8px;
  }
  .transformation-card-track {
    --trans-card-w: calc(100vw - 72px);
    width: calc((var(--trans-card-w) * 3) + 72px);
    grid-template-columns: repeat(3, var(--trans-card-w));
    column-gap: 36px;
  }
  .transformation-card,
  .transformation-card a {
    width: var(--trans-card-w);
    height: auto;
    aspect-ratio: 318 / 212.11;
  }
  .transformation-card-text :is(strong, .semantic-emphasis) {
    font-size: clamp(17px, 3.3vw, 24px);
    line-height: 1.2;
  }
  .impact-section {
    min-height: auto;
  }
  .impact-section h2 {
    font-size: clamp(30px, 5.526vw, 35px);
    line-height: 1.2;
  }
  .impact-item h3,
  .impact-copy {
    width: calc(100vw - 72px);
    max-width: 696px;
  }
}
@media (min-width: 700px) and (max-width: 760px) {
  .transformation-section {
    min-height: 724.96px;
  }
  .transformation-card-track {
    --trans-card-w: calc((100vw - 144px) / 3);
    width: calc(100vw - 72px);
    grid-template-columns: repeat(3, var(--trans-card-w));
    column-gap: 36px;
  }
  .transformation-card,
  .transformation-card a {
    width: var(--trans-card-w);
    aspect-ratio: 208 / 138.74;
  }
  .transformation-card-text {
    left: 36px;
    right: 36px;
    bottom: auto;
    top: 46px;
  }
  .transformation-card-text :is(strong, .semantic-emphasis) {
    font-size: 24px;
    line-height: 28.8px;
  }
  .transformation-button {
    margin-top: 124px;
  }
  .closing-heading-section {
    height: 217.72px;
    padding: 72px 36px;
  }
  .closing-heading-inner {
    height: 73.72px;
  }
  .closing-heading-section h2 {
    font-size: 30.72px;
    line-height: 36.864px;
  }
  .site-footer {
    min-height: 886.42px;
  }
  .footer-top {
    width: calc(100vw - 72px);
    max-width: 696px;
    min-height: 504px;
    padding-top: 72px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    column-gap: 36px;
  }
  .footer-nav {
    order: initial;
    width: 100%;
    margin-top: 0;
  }
  .footer-claim {
    order: initial;
    width: 100%;
    justify-self: end;
  }
  .footer-claim p {
    width: 100%;
    font-size: 30.72px;
    line-height: 36.864px;
  }
  .footer-bottom {
    width: calc(100vw - 72px);
    max-width: 696px;
  }
}
@media (max-width: 740px) {
  .hero-section,
  .hero-inner {
    min-height: 570px;
  }
  .hero-inner {
    row-gap: 12px;
  }
  .hero-cta {
    margin-top: 22px;
  }
  .studies-section {
    margin-top: -48px;
  }
}
@media (max-width: 720px) {
  .presence-title-nowrap {
    display: inline-block;
    white-space: nowrap;
  }
  .presence-copy h2 {
    font-size: clamp(22px, 6.15vw, 30.72px);
    line-height: 1.18;
  }
}
@media (max-width: 540px) {
  .pec-group-section {
    min-height: 890px;
  }
  .pec-group-inner {
    height: 746px;
  }
  .pec-group-visual {
    top: 555px;
  }
}

/* Industrie-Unterseite */
.industrie-page .page-stage,
.industrie-stage { background: var(--dark-bg, #04232c); color: #fff; overflow: hidden; }
.industrie-hero { position: relative; min-height: 637px; background: #0c4f48; overflow: hidden; }
.industrie-hero-bg { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0,0,0,.78) 0%, rgba(0,0,0,.44) 44%, rgba(0,0,0,.72) 100%), url('assets/headback.jpg') center 38%/cover no-repeat; opacity: .92; }
.industrie-hero::after { content: ""; position: absolute; inset: auto 0 0; height: 120px; background: linear-gradient(0deg, rgba(0,0,0,.45), transparent); pointer-events: none; }
.industrie-hero-inner { position: relative; z-index: 1; width: min(1488px, calc(100vw - 72px)); margin: 0 auto; min-height: 637px; display: grid; grid-template-columns: 986px 1fr; column-gap: 18px; align-items: center; padding-top: 8px; }
.industrie-kicker { margin: 0 0 44px; color: #00a19a; font-size: 14px; line-height: 17px; font-weight: 800; letter-spacing: .01em; text-transform: uppercase; }
.industrie-hero-left h1 { margin: 0; max-width: 986px; color: #fff; font-size: 70px; line-height: 1.2; font-weight: 400; letter-spacing: -.035em; }
.industrie-hero-copy { align-self: center; margin-top: -3px; }
.industrie-hero-copy p { margin: 0; max-width: 455px; color: #fff; font-size: 24px; line-height: 1.18; font-weight: 400; letter-spacing: -.03em; }
.industrie-hero-copy :is(strong, .semantic-emphasis) { font-weight: 800; }
.industrie-pill { display: inline-flex; align-items: center; justify-content: center; gap: 14px; height: 52px; padding: 0 39px; border: 1px solid rgba(255,255,255,.95); border-radius: 150px; color: #fff; font-size: 15px; line-height: 1; font-weight: 400; white-space: nowrap; transition: background .2s, border-color .2s; }
.industrie-pill:hover { background: rgba(255,255,255,.08); }
.industrie-hero-copy .industrie-pill { margin-top: 39px; }
.industrie-service-cards { background: #04232c; padding: 144px 0; min-height: 1041px; }
.industrie-cards-grid { width: min(1488px, calc(100vw - 72px)); margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px; }
.industrie-cards-grid + .industrie-cards-grid,
.industrie-cards-controls + .industrie-cards-grid { margin-top: 72px; }
.industrie-cards-grid-two { grid-template-columns: repeat(3, 1fr); }
.industrie-service-card { position: relative; }
.industrie-service-card h2 { margin: 0 0 36px; min-height: 70px; color: #fff; font-size: 29px; line-height: 1.18; font-weight: 400; letter-spacing: -.025em; }
.industrie-service-card img { width: 100%; height: 235px; object-fit: cover; }
.industrie-service-card::after { content: "+"; position: absolute; right: 36px; bottom: 35px; width: 124px; height: 124px; border-radius: 50%; display: grid; place-items: center; color: #fff; background: radial-gradient(circle at 35% 35%, rgba(255,255,255,.25), rgba(35,45,91,.64) 48%, rgba(33,39,70,.9)); font-size: 28px; font-weight: 300; box-shadow: 0 24px 80px rgba(0,0,0,.35); }
.industrie-arguments { background: #00a19a; min-height: 778px; padding: 144px 0; }
.industrie-argument-grid { width: 100%; display: grid; grid-template-columns: repeat(3, 1fr); }
.industrie-argument-grid article { width: 496px; max-width: 100%; padding-left: 144px; padding-right: 0; color: #fff; }
.industrie-number { margin: 0 0 48px; font-size: 29px; line-height: 35px; font-weight: 500; }
.industrie-argument-grid h2 { margin: 0 0 2px; max-width: 352px; color: #fff; font-size: 29px; line-height: 1.18; font-weight: 500; letter-spacing: -.02em; }
.industrie-argument-grid p:not(.industrie-number) { margin: 0; max-width: 352px; color: #fff; font-size: 18px; line-height: 1.62; font-weight: 400; }
.industrie-why { background: #04232c; padding: 144px 0 132px; }
.industrie-why-grid { width: min(1488px, calc(100vw - 72px)); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 72px; }
.industrie-why-headline { margin: 0; color: #fff; font-size: 50px; line-height: 1.2; font-weight: 400; letter-spacing: -.03em; }
.industrie-rule { height: 1px; background: rgba(255,255,255,.28); margin: 46px 0 40px; }
.industrie-why article { margin: 0 0 36px; }
.industrie-why h3 { margin: 0 0 16px; color: #fff; font-size: 29px; line-height: 1.22; font-weight: 400; letter-spacing: -.025em; }
.industrie-why p { margin: 0; color: #fff; font-size: 18px; line-height: 1.76; font-weight: 400; }
.industrie-why-right article { margin-bottom: 46px; }
.industrie-why-right .industrie-cta { margin-top: -10px; }
.industrie-claim-band { background: #000; min-height: 264px; display: flex; align-items: center; }
.industrie-claim-band .claim-heading { width: min(1488px, calc(100vw - 72px)); margin: 0 auto; color: #fff; font-size: 50px; line-height: 1.2; font-weight: 400; letter-spacing: -.03em; overflow-wrap: break-word; }
@media (min-width: 1921px) { .industrie-hero-inner, .industrie-cards-grid, .industrie-why-grid, .industrie-claim-band .claim-heading { max-width: 1488px; } }
@media (max-width: 1399px) {
  .industrie-hero-inner { grid-template-columns: minmax(0, 1.3fr) minmax(360px, .7fr); }
  .industrie-hero-left h1 { font-size: clamp(54px, 5vw, 70px); }
  .industrie-hero-copy p { font-size: 22px; }
  .industrie-argument-grid article { width: auto; padding-left: 48px; padding-right: 48px; }
}
@media (max-width: 980px) {
  .industrie-hero-inner { grid-template-columns: 1fr; align-content: center; gap: 44px; padding: 72px 0; }
  .industrie-hero-left h1 { font-size: clamp(46px, 8vw, 66px); }
  .industrie-hero-copy p { max-width: 720px; }
  .industrie-service-cards { padding: 96px 0; }
  .industrie-cards-grid, .industrie-cards-grid-two { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .industrie-arguments { padding: 96px 0; }
  .industrie-argument-grid { width: min(100vw - 72px, 1488px); margin: 0 auto; grid-template-columns: 1fr; gap: 70px; }
  .industrie-argument-grid article { width: 100%; padding: 0; }
  .industrie-argument-grid h2, .industrie-argument-grid p:not(.industrie-number) { max-width: 680px; }
  .industrie-why-grid { grid-template-columns: 1fr; gap: 38px; }
}
@media (max-width: 540px) {
  .industrie-hero, .industrie-hero-inner { min-height: 650px; }
  .industrie-hero-inner { width: calc(100vw - 48px); padding: 62px 0; gap: 30px; }
  .industrie-kicker { margin-bottom: 28px; font-size: 13px; }
  .industrie-hero-left h1 { font-size: 44px; line-height: 1.18; }
  .industrie-hero-copy p { font-size: 21px; line-height: 1.25; }
  .industrie-hero-copy .industrie-pill { margin-top: 28px; }
  .industrie-service-cards { padding: 72px 0; min-height: 0; }
  .industrie-cards-grid, .industrie-cards-grid-two { width: calc(100vw - 48px); display: flex; overflow-x: auto; scroll-snap-type: x mandatory; gap: 24px; padding-bottom: 8px; }
  .industrie-cards-grid + .industrie-cards-grid { margin-top: 56px; }
  .industrie-service-card { flex: 0 0 82vw; scroll-snap-align: start; }
  .industrie-service-card h2 { font-size: 27px; }
  .industrie-service-card img { height: 205px; }
  .industrie-service-card::after { width: 94px; height: 94px; right: 24px; bottom: 27px; }
  .industrie-arguments { padding: 76px 0; }
  .industrie-argument-grid { width: calc(100vw - 48px); gap: 54px; }
  .industrie-number { margin-bottom: 26px; font-size: 26px; }
  .industrie-argument-grid h2 { font-size: 28px; }
  .industrie-argument-grid p:not(.industrie-number) { font-size: 17px; line-height: 1.62; }
  .industrie-why { padding: 76px 0 82px; }
  .industrie-why-grid { width: calc(100vw - 48px); }
  .industrie-why-headline, .industrie-claim-band .claim-heading { font-size: 39px; }
  .industrie-why h3 { font-size: 27px; }
  .industrie-why p { font-size: 17px; line-height: 1.7; }
  .industrie-claim-band { min-height: 240px; }
}
/* Industrie corrections 10 */
.industrie-kicker { font-size: 14px; font-weight: 600; }
.industrie-hero { min-height: auto; }
.industrie-hero-inner { min-height: auto; padding-top: 144px; padding-bottom: 144px; }
.industrie-appointment-cta { display: inline-flex; align-items: center; gap: 21px; color: #fff; font-size: 16px; line-height: 1; font-weight: 500; letter-spacing: -.01em; }
.industrie-appointment-cta :is(strong, .semantic-emphasis) { width: 54px; height: 54px; border: 1px solid rgba(255,255,255,.85); border-radius: 50%; display: grid; place-items: center; font-size: 25px; font-weight: 300; line-height: 1; transition: background .2s, border-color .2s; }
.industrie-appointment-cta:hover :is(strong, .semantic-emphasis) { background: rgba(255,255,255,.1); border-color: #fff; }
.industrie-hero-copy .industrie-appointment-cta { margin-top: 39px; }
.industrie-service-card::after { display: none; }
.industrie-argument-grid article { min-height: 490px; padding-top: 144px; padding-bottom: 144px; }
.industrie-argument-grid article:nth-child(1) { background: #00A19A; }
.industrie-argument-grid article:nth-child(2) { background: #009992; }
.industrie-argument-grid article:nth-child(3) { background: #00918A; }
.industrie-arguments { background: #00A19A; padding: 0; min-height: 0; }
.industrie-why { position: relative; overflow: hidden; background: #04232c; }
.industrie-why-canvas { opacity: .38; }
.industrie-why-grid { position: relative; z-index: 1; }
.industrie-claim-band { justify-content: center; text-align: center; }
.industrie-claim-band .claim-heading { max-width: 1120px; text-align: center; }
@media (max-width: 1180px) {
  .industrie-service-card h2 { font-size: 24px; line-height: 1.18; min-height: 58px; }
}
@media (max-width: 980px) {
  .industrie-hero-inner { padding-top: 112px; padding-bottom: 112px; }
  .industrie-argument-grid article { min-height: 0; padding: 86px 48px; }
}
@media (max-width: 540px) {
  .industrie-hero, .industrie-hero-inner { min-height: auto; }
  .industrie-hero-inner { padding-top: 88px; padding-bottom: 88px; }
  .industrie-service-card h2 { font-size: 23px; line-height: 1.16; min-height: 54px; }
  .industrie-argument-grid { width: 100%; gap: 0; }
  .industrie-argument-grid article { padding: 76px 24px; }
  .industrie-appointment-cta { gap: 16px; font-size: 15px; }
  .industrie-appointment-cta :is(strong, .semantic-emphasis) { width: 48px; height: 48px; font-size: 23px; }
}
/* Industrie corrections 11 */
.industrie-stage { padding-top: var(--header-h); }
.industrie-hero-inner { padding-top: 144px; padding-bottom: 144px; }
.industrie-hero-copy .hero-cta { margin-top: 36px; }
.industrie-why-right .hero-cta.industrie-cta { margin-top: -10px; }
.industrie-argument-grid article { width: 100%; max-width: none; padding: 144px 72px 144px 144px; }
.industrie-argument-grid h2,
.industrie-argument-grid p:not(.industrie-number) { max-width: 352px; }
@media (max-width: 1399px) {
  .industrie-argument-grid article { width: 100%; padding: 112px 48px; }
}
@media (max-width: 980px) {
  .industrie-hero-inner { padding-top: 144px; padding-bottom: 144px; }
  .industrie-argument-grid { width: 100%; }
  .industrie-argument-grid article { padding: 86px max(36px, calc((100vw - 680px) / 2)); }
  .industrie-argument-grid h2,
  .industrie-argument-grid p:not(.industrie-number) { max-width: 680px; }
}
@media (max-width: 540px) {
  .industrie-hero-inner { padding-top: 112px; padding-bottom: 88px; }
  .industrie-argument-grid { width: 100%; gap: 0; }
  .industrie-argument-grid article { padding: 76px 24px; }
}
/* Gesundheitswesen-Unterseite corrections 12 */
.gesundheitswesen-page .gesundheitswesen-service-cards { min-height: 1450px; }
.gesundheitswesen-cards-grid-single { grid-template-columns: minmax(0, 475px); justify-content: center; }
.gesundheitswesen-page .industrie-kicker { font-size: 14px; font-weight: 600; }
.gesundheitswesen-page .industrie-claim-band .claim-heading { max-width: 1120px; text-align: center; }
@media (max-width: 1399px) {
  .gesundheitswesen-page .gesundheitswesen-service-cards { min-height: 0; }
  .gesundheitswesen-cards-grid-single { width: min(475px, calc(100vw - 72px)); grid-template-columns: 1fr; }
}
@media (max-width: 980px) {
  .gesundheitswesen-cards-grid-single { width: calc(100vw - 48px); }
}
@media (max-width: 540px) {
  .gesundheitswesen-cards-grid-single { width: calc(100vw - 40px); }
}
/* Über-uns-Unterseite corrections 13 */
.about-page { background: #04232c; color: #fff; }
.about-stage { padding-top: var(--header-h); overflow: hidden; background: #04232c; }
.about-hero { position: relative; min-height: 1380px; padding: 112px 0 0; background: radial-gradient(circle at 49% 16%, rgba(0,161,154,.27), transparent 32%), linear-gradient(180deg,#04232c 0%, #043841 66%, #04232c 100%); }
.about-hero-inner { width: min(1180px, calc(100vw - 80px)); margin: 0 auto; }
.about-kicker { margin: 0 0 48px; font-size: 30px; line-height: 1.1; font-weight: 400; letter-spacing: -.015em; text-transform: uppercase; color: rgba(255,255,255,.95); }
.about-hero h1 { margin: 0; max-width: 970px; font-size: clamp(58px, 5.05vw, 92px); line-height: 1.18; letter-spacing: -.055em; font-weight: 300; }
.about-hero-inner > p:not(.about-kicker) { margin: 44px 0 0; max-width: 1120px; font-size: 22px; line-height: 1.27; color: rgba(255,255,255,.92); }
.about-scroll-cue { position: absolute; left: 72px; top: 420px; color: #fff; text-decoration: none; font-size: 78px; line-height: 1; font-weight: 200; z-index: 2; }
.about-hero-collage { position: absolute; left: 0; right: 0; bottom: 130px; min-height: 620px; }
.about-hero-main-img { position: absolute; left: 50%; top: 0; width: 530px; height: 660px; transform: translateX(-50%); object-fit: cover; z-index: 2; }
.about-hero-ghost { position: absolute; top: 190px; width: 560px; height: 360px; object-fit: cover; opacity: .12; filter: saturate(.8); }
.about-hero-ghost-left { left: 110px; }
.about-hero-ghost-right { right: 170px; }
.about-origin { position: relative; padding: 0 0 120px; background: #04232c; }
.about-origin-grid { width: min(1540px, calc(100vw - 140px)); margin: 0 auto; display: grid; grid-template-columns: 560px 1fr; gap: 110px; align-items: center; }
.about-origin-copy h2 { margin: 0 0 58px; max-width: 460px; font-size: 38px; line-height: 1.23; letter-spacing: -.035em; font-weight: 300; }
.about-origin-copy p { max-width: 470px; margin: 0; font-size: 16px; line-height: 1.75; font-weight: 700; color: rgba(255,255,255,.92); }
.about-map-wrap { display: flex; justify-content: center; }
.about-map-wrap img { width: min(560px, 100%); height: auto; }
.about-city-marquee { margin-top: 140px; white-space: nowrap; overflow: visible; color: #fff; font-size: 42px; line-height: 1; letter-spacing: -.035em; text-transform: uppercase; }
.about-city-marquee span { display: inline-block; animation: cityMarquee 32s linear infinite; }
@keyframes cityMarquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.about-group-dark { position: relative; padding: 210px 0 0; background: #04232c; }
.about-group-grid { width: min(1160px, calc(100vw - 120px)); margin: 0 auto; display: grid; grid-template-columns: 1.05fr .75fr; gap: 110px; align-items: start; }
.about-group-grid img { width: 100%; height: 560px; object-fit: cover; }
.about-group-grid h2 { margin: 42px 0 36px; font-size: 38px; line-height: 1.14; font-weight: 300; letter-spacing: -.035em; }
.about-group-grid p { margin: 0; max-width: 420px; font-size: 16px; line-height: 1.8; font-weight: 700; color: rgba(255,255,255,.92); }
.about-specialization { position: relative; margin-top: -20px; padding: 190px 0 170px; background: #fff; color: #00a19a; border-top-left-radius: 56% 120px; border-top-right-radius: 56% 120px; }
.about-special-grid { width: min(1060px, calc(100vw - 120px)); margin: 0 auto; display: grid; grid-template-columns: 470px 1fr; gap: 0; align-items: start; }
.about-special-card { position: relative; z-index: 2; margin-top: 160px; padding: 88px 72px 54px; min-height: 560px; background: #fff; box-shadow: 0 30px 80px rgba(0,0,0,.16); }
.about-special-card h2 { margin: 0 0 46px; font-size: 38px; line-height: 1.14; font-weight: 300; letter-spacing: -.035em; }
.about-special-card p { margin: 0; font-size: 16px; line-height: 1.8; font-weight: 600; }
.about-special-card img { display: block; width: 155px; margin: 54px 0 0 auto; }
.about-special-image { margin-left: -72px; }
.about-special-image img { width: 660px; height: 360px; object-fit: cover; box-shadow: 0 24px 70px rgba(0,0,0,.12); }
.about-brand-strip { width: min(500px, calc(100vw - 80px)); margin: 70px auto 0; display: flex; gap: 36px; justify-content: center; align-items: center; color: #777; opacity: .72; font-size: 26px; font-weight: 800; }
.about-healthcare-focus { padding: 80px 0 210px; background: #fff; color: #00a19a; }
.about-healthcare-focus > h2, .about-healthcare-focus > p, .about-healthcare-focus > .about-rule, .about-quote-grid { width: min(1120px, calc(100vw - 120px)); margin-left: auto; margin-right: auto; }
.about-healthcare-focus > h2 { margin-top: 0; margin-bottom: 34px; font-size: 38px; line-height: 1.2; font-weight: 300; letter-spacing: -.035em; }
.about-healthcare-focus > p { margin-top: 0; margin-bottom: 82px; font-size: 18px; line-height: 1.7; font-weight: 600; }
.about-rule { height: 1px; background: #00a19a; margin-bottom: 74px; }
.about-quote-grid { display: grid; grid-template-columns: 230px 1fr 1fr; gap: 70px; align-items: start; }
.about-quote-grid img { width: 230px; height: 310px; object-fit: cover; }
.about-quote-grid blockquote { margin: 0; }
.about-quote-grid p { margin: 0 0 70px; font-size: 20px; line-height: 1.55; font-style: italic; font-weight: 500; }
.about-quote-grid cite { font-style: normal; font-size: 16px; line-height: 1.8; }
.about-people-banner { position: relative; min-height: 900px; overflow: hidden; background: #04232c; }
.about-people-banner > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.about-people-overlay { position: absolute; inset: 0; background: rgba(4,35,44,.62); }
.about-people-banner::before { content: ''; position: absolute; z-index: 2; left: -3%; right: -3%; top: -70px; height: 150px; background: #fff; border-bottom-left-radius: 55% 120px; border-bottom-right-radius: 55% 120px; }
.about-people-copy { position: relative; z-index: 3; width: min(430px, calc(100vw - 80px)); margin-left: max(210px, calc((100vw - 1120px)/2)); padding-top: 275px; color: #fff; }
.about-people-copy h2 { margin: 0 0 44px; font-size: 40px; line-height: 1.12; font-weight: 300; letter-spacing: -.035em; }
.about-people-copy p { margin: 0; font-size: 18px; line-height: 1.8; }
@media (max-width: 1100px) {
  .about-hero { min-height: 1120px; }
  .about-hero-inner, .about-origin-grid, .about-group-grid, .about-special-grid, .about-healthcare-focus > h2, .about-healthcare-focus > p, .about-healthcare-focus > .about-rule, .about-quote-grid { width: min(680px, calc(100vw - 72px)); }
  .about-kicker { font-size: 22px; margin-bottom: 34px; }
  .about-hero h1 { font-size: clamp(46px, 9vw, 72px); }
  .about-hero-inner > p:not(.about-kicker) { font-size: 19px; }
  .about-scroll-cue { display: none; }
  .about-hero-main-img { width: 430px; height: 540px; }
  .about-hero-ghost { display: none; }
  .about-origin-grid, .about-group-grid, .about-special-grid, .about-quote-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-origin { padding-top: 0; }
  .about-city-marquee { font-size: 32px; margin-top: 80px; }
  .about-group-dark { padding-top: 120px; }
  .about-specialization { padding-top: 110px; }
  .about-special-card { margin-top: 0; padding: 54px 44px; min-height: 0; }
  .about-special-image { margin-left: 0; }
  .about-special-image img, .about-group-grid img { width: 100%; height: auto; }
  .about-brand-strip { flex-wrap: wrap; font-size: 20px; }
  .about-quote-grid img { width: 230px; height: 300px; }
  .about-people-copy { margin-left: 44px; }
}
@media (max-width: 540px) {
  .about-hero { min-height: 930px; padding-top: 88px; }
  .about-hero-inner { width: calc(100vw - 48px); }
  .about-kicker { font-size: 16px; }
  .about-hero h1 { font-size: 44px; line-height: 1.14; }
  .about-hero-inner > p:not(.about-kicker) { font-size: 16px; line-height: 1.45; }
  .about-hero-collage { bottom: 80px; min-height: 380px; }
  .about-hero-main-img { width: 280px; height: 360px; }
  .about-origin-grid, .about-group-grid, .about-special-grid, .about-healthcare-focus > h2, .about-healthcare-focus > p, .about-healthcare-focus > .about-rule, .about-quote-grid { width: calc(100vw - 48px); }
  .about-origin-copy h2, .about-group-grid h2, .about-special-card h2, .about-healthcare-focus > h2, .about-people-copy h2 { font-size: 31px; }
  .about-origin-copy p, .about-group-grid p, .about-special-card p, .about-healthcare-focus > p, .about-people-copy p { font-size: 15px; }
  .about-city-marquee { font-size: 25px; }
  .about-group-dark { padding-top: 90px; }
  .about-specialization { border-top-left-radius: 50% 60px; border-top-right-radius: 50% 60px; padding: 86px 0 100px; }
  .about-special-card { padding: 42px 32px; }
  .about-healthcare-focus { padding-bottom: 120px; }
  .about-quote-grid { gap: 42px; }
  .about-quote-grid p { font-size: 17px; margin-bottom: 34px; }
  .about-people-banner { min-height: 760px; }
  .about-people-copy { width: calc(100vw - 48px); margin-left: 24px; padding-top: 190px; }
}
/* Über-uns screenshot rebuild corrections 14 */
.about-page-v2 { --about-dark:#042d35; --about-darker:#032830; --about-teal:#00a99f; background:var(--about-dark); color:#fff; }
.about-page-v2 .about-stage { display:none; }
.about-v2-stage { overflow:hidden; background:var(--about-dark); padding-top:var(--header-h); }
.about-v2-hero { position:relative; min-height:1400px; background:radial-gradient(circle at 52% 18%, rgba(0,120,118,.34), transparent 30%), linear-gradient(90deg,#032c33 0%,#043941 55%,#033038 100%); }
.about-v2-copy { width:min(1220px, calc(100vw - 140px)); margin:0 auto; padding-top:112px; }
.about-v2-kicker { margin:0 0 52px; font-size:31px; line-height:1.05; font-weight:400; letter-spacing:-.02em; }
.about-v2-copy h1 { margin:0; max-width:970px; color:#fff; font-size:clamp(70px,5.05vw,84px); line-height:1.18; letter-spacing:-.055em; font-weight:300; }
.about-v2-copy > p:not(.about-v2-kicker) { margin:45px 0 0; max-width:1135px; font-size:20px; line-height:1.28; font-weight:500; color:rgba(255,255,255,.92); }
.about-v2-arrow { position:absolute; top:420px; left:72px; z-index:4; color:#fff; text-decoration:none; font-size:84px; line-height:1; font-weight:100; }
.about-v2-hero-images { position:absolute; left:0; right:0; top:630px; height:690px; }
.about-v2-hero-images .hero-main { position:absolute; z-index:2; top:92px; left:50%; width:530px; height:660px; transform:translateX(-50%); object-fit:cover; object-position:center top; }
.about-v2-hero-images .ghost { position:absolute; top:315px; width:560px; height:365px; object-fit:cover; opacity:.105; filter:saturate(.8) contrast(.9); mix-blend-mode:screen; }
.about-v2-hero-images .ghost-left { left:108px; }
.about-v2-hero-images .ghost-right { right:145px; }
.about-v2-origin { position:relative; background:var(--about-dark); padding:38px 0 195px; }
.about-v2-origin-inner { width:min(1520px, calc(100vw - 190px)); margin:0 auto; display:grid; grid-template-columns:510px 1fr; gap:190px; align-items:center; }
.origin-copy { padding-top:52px; }
.origin-copy h2 { margin:0 0 66px; max-width:455px; color:#fff; font-size:39px; line-height:1.22; letter-spacing:-.035em; font-weight:300; }
.origin-copy p { margin:0 0 18px; max-width:475px; color:#fff; font-size:16px; line-height:1.8; font-weight:700; }
.origin-map { width:560px; max-width:100%; height:auto; display:block; }
.about-v2-marquee { position:absolute; left:0; right:0; bottom:28px; white-space:nowrap; color:#fff; font-size:37px; line-height:1; letter-spacing:-.02em; text-transform:uppercase; opacity:.98; }
.about-v2-marquee span { display:inline-block; animation:aboutV2Marquee 38s linear infinite; }
@keyframes aboutV2Marquee { from { transform:translateX(0); } to { transform:translateX(-100%); } }
.about-v2-group { position:relative; background:var(--about-dark); padding:215px 0 150px; }
.group-inner { width:min(1128px, calc(100vw - 180px)); margin:0 auto; display:grid; grid-template-columns:630px 360px; gap:108px; align-items:start; }
.group-img { width:630px; height:515px; object-fit:cover; object-position:center; }
.group-copy { padding-top:48px; }
.group-copy h2 { margin:0 0 42px; color:#fff; font-size:38px; line-height:1.15; letter-spacing:-.035em; font-weight:300; }
.group-copy p { margin:0; color:#fff; font-size:16px; line-height:1.85; font-weight:700; }
.about-v2-special { position:relative; min-height:1160px; padding-top:0; background:#fff; color:var(--about-teal); }
.about-v2-special .curve { position:absolute; left:-4%; right:-4%; top:-155px; height:265px; border-radius:50% 50% 0 0 / 100% 100% 0 0; pointer-events:none; }
.about-v2-special .curve-a { background:rgba(4,45,53,.48); transform:rotate(-2.4deg); top:-178px; }
.about-v2-special .curve-b { background:#fff; top:-120px; }
.office-wide { position:absolute; top:70px; left:50%; margin-left:140px; width:660px; height:330px; object-fit:cover; box-shadow:0 22px 65px rgba(0,0,0,.13); }
.special-card { position:absolute; top:212px; left:50%; margin-left:-505px; width:470px; min-height:560px; padding:86px 72px 50px; background:#fff; box-shadow:0 38px 95px rgba(0,0,0,.16); }
.special-card h2 { margin:0 0 54px; color:var(--about-teal); font-size:38px; line-height:1.16; letter-spacing:-.035em; font-weight:300; }
.special-card p { margin:0; color:var(--about-teal); font-size:16px; line-height:1.8; font-weight:600; }
.special-card img { display:block; width:156px; margin:72px 0 0 auto; }
.brand-logos { position:absolute; top:560px; left:50%; margin-left:215px; display:flex; align-items:center; gap:33px; color:#777; opacity:.68; filter:grayscale(1); font-size:30px; font-weight:900; letter-spacing:-.04em; }
.brand-logos span:nth-child(2){font-size:46px; font-family:Georgia,serif;}
.brand-logos span:nth-child(3){font-size:24px; letter-spacing:0;}
.brand-logos span:nth-child(4){font-size:46px; font-weight:300;}
.about-v2-focus { background:#fff; color:var(--about-teal); padding:0 0 215px; }
.focus-head, .focus-line, .focus-grid { width:min(1130px, calc(100vw - 180px)); margin-left:auto; margin-right:auto; }
.focus-head h2 { margin:0 0 34px; color:var(--about-teal); font-size:39px; line-height:1.17; letter-spacing:-.035em; font-weight:300; }
.focus-head p { margin:0; color:var(--about-teal); font-size:18px; line-height:1.6; font-weight:500; }
.focus-line { height:1px; background:var(--about-teal); margin-top:80px; margin-bottom:74px; }
.focus-grid { display:grid; grid-template-columns:230px 355px 405px; gap:72px; align-items:start; }
.focus-grid img { width:230px; height:310px; object-fit:cover; object-position:center top; }
.quote p { margin:0; color:var(--about-teal); font-size:20px; line-height:1.58; font-style:italic; font-weight:500; }
.quote .person { margin-top:84px; font-size:16px; line-height:1.8; font-style:normal; }
.about-v2-people { position:relative; min-height:965px; background:var(--about-dark); overflow:hidden; }
.about-v2-people > img { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; object-position:center top; }
.people-tint { position:absolute; inset:0; background:rgba(3,43,50,.68); }
.people-curve { position:absolute; z-index:3; left:-3%; right:-3%; top:-82px; height:185px; background:#fff; border-bottom-left-radius:55% 130px; border-bottom-right-radius:55% 130px; }
.people-copy { position:relative; z-index:4; width:330px; margin-left:calc((100vw - 1130px)/2); padding-top:260px; color:#fff; }
.people-copy h2 { margin:0 0 44px; color:#fff; font-size:39px; line-height:1.13; letter-spacing:-.035em; font-weight:300; }
.people-copy p { margin:0; color:#fff; font-size:18px; line-height:1.78; font-weight:400; }
.about-page-v2 .site-footer { margin-top:0; }
@media (max-width: 1100px) {
  .about-v2-hero { min-height:1125px; }
  .about-v2-copy, .about-v2-origin-inner, .group-inner, .focus-head, .focus-line, .focus-grid { width:min(680px, calc(100vw - 72px)); }
  .about-v2-copy { padding-top:82px; }
  .about-v2-kicker { font-size:22px; margin-bottom:34px; }
  .about-v2-copy h1 { font-size:clamp(48px,9vw,72px); }
  .about-v2-copy > p:not(.about-v2-kicker) { font-size:19px; }
  .about-v2-arrow { display:none; }
  .about-v2-hero-images { top:610px; }
  .about-v2-hero-images .hero-main { width:430px; height:540px; top:60px; }
  .about-v2-hero-images .ghost { display:none; }
  .about-v2-origin { padding-bottom:150px; }
  .about-v2-origin-inner, .group-inner, .focus-grid { grid-template-columns:1fr; gap:52px; }
  .about-v2-origin-inner { text-align:left; }
  .origin-map { width:460px; margin:0 auto; }
  .about-v2-marquee { font-size:30px; bottom:42px; }
  .about-v2-group { padding:130px 0 110px; }
  .group-img { width:100%; height:auto; }
  .group-copy { padding-top:0; }
  .about-v2-special { min-height:auto; padding:110px 0 120px; }
  .about-v2-special .curve { height:170px; top:-86px; }
  .office-wide, .special-card, .brand-logos { position:relative; top:auto; left:auto; margin:0 auto; }
  .office-wide { display:block; width:min(680px, calc(100vw - 72px)); height:auto; }
  .special-card { width:min(520px, calc(100vw - 72px)); margin-top:-30px; padding:58px 48px 46px; }
  .brand-logos { width:min(520px, calc(100vw - 72px)); justify-content:center; flex-wrap:wrap; margin-top:60px; }
  .about-v2-focus { padding:0 0 135px; }
  .focus-line { margin-top:58px; margin-bottom:56px; }
  .focus-grid img { width:230px; height:300px; }
  .people-copy { margin-left:44px; padding-top:210px; }
}
@media (max-width: 540px) {
  .about-v2-stage { padding-top:var(--header-h); }
  .about-v2-hero { min-height:930px; }
  .about-v2-copy, .about-v2-origin-inner, .group-inner, .focus-head, .focus-line, .focus-grid { width:calc(100vw - 48px); }
  .about-v2-copy { padding-top:78px; }
  .about-v2-kicker { font-size:16px; margin-bottom:28px; }
  .about-v2-copy h1 { font-size:44px; line-height:1.13; }
  .about-v2-copy > p:not(.about-v2-kicker) { font-size:16px; line-height:1.46; }
  .about-v2-hero-images { top:560px; }
  .about-v2-hero-images .hero-main { width:280px; height:350px; }
  .origin-copy h2, .group-copy h2, .special-card h2, .focus-head h2, .people-copy h2 { font-size:31px; }
  .origin-copy p, .group-copy p, .special-card p { font-size:15px; }
  .origin-map { width:330px; }
  .about-v2-marquee { font-size:25px; }
  .about-v2-group { padding-top:92px; }
  .special-card { width:calc(100vw - 48px); padding:42px 32px; }
  .brand-logos { font-size:22px; gap:22px; }
  .focus-head p { font-size:16px; line-height:1.55; }
  .focus-grid { gap:42px; }
  .quote p { font-size:17px; line-height:1.65; }
  .quote .person { margin-top:34px; }
  .about-v2-people { min-height:760px; }
  .people-curve { height:120px; top:-58px; }
  .people-copy { width:calc(100vw - 48px); margin-left:24px; padding-top:170px; }
  .people-copy p { font-size:16px; line-height:1.65; }
}
/* Über-uns corrections 15: hero collage, reused map/marquee/icons */
.about-page-v2 .about-v2-hero { min-height: 1415px; }
.about-page-v2 .about-v2-hero-images { display: none; }
.about-v2-hero-collage {
  position: absolute;
  left: 50%;
  top: 665px;
  width: min(1728px, calc(100vw - 100px));
  height: 720px;
  transform: translateX(-50%);
  pointer-events: none;
}
.about-collage-img {
  position: absolute;
  display: block;
  object-fit: cover;
  box-shadow: 0 22px 55px rgba(0,0,0,.22);
}
.about-collage-img.collage-1 {
  z-index: 1;
  left: 0;
  top: 185px;
  width: 230px;
  height: 333px;
  object-position: center center;
}
.about-collage-img.collage-2 {
  z-index: 2;
  left: 230px;
  top: 150px;
  width: 363px;
  height: 400px;
  object-position: center center;
}
.about-collage-img.collage-3 {
  z-index: 5;
  left: 592px;
  top: 20px;
  width: 535px;
  height: 666px;
  object-position: center top;
}
.about-collage-img.collage-4 {
  z-index: 4;
  right: 363px;
  top: 184px;
  width: 270px;
  height: 333px;
  object-position: center center;
}
.about-collage-img.collage-5 {
  z-index: 3;
  right: 0;
  top: 150px;
  width: 400px;
  height: 400px;
  object-position: center center;
}
.about-page-v2 .about-v2-origin-inner { grid-template-columns: 510px 720px; gap: 130px; }
.about-presence-map {
  width: 720px;
  min-height: 610px;
  margin-top: -10px;
}
.about-presence-map > img {
  left: 60px;
  top: 2px;
  width: 600px;
  height: 600px;
}
.about-presence-map .presence-city { font-size: 13px; line-height: 13px; min-height: 30px; padding: 6px 9px 6px 7px; }
.about-presence-map .presence-city span { width: 16px; height: 16px; }
.about-presence-map .city-bremen { left: 287px; top: 169px; }
.about-presence-map .city-wolfsburg { left: 359px; top: 217px; }
.about-presence-map .city-duesseldorf { left: 213px; top: 283px; }
.about-presence-map .city-stuttgart { left: 303px; top: 421px; }
.about-presence-map .city-muenchen { left: 398px; top: 463px; }
.about-presence-map .city-friedrichshafen { left: 314px; top: 493px; }
.about-marquee-window {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 20px;
  height: 114px;
  padding: 36px 0;
}
.about-city-line { font-size: 35px; line-height: 42px; }
.about-page-v2 .about-v2-marquee { display:none; }
.about-page-v2 .brand-logos {
  top: 545px;
  margin-left: 170px;
  width: 360px;
  opacity: 1;
  filter: none;
  gap: 0;
}
.about-page-v2 .brand-logos img {
  display:block;
  width:100%;
  height:auto;
  opacity:.72;
  filter: grayscale(1);
}
@media (max-width: 1100px) {
  .about-page-v2 .about-v2-hero { min-height: 1110px; }
  .about-v2-hero-collage { top: 610px; width: 720px; height: 420px; }
  .about-collage-img.collage-1 { left: 0; top: 122px; width: 96px; height: 140px; }
  .about-collage-img.collage-2 { left: 96px; top: 103px; width: 151px; height: 167px; }
  .about-collage-img.collage-3 { left: 247px; top: 0; width: 223px; height: 278px; }
  .about-collage-img.collage-4 { right: 151px; top: 122px; width: 113px; height: 140px; }
  .about-collage-img.collage-5 { right: 0; top: 103px; width: 167px; height: 167px; }
  .about-page-v2 .about-v2-origin-inner { grid-template-columns: 1fr; gap: 48px; }
  .about-presence-map { width: 620px; min-height: 525px; margin: 0 auto; transform: scale(.86); transform-origin: top center; }
  .about-page-v2 .brand-logos { width: min(360px, calc(100vw - 72px)); }
}
@media (max-width: 540px) {
  .about-page-v2 .about-v2-hero { min-height: 900px; }
  .about-v2-hero-collage { top: 578px; width: 640px; height: 330px; }
  .about-collage-img.collage-1 { left: 0; top: 104px; width: 85px; height: 123px; }
  .about-collage-img.collage-2 { left: 85px; top: 90px; width: 134px; height: 148px; }
  .about-collage-img.collage-3 { left: 219px; top: 0; width: 199px; height: 248px; }
  .about-collage-img.collage-4 { right: 134px; top: 104px; width: 100px; height: 123px; }
  .about-collage-img.collage-5 { right: 0; top: 90px; width: 148px; height: 148px; }
  .about-presence-map { width: 500px; min-height: 430px; transform: scale(.66); margin-left: -78px; }
  .about-marquee-window { bottom: 30px; }
  .about-city-line { font-size: 25px; line-height: 34px; }
}
/* Über-uns corrections 16: requested arrow, parallax layering, larger map, SVG dividers */
.about-page-v2 .about-v2-arrow {
  font-size: 64px;
  width: 1.28571429em;
  text-align: center;
  font-family: inherit;
  line-height: 1;
}
.about-page-v2 .about-v2-arrow:not([class*='icon-'])::before {
  content: "↓";
  display: inline-block;
  font-family: inherit;
  font-weight: 200;
}
.about-page-v2 .about-v2-hero { min-height: 1490px; }
.about-page-v2 .about-v2-hero-collage { height: 800px; }
.about-page-v2 .about-collage-img { will-change: transform; backface-visibility: hidden; }
.about-page-v2 .about-collage-img.collage-3 { z-index: 5; top: 38px; }
.about-page-v2 .about-collage-img.collage-4 {
  z-index: 7;
  right: 325px;
  top: 78px;
  width: 300px;
  height: 370px;
  box-shadow: 0 28px 70px rgba(0,0,0,.28);
}
.about-page-v2 .about-v2-origin { padding-top: 0; }
.about-page-v2 .about-v2-origin-inner {
  grid-template-columns: 500px 860px;
  gap: 70px;
  align-items: start;
}
.about-page-v2 .about-presence-map {
  width: 860px;
  min-height: 760px;
  margin-top: -135px;
}
.about-page-v2 .about-presence-map > img {
  left: 50px;
  top: 0;
  width: 760px;
  height: 760px;
}
.about-page-v2 .about-presence-map .presence-city { font-size: 15px; line-height: 15px; min-height: 34px; padding: 8px 10px 8px 8px; }
.about-page-v2 .about-presence-map .presence-city span { width: 18px; height: 18px; }
.about-page-v2 .about-presence-map .city-bremen { left: 364px; top: 214px; }
.about-page-v2 .about-presence-map .city-wolfsburg { left: 455px; top: 275px; }
.about-page-v2 .about-presence-map .city-duesseldorf { left: 270px; top: 358px; }
.about-page-v2 .about-presence-map .city-stuttgart { left: 384px; top: 533px; }
.about-page-v2 .about-presence-map .city-muenchen { left: 504px; top: 586px; }
.about-page-v2 .about-presence-map .city-friedrichshafen { left: 397px; top: 624px; }
.about-page-v2 .about-v2-special { overflow: visible; }
.about-page-v2 .about-v2-special .curve { display: none; }
.about-row-divider {
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  height: 145px;
  display: block;
  pointer-events: none;
  z-index: 1;
}
.about-row-divider-top {
  top: -144px;
}
.about-page-v2 .about-v2-focus {
  position: relative;
  padding-bottom: 255px;
  z-index: 1;
}
.about-row-divider-bottom {
  bottom: -1px;
  transform: rotate(180deg);
  transform-origin: center center;
  z-index: 4;
}
.about-page-v2 .about-v2-people { margin-top: -1px; }
.about-page-v2 .people-curve { display: none; }
@media (max-width: 1100px) {
  .about-page-v2 .about-v2-hero { min-height: 1135px; }
  .about-page-v2 .about-collage-img.collage-3 { top: 0; }
  .about-page-v2 .about-collage-img.collage-4 { right: 139px; top: 42px; width: 126px; height: 156px; }
  .about-page-v2 .about-v2-origin-inner { grid-template-columns: 1fr; gap: 48px; }
  .about-page-v2 .about-presence-map { width: 720px; min-height: 610px; margin-top: -70px; transform: scale(.86); transform-origin: top center; }
  .about-page-v2 .about-presence-map > img { left: 50px; top: 0; width: 620px; height: 620px; }
  .about-page-v2 .about-presence-map .city-bremen { left: 297px; top: 175px; }
  .about-page-v2 .about-presence-map .city-wolfsburg { left: 371px; top: 224px; }
  .about-page-v2 .about-presence-map .city-duesseldorf { left: 220px; top: 292px; }
  .about-page-v2 .about-presence-map .city-stuttgart { left: 313px; top: 435px; }
  .about-page-v2 .about-presence-map .city-muenchen { left: 411px; top: 478px; }
  .about-page-v2 .about-presence-map .city-friedrichshafen { left: 324px; top: 509px; }
  .about-row-divider { height: 92px; }
  .about-row-divider-top { top: -91px; }
}
@media (max-width: 540px) {
  .about-page-v2 .about-v2-arrow { font-size: 44px; top: 390px; left: 24px; display: block; }
  .about-page-v2 .about-v2-hero { min-height: 930px; }
  .about-page-v2 .about-collage-img.collage-3 { top: 0; }
  .about-page-v2 .about-collage-img.collage-4 { right: 119px; top: 38px; width: 112px; height: 138px; }
  .about-page-v2 .about-presence-map { width: 600px; min-height: 520px; transform: scale(.62); margin-left: -104px; margin-top: -60px; }
  .about-row-divider { height: 70px; }
  .about-row-divider-top { top: -69px; }
  .about-page-v2 .about-v2-focus { padding-bottom: 150px; }
}
/* corrections 16b: actual down arrow glyph mask */
.about-page-v2 .fa.fa-arrow-down2 {
  display: inline-block;
  width: 42px;
  height: 58px;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 384 512'%3E%3Cpath d='M169.4 470.6c12.5 12.5 32.8 12.5 45.3 0l160-160c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L224 370.8V64c0-17.7-14.3-32-32-32s-32 14.3-32 32v306.7L54.6 265.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l160 160z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 384 512'%3E%3Cpath d='M169.4 470.6c12.5 12.5 32.8 12.5 45.3 0l160-160c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L224 370.8V64c0-17.7-14.3-32-32-32s-32 14.3-32 32v306.7L54.6 265.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l160 160z'/%3E%3C/svg%3E") center / contain no-repeat;
}
.about-page-v2 .fa.fa-arrow-down2::before { content: ""; }
@media (max-width: 540px) {
  .about-page-v2 .fa.fa-arrow-down2 { width: 30px; height: 42px; }
}
/* corrections 16c: bottom divider extends into following dark/image section */
.about-page-v2 .about-row-divider-bottom {
  bottom: -144px;
  z-index: 20;
}
@media (max-width: 1100px) {
  .about-page-v2 .about-row-divider-bottom { bottom: -91px; }
}
@media (max-width: 540px) {
  .about-page-v2 .about-row-divider-bottom { bottom: -69px; }
}
/* corrections 17: responsive collage refinements */
.about-page-v2 .about-collage-img {
  box-shadow: 0 38px 95px rgba(0,0,0,.42), 0 14px 34px rgba(0,0,0,.24);
}
.about-page-v2 .about-collage-img.collage-4 {
  z-index: 8;
  box-shadow: 0 46px 110px rgba(0,0,0,.48), 0 18px 40px rgba(0,0,0,.28);
}
@media (max-width: 1500px) {
  .about-page-v2 .about-v2-arrow { display: none; }
  .about-page-v2 .about-v2-hero-collage {
    width: min(1320px, calc(100vw - 56px));
    top: 690px;
  }
  .about-page-v2 .about-collage-img.collage-1 { left: 0; top: 200px; width: 185px; height: 268px; }
  .about-page-v2 .about-collage-img.collage-2 { left: 178px; top: 165px; width: 315px; height: 350px; }
  .about-page-v2 .about-collage-img.collage-3 { left: 492px; top: 38px; width: 462px; height: 575px; }
  .about-page-v2 .about-collage-img.collage-4 { right: 245px; top: 80px; width: 275px; height: 340px; }
  .about-page-v2 .about-collage-img.collage-5 { right: 0; top: 165px; width: 335px; height: 335px; }
}
@media (max-width: 1280px) {
  .about-page-v2 .about-v2-hero-collage {
    width: min(1080px, calc(100vw - 44px));
    top: 705px;
  }
  .about-page-v2 .about-collage-img.collage-1 { left: 0; top: 182px; width: 150px; height: 218px; }
  .about-page-v2 .about-collage-img.collage-2 { left: 144px; top: 150px; width: 260px; height: 290px; }
  .about-page-v2 .about-collage-img.collage-3 { left: 404px; top: 38px; width: 382px; height: 476px; }
  .about-page-v2 .about-collage-img.collage-4 { right: 202px; top: 76px; width: 230px; height: 285px; }
  .about-page-v2 .about-collage-img.collage-5 { right: 0; top: 150px; width: 276px; height: 276px; }
}
@media (max-width: 1100px) {
  .about-page-v2 .about-v2-hero-collage { width: 620px; top: 620px; height: 420px; }
  .about-page-v2 .about-collage-img.collage-1,
  .about-page-v2 .about-collage-img.collage-5 { display: none; }
  .about-page-v2 .about-collage-img.collage-2 { display: block; left: 36px; top: 112px; width: 190px; height: 210px; }
  .about-page-v2 .about-collage-img.collage-3 { display: block; left: 226px; top: 0; width: 265px; height: 330px; }
  .about-page-v2 .about-collage-img.collage-4 { display: block; right: 28px; top: 45px; width: 165px; height: 204px; }
}
@media (max-width: 540px) {
  .about-page-v2 .about-v2-hero-collage { width: 100%; left: 0; transform: none; top: 590px; height: 280px; }
  .about-page-v2 .about-collage-img.collage-1,
  .about-page-v2 .about-collage-img.collage-2,
  .about-page-v2 .about-collage-img.collage-3,
  .about-page-v2 .about-collage-img.collage-5 { display: none; }
  .about-page-v2 .about-collage-img.collage-4 {
    display: block;
    left: 50%;
    right: auto;
    top: 0;
    width: min(245px, calc(100vw - 96px));
    height: 305px;
    transform: translateX(-50%) !important;
  }
}
@media (max-width: 1499px) {
  .about-page-v2 .about-v2-arrow.fa.fa-arrow-down2 { display: none; }
}
/* corrections 18: larger map, 1400 wrap, stronger parallax/mobile image, group screenshot alignment */
.about-page-v2 .about-v2-origin-inner {
  width: min(1660px, calc(100vw - 90px));
  grid-template-columns: 500px 1035px;
  gap: 85px;
}
.about-page-v2 .about-presence-map {
  width: 1035px;
  min-height: 900px;
  margin-top: -175px;
}
.about-page-v2 .about-presence-map > img {
  left: 60px;
  top: 0;
  width: 912px;
  height: 912px;
}
.about-page-v2 .about-presence-map .presence-city { font-size: 17px; line-height: 17px; min-height: 38px; padding: 9px 12px 9px 9px; }
.about-page-v2 .about-presence-map .presence-city span { width: 20px; height: 20px; }
.about-page-v2 .about-presence-map .city-bremen { left: 438px; top: 257px; }
.about-page-v2 .about-presence-map .city-wolfsburg { left: 546px; top: 330px; }
.about-page-v2 .about-presence-map .city-duesseldorf { left: 324px; top: 430px; }
.about-page-v2 .about-presence-map .city-stuttgart { left: 461px; top: 640px; }
.about-page-v2 .about-presence-map .city-muenchen { left: 605px; top: 704px; }
.about-page-v2 .about-presence-map .city-friedrichshafen { left: 476px; top: 749px; }

.about-page-v2 .about-v2-group {
  padding: 72px 0 0;
  overflow: visible;
  z-index: 2;
}
.about-page-v2 .group-inner {
  width: min(1208px, calc(100vw - 70px));
  grid-template-columns: 630px 390px;
  gap: 105px;
  align-items: start;
}
.about-page-v2 .group-img {
  width: 630px;
  height: 424px;
  object-fit: cover;
  object-position: center center;
  box-shadow: none;
}
.about-page-v2 .group-copy {
  padding-top: 0;
}
.about-page-v2 .group-copy h2 {
  max-width: 360px;
  margin-bottom: 28px;
  font-size: 39px;
  line-height: 1.13;
  font-weight: 600;
  letter-spacing: -.025em;
}
.about-page-v2 .group-copy p {
  max-width: 360px;
  line-height: 1.75;
}
.about-page-v2 .about-v2-special {
  margin-top: -42px;
}
.about-page-v2 .office-wide {
  top: 68px;
  margin-left: 115px;
  width: 660px;
  height: 437px;
  z-index: 2;
}
.about-page-v2 .special-card {
  top: 285px;
  margin-left: -505px;
  width: 470px;
  min-height: 410px;
  padding: 78px 72px 34px;
  z-index: 3;
}
.about-page-v2 .brand-logos {
  top: 630px;
  margin-left: 225px;
  width: 380px;
}

@media (max-width: 1400px) {
  .about-page-v2 .about-v2-origin { padding-bottom: 245px; }
  .about-page-v2 .about-v2-origin-inner {
    width: min(980px, calc(100vw - 72px));
    grid-template-columns: 1fr;
    gap: 36px;
    text-align: center;
    justify-items: center;
  }
  .about-page-v2 .origin-copy {
    padding-top: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .about-page-v2 .origin-copy h2,
  .about-page-v2 .origin-copy p {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
  }
  .about-page-v2 .origin-copy h2 { margin-bottom: 34px; }
  .about-page-v2 .about-presence-map {
    width: min(1040px, calc(100vw - 34px));
    min-height: 860px;
    margin: -35px auto 0;
    transform: none;
  }
  .about-page-v2 .about-presence-map > img { left: 50%; transform: translateX(-50%); width: 860px; height: 860px; }
  .about-page-v2 .about-presence-map .city-bremen { left: calc(50% - 32px); top: 242px; }
  .about-page-v2 .about-presence-map .city-wolfsburg { left: calc(50% + 70px); top: 311px; }
  .about-page-v2 .about-presence-map .city-duesseldorf { left: calc(50% - 140px); top: 405px; }
  .about-page-v2 .about-presence-map .city-stuttgart { left: calc(50% - 10px); top: 604px; }
  .about-page-v2 .about-presence-map .city-muenchen { left: calc(50% + 126px); top: 664px; }
  .about-page-v2 .about-presence-map .city-friedrichshafen { left: calc(50% + 4px); top: 707px; }
}

@media (max-width: 1100px) {
  .about-page-v2 .about-v2-origin-inner { text-align: center; }
  .about-page-v2 .about-presence-map { width: 790px; min-height: 670px; margin-top: -25px; transform: scale(.82); transform-origin: top center; }
  .about-page-v2 .about-presence-map > img { width: 760px; height: 760px; }
  .about-page-v2 .group-inner { width: min(720px, calc(100vw - 72px)); grid-template-columns: 1fr; gap: 36px; }
  .about-page-v2 .group-img { width: 100%; height: auto; }
  .about-page-v2 .group-copy { text-align: left; }
  .about-page-v2 .about-v2-special { margin-top: 0; }
}
@media (max-width: 540px) {
  .about-page-v2 .about-collage-img.collage-4 { display: none; }
  .about-page-v2 .about-collage-img.collage-3 {
    display: block;
    left: 50%;
    right: auto;
    top: 0;
    width: min(245px, calc(100vw - 96px));
    height: 305px;
    transform: translateX(-50%) !important;
  }
  .about-page-v2 .about-presence-map { width: 680px; min-height: 585px; transform: scale(.56); margin-left: -145px; margin-top: -25px; }
  .about-page-v2 .group-inner { width: calc(100vw - 48px); }
  .about-page-v2 .group-copy h2 { font-size: 31px; }
  .about-page-v2 .office-wide { width: calc(100vw - 48px); height: auto; }
}

/* corrections 18b: restore centered responsive specialization block after desktop screenshot overrides */
@media (max-width: 1100px) {
  .about-page-v2 .office-wide,
  .about-page-v2 .special-card,
  .about-page-v2 .brand-logos {
    position: relative;
    top: auto;
    left: auto;
    margin-left: auto;
    margin-right: auto;
  }
  .about-page-v2 .office-wide { display: block; width: min(680px, calc(100vw - 72px)); height: auto; }
  .about-page-v2 .special-card { width: min(520px, calc(100vw - 72px)); min-height: auto; margin-top: -30px; padding: 58px 48px 46px; }
  .about-page-v2 .brand-logos { width: min(520px, calc(100vw - 72px)); margin-top: 60px; }
}
@media (max-width: 540px) {
  .about-page-v2 .office-wide { width: calc(100vw - 48px); }
  .about-page-v2 .special-card { width: calc(100vw - 48px); padding: 42px 32px; }
}
/* corrections 19: spacing, 754px origin overflow, mobile map, visible divider, office overlap, tablet Endrit caption */
.about-page-v2 .focus-person-tablet { display: none; }

/* More breathing room below the 5-image desktop collage */
.about-page-v2 .about-v2-hero { min-height: 1580px; }
.about-page-v2 .about-v2-hero-collage { top: 705px; }

/* Top SVG divider must be visible above the white section */
.about-page-v2 .about-v2-special { position: relative; overflow: visible; }
.about-page-v2 .about-row-divider-top {
  top: -144px;
  z-index: 30;
  opacity: 1;
}

/* User-approved desktop image overlap */
.about-page-v2 .office-wide {
  top: -25px;
  margin-left: -100px;
}
.about-page-v2 .special-card { top: 190px; }
.about-page-v2 .brand-logos { top: 535px; }

@media (max-width: 1500px) {
  .about-page-v2 .about-v2-hero { min-height: 1510px; }
  .about-page-v2 .about-v2-hero-collage { top: 735px; }
}

@media (max-width: 1400px) {
  .about-page-v2 .about-v2-hero { min-height: 1490px; }
  .about-page-v2 .about-v2-origin-inner,
  .about-page-v2 .origin-copy,
  .about-page-v2 .origin-copy h2,
  .about-page-v2 .origin-copy p,
  .about-page-v2 .about-presence-map {
    min-width: 0;
    max-width: 100%;
  }
  .about-page-v2 .origin-copy h2 {
    overflow-wrap: anywhere;
    hyphens: auto;
  }
  .about-page-v2 .about-presence-map { overflow: visible; }
}

@media (max-width: 900px) {
  .about-page-v2 .about-v2-origin-inner {
    width: calc(100vw - 48px);
    grid-template-columns: minmax(0, 1fr);
  }
  .about-page-v2 .origin-copy h2 {
    max-width: 100%;
    font-size: clamp(31px, 5.4vw, 39px);
    line-height: 1.16;
  }
}

@media (max-width: 1100px) {
  .about-page-v2 .about-row-divider-top { top: -91px; }
  .about-page-v2 .focus-grid {
    grid-template-columns: 230px 1fr;
    gap: 20px 52px;
    align-items: start;
  }
  .about-page-v2 .focus-grid > img { grid-column: 1; grid-row: 1; }
  .about-page-v2 .focus-person-tablet {
    display: block;
    grid-column: 1;
    grid-row: 2;
    margin: -28px 0 0;
    color: var(--about-teal);
    font-size: 16px;
    line-height: 1.65;
    font-style: normal;
  }
  .about-page-v2 .quote-main { grid-column: 2; grid-row: 1 / span 2; }
  .about-page-v2 .quote-main .person { display: none; }
  .about-page-v2 .focus-grid > .quote:not(.quote-main) { grid-column: 1 / -1; grid-row: 3; }
}

@media (max-width: 540px) {
  .about-page-v2 .about-v2-hero { min-height: 980px; }
  .about-page-v2 .about-v2-hero-collage { top: 625px; }
  .about-page-v2 .about-row-divider-top { top: -69px; }
  .about-page-v2 .about-v2-origin { padding-bottom: 210px; }
  .about-page-v2 .about-presence-map {
    width: 100%;
    min-height: 520px;
    margin: -10px auto 0;
    transform: none;
    overflow: visible;
  }
  .about-page-v2 .about-presence-map > img {
    left: 50%;
    top: 0;
    width: min(440px, calc(100vw + 34px));
    height: min(440px, calc(100vw + 34px));
    transform: translateX(-50%);
  }
  .about-page-v2 .about-presence-map .presence-city {
    transform: scale(.74);
    transform-origin: left top;
  }
  .about-page-v2 .about-presence-map .city-bremen { left: calc(50% - 16px); top: 121px; }
  .about-page-v2 .about-presence-map .city-wolfsburg { left: calc(50% + 36px); top: 156px; }
  .about-page-v2 .about-presence-map .city-duesseldorf { left: calc(50% - 72px); top: 205px; }
  .about-page-v2 .about-presence-map .city-stuttgart { left: calc(50% - 6px); top: 304px; }
  .about-page-v2 .about-presence-map .city-muenchen { left: calc(50% + 62px); top: 335px; }
  .about-page-v2 .about-presence-map .city-friedrichshafen { left: calc(50% + 1px); top: 358px; }
  .about-page-v2 .focus-grid { grid-template-columns: 1fr; gap: 28px; }
  .about-page-v2 .focus-grid > img,
  .about-page-v2 .focus-person-tablet,
  .about-page-v2 .quote-main,
  .about-page-v2 .focus-grid > .quote:not(.quote-main) { grid-column: 1; grid-row: auto; }
  .about-page-v2 .focus-person-tablet { margin-top: -10px; }
  .about-page-v2 .quote-main .person { display: none; }
}
/* corrections 19b: avoid map clipping and keep office overlap desktop-only */
.about-page-v2 .about-presence-map { min-height: 930px; }
@media (max-width: 1400px) {
  .about-page-v2 .about-presence-map { min-height: 900px; }
}
@media (max-width: 1100px) {
  .about-page-v2 .about-presence-map { min-height: 780px; }
  .about-page-v2 .office-wide {
    top: auto;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 540px) {
  .about-page-v2 .about-presence-map { min-height: 520px; }
  .about-page-v2 .office-wide {
    top: auto;
    margin-left: auto;
    margin-right: auto;
  }
}

/* corrections 21: divider visible over dark bg, but still behind the overlapping group image */
.about-page-v2 .about-v2-group,
.about-page-v2 .about-v2-special {
  position: relative;
  z-index: auto;
}
.about-page-v2 .about-v2-special {
  top: 41px;
}
.about-page-v2 .group-copy .group-lead {
  font-weight: 600;
}
.about-page-v2 .special-card h2 {
  margin-bottom: 28px;
}
.about-page-v2 .group-inner,
.about-page-v2 .group-img {
  position: relative;
  z-index: 40;
}
.about-page-v2 .about-row-divider-top {
  z-index: 20;
}
.about-page-v2 .brand-logos {
  left: 50%;
  margin-left: 20px;
  width: 420px;
}

/* corrections 23: about DE/EN map alignment + people parallax stack */
.about-page-v2 .about-presence-map {
  --about-map-w: 912px;
  --about-map-left: 60px;
}
.about-page-v2 .about-presence-map .city-bremen { left: calc(var(--about-map-left) + var(--about-map-w) * .37875); top: calc(var(--about-map-w) * .281875); }
.about-page-v2 .about-presence-map .city-wolfsburg { left: calc(var(--about-map-left) + var(--about-map-w) * .4975); top: calc(var(--about-map-w) * .361875); }
.about-page-v2 .about-presence-map .city-duesseldorf { left: calc(var(--about-map-left) + var(--about-map-w) * .25475); top: calc(var(--about-map-w) * .471875); }
.about-page-v2 .about-presence-map .city-stuttgart { left: calc(var(--about-map-left) + var(--about-map-w) * .40475); top: calc(var(--about-map-w) * .701875); }
.about-page-v2 .about-presence-map .city-muenchen { left: calc(var(--about-map-left) + var(--about-map-w) * .562625); top: calc(var(--about-map-w) * .771875); }
.about-page-v2 .about-presence-map .city-friedrichshafen { left: calc(var(--about-map-left) + var(--about-map-w) * .423375); top: calc(var(--about-map-w) * .821875); }

.people-parallax-stack {
  position: absolute;
  z-index: 5;
  right: max(74px, calc((100vw - 1180px) / 2));
  top: 245px;
  width: 650px;
  height: 470px;
  pointer-events: none;
}
.people-stack-img {
  position: absolute;
  display: block;
  object-fit: cover;
  box-shadow: 0 34px 86px rgba(0,0,0,.34), 0 12px 30px rgba(0,0,0,.22);
  will-change: transform;
  backface-visibility: hidden;
}
.people-stack-1 { right: 260px; top: 30px; width: 330px; height: 220px; z-index: 1; opacity: .92; }
.people-stack-2 { right: 30px; top: 0; width: 385px; height: 257px; z-index: 3; }
.people-stack-3 { right: 145px; top: 205px; width: 360px; height: 240px; z-index: 2; }
.about-page-v2 .people-copy { z-index: 6; }

@media (max-width: 1400px) {
  .about-page-v2 .about-presence-map {
    --about-map-w: 860px;
    --about-map-left: calc(50% - var(--about-map-w) / 2);
  }
}

@media (max-width: 1100px) {
  /* bring the upper image collage closer to the copy and remove the oversized gap below it */
  .about-page-v2 .about-v2-hero { min-height: 1045px; }
  .about-page-v2 .about-v2-hero-collage { top: 575px; }

  /* give the next headline more breathing room from the hero edge */
  .about-page-v2 .about-v2-origin { padding-top: 54px; padding-bottom: 190px; }

  /* keep the Germany map large enough and aligned exactly like the home-map ratio */
  .about-page-v2 .about-presence-map {
    --about-map-w: 760px;
    --about-map-left: calc(50% - var(--about-map-w) / 2);
    width: min(860px, calc(100vw + 96px));
    min-height: 770px;
    margin: -18px auto 0;
    transform: none;
  }
  .about-page-v2 .about-presence-map > img { width: var(--about-map-w); height: var(--about-map-w); }

  /* keep white group text clear of the white divider */
  .about-page-v2 .about-v2-group { padding-bottom: 135px; }
  .about-page-v2 .about-v2-special { top: 0; }

  /* Endrit caption: no negative overlap into the portrait */
  .about-page-v2 .focus-person-tablet { margin: 16px 0 0; }

  .people-parallax-stack {
    right: 24px;
    top: 325px;
    width: 410px;
    height: 330px;
    opacity: .92;
  }
  .people-stack-1 { right: 162px; top: 30px; width: 210px; height: 140px; }
  .people-stack-2 { right: 14px; top: 0; width: 246px; height: 164px; }
  .people-stack-3 { right: 88px; top: 132px; width: 230px; height: 153px; }
}

@media (max-width: 760px) {
  .people-parallax-stack { display: none; }
}

@media (max-width: 540px) {
  /* mobile: reduce intro-text-to-image gap without increasing the bottom gap */
  .about-page-v2 .about-v2-hero { min-height: 890px; }
  .about-page-v2 .about-v2-copy > p:not(.about-v2-kicker) { margin-top: 30px; }
  .about-page-v2 .about-v2-hero-collage { top: 545px; }

  .about-page-v2 .about-v2-origin { padding-top: 46px; padding-bottom: 190px; }
  .about-page-v2 .about-presence-map {
    --about-map-w: min(500px, calc(100vw + 92px));
    --about-map-left: calc(50% - var(--about-map-w) / 2);
    width: calc(100vw + 96px);
    min-height: 560px;
    margin: -4px 0 0 -48px;
    transform: none;
  }
  .about-page-v2 .about-presence-map > img {
    width: var(--about-map-w);
    height: var(--about-map-w);
  }
  .about-page-v2 .about-presence-map .presence-city { transform: scale(.82); }

  .about-page-v2 .about-v2-group { padding-bottom: 110px; }
  .about-page-v2 .focus-person-tablet { margin-top: 12px; }
}

/* Mobile closing claim typography matches the homepage Abbinder. */
@media (max-width: 767px) {
  .industrie-claim-band .claim-heading {
    font-size: 30px;
    line-height: 36px;
  }
}

/* Industrie detail subpages */
.industry-detail-page .industry-detail-hero .industrie-hero-bg {
  background-image: linear-gradient(90deg, rgba(3, 14, 18, .84) 0%, rgba(4, 35, 44, .54) 48%, rgba(0, 0, 0, .76) 100%), url('assets/headback.jpg');
  background-position: center 40%;
}
.industry-subnav {
  position: relative;
  overflow: hidden;
  padding: 20px 0;
  background: #03171d;
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.industry-subnav::before,
.industry-subnav::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: 112px;
  pointer-events: none;
  opacity: 0;
  transition: opacity .2s ease;
}
.industry-subnav::before { left: 64px; background: linear-gradient(90deg, #03171d 12%, rgba(3,23,29,.82) 38%, rgba(3,23,29,0)); }
.industry-subnav::after { right: 64px; background: linear-gradient(270deg, #03171d 12%, rgba(3,23,29,.82) 38%, rgba(3,23,29,0)); }
.industry-subnav.is-scrollable:not(.at-start)::before,
.industry-subnav.is-scrollable:not(.at-end)::after { opacity: 1; }
.industry-subnav-inner {
  width: min(1488px, calc(100vw - 200px));
  margin: 0 auto;
  display: flex;
  gap: 10px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-behavior: smooth;
  scroll-snap-type: x proximity;
  padding: 0 4px 12px 0;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,.22) transparent;
}
.industry-subnav.is-scrollable:not(.at-end) .industry-subnav-inner {
  -webkit-mask-image: linear-gradient(90deg, #000 0, #000 calc(100% - 118px), rgba(0,0,0,.52) calc(100% - 58px), transparent 100%);
  mask-image: linear-gradient(90deg, #000 0, #000 calc(100% - 118px), rgba(0,0,0,.52) calc(100% - 58px), transparent 100%);
}
.industry-subnav.is-scrollable:not(.at-start):not(.at-end) .industry-subnav-inner {
  -webkit-mask-image: linear-gradient(90deg, transparent 0, rgba(0,0,0,.52) 58px, #000 118px, #000 calc(100% - 118px), rgba(0,0,0,.52) calc(100% - 58px), transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, rgba(0,0,0,.52) 58px, #000 118px, #000 calc(100% - 118px), rgba(0,0,0,.52) calc(100% - 58px), transparent 100%);
}
.industry-subnav.is-scrollable:not(.at-start).at-end .industry-subnav-inner {
  -webkit-mask-image: linear-gradient(90deg, transparent 0, rgba(0,0,0,.52) 58px, #000 118px, #000 100%);
  mask-image: linear-gradient(90deg, transparent 0, rgba(0,0,0,.52) 58px, #000 118px, #000 100%);
}
.industry-subnav-inner::-webkit-scrollbar { height: 4px; }
.industry-subnav-inner::-webkit-scrollbar-track { background: transparent; }
.industry-subnav-inner::-webkit-scrollbar-thumb { background: rgba(255,255,255,.22); border-radius: 999px; }
.subnav-link { flex: 0 0 auto; scroll-snap-align: start; display: inline-flex; align-items: center; min-height: 42px; padding: 0 18px; border: 1px solid rgba(255,255,255,.16); border-radius: 999px; color: rgba(255,255,255,.76); text-decoration: none; font-size: 13px; line-height: 1; font-weight: 700; letter-spacing: .02em; transition: background .2s ease, color .2s ease, border-color .2s ease; }
.industry-subnav-control {
  position: absolute;
  top: 50%;
  z-index: 4;
  display: none;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  color: #fff;
  background: rgba(3,23,29,.86);
  box-shadow: 0 18px 48px rgba(0,0,0,.28);
  transform: translateY(-50%);
  cursor: pointer;
  backdrop-filter: blur(8px);
}
.industry-subnav.is-scrollable .industry-subnav-control { display: inline-flex; }
.industry-subnav-control:hover { background: rgba(0,161,154,.3); border-color: rgba(0,161,154,.72); }
.industry-subnav-control:disabled { opacity: .24; cursor: default; pointer-events: none; }
.industry-subnav-control--prev { left: 18px; }
.industry-subnav-control--next { right: 18px; }
.industry-subnav-control span { transform: translateY(-1px); }
.industry-subnav-swipe-hint { display: none; }
@media (max-width: 767px) {
  .industry-subnav {
    padding: 20px 0;
  }
  .subnav-link {
    min-height: 36px;
    padding: 0 12px;
    font-size: 10.5px;
  }
  .industry-subnav-inner {
    width: calc(100vw - 32px);
  }
  .industry-subnav.is-scrollable:not(.at-end) .industry-subnav-inner {
    -webkit-mask-image: linear-gradient(90deg, #000 0, #000 calc(100% - 32px), rgba(0,0,0,.5) calc(100% - 16px), transparent 100%);
    mask-image: linear-gradient(90deg, #000 0, #000 calc(100% - 32px), rgba(0,0,0,.5) calc(100% - 16px), transparent 100%);
  }
  .industry-subnav.is-scrollable:not(.at-start):not(.at-end) .industry-subnav-inner {
    -webkit-mask-image: linear-gradient(90deg, transparent 0, rgba(0,0,0,.5) 16px, #000 32px, #000 calc(100% - 32px), rgba(0,0,0,.5) calc(100% - 16px), transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0, rgba(0,0,0,.5) 16px, #000 32px, #000 calc(100% - 32px), rgba(0,0,0,.5) calc(100% - 16px), transparent 100%);
  }
  .industry-subnav.is-scrollable:not(.at-start).at-end .industry-subnav-inner {
    -webkit-mask-image: linear-gradient(90deg, transparent 0, rgba(0,0,0,.5) 16px, #000 32px, #000 100%);
    mask-image: linear-gradient(90deg, transparent 0, rgba(0,0,0,.5) 16px, #000 32px, #000 100%);
  }
  .industry-subnav::before { left: 0; }
  .industry-subnav::after { right: 0; }
  .industry-subnav::before,
  .industry-subnav::after { width: 28px; }
  .industry-subnav.is-scrollable .industry-subnav-control { display: none; }
  .industry-subnav.is-scrollable .industry-subnav-swipe-hint {
    width: calc(100vw - 32px);
    margin: 8px auto 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    color: rgba(255,255,255,.72);
    font-size: 11px;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
  }
  .industry-subnav-swipe-hint :is(strong, .semantic-emphasis) { color: var(--pec-green); font-size: 18px; line-height: 1; }
}
.subnav-link:hover,
.subnav-link.is-active { color: #fff; border-color: rgba(0,161,154,.72); background: rgba(0,161,154,.18); }
.industry-detail-intro,
.industry-detail-blocks { background: #04232c; padding: 132px 0; }
.industry-detail-intro-grid { width: min(1488px, calc(100vw - 72px)); margin: 0 auto; display: grid; grid-template-columns: minmax(0, 1fr) 484px; gap: 72px; align-items: center; }
.industry-detail-intro-grid > p { grid-column: 1 / 2; margin: 0; color: rgba(255,255,255,.84); font-size: 22px; line-height: 1.58; max-width: 760px; }
.industry-detail-intro-grid h2 { margin: 0; color: #fff; font-size: 50px; line-height: 1.16; font-weight: 400; letter-spacing: -.035em; }
.industry-detail-intro-grid figure { grid-row: span 2; margin: 0; position: relative; }
.industry-detail-intro-grid figure::after { content: '+'; position: absolute; right: 32px; bottom: 30px; width: 118px; height: 118px; border-radius: 50%; display: grid; place-items: center; color: #fff; background: radial-gradient(circle at 35% 35%, rgba(255,255,255,.25), rgba(35,45,91,.64) 48%, rgba(33,39,70,.9)); font-size: 28px; font-weight: 300; box-shadow: 0 24px 80px rgba(0,0,0,.35); }
.industry-detail-intro-grid img { display: block; width: 100%; height: 420px; object-fit: cover; }
.industry-detail-blocks { padding-top: 0; }
.industry-detail-blocks-grid { width: min(1488px, calc(100vw - 72px)); margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px; }
.industry-detail-block { padding: 44px 38px; border: 1px solid rgba(255,255,255,.14); background: linear-gradient(155deg, rgba(255,255,255,.075), rgba(255,255,255,.018)); min-height: 610px; }
.industry-detail-number { margin: 0 0 40px; color: var(--pec-green); font-size: 14px; line-height: 1; font-weight: 800; letter-spacing: .12em; }
.industry-detail-block h3 { margin: 0 0 18px; color: #fff; font-size: 31px; line-height: 1.16; font-weight: 400; letter-spacing: -.03em; }
.industry-detail-block h4 { margin: 34px 0 0; color: #fff; font-size: 22px; line-height: 1.25; font-weight: 700; letter-spacing: -.02em; }
.industry-detail-block p { margin: 0; color: rgba(255,255,255,.82); font-size: 17px; line-height: 1.62; }
.industry-detail-block ul,
.industry-detail-when ul { margin: 30px 0 0; padding: 0; list-style: none; color: rgba(255,255,255,.9); font-size: 16px; line-height: 1.48; }
.industry-detail-block li,
.industry-detail-when li { position: relative; padding-left: 20px; margin-bottom: 12px; }
.industry-detail-block li::before,
.industry-detail-when li::before { content: ''; position: absolute; left: 0; top: .66em; width: 7px; height: 7px; border-radius: 50%; background: var(--pec-green); }
.industry-detail-when { min-height: 0; padding: 112px 0; }
.industry-detail-when-inner { width: min(1120px, calc(100vw - 72px)); margin: 0 auto; }
.industry-detail-when h2 { margin: 0; color: #fff; font-size: 48px; line-height: 1.16; font-weight: 400; letter-spacing: -.035em; }
.industry-detail-when .industrie-kicker { color: rgba(255,255,255,.72); }
.industry-detail-when li::before { background: #04232c; box-shadow: 0 0 0 2px rgba(255,255,255,.16); }
.industry-detail-when ul { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px 42px; font-size: 19px; }
@media (max-width: 1199px) {
  .industry-detail-intro-grid { grid-template-columns: 1fr; gap: 44px; }
  .industry-detail-intro-grid figure { grid-row: auto; max-width: 720px; }
  .industry-detail-blocks-grid { grid-template-columns: 1fr; }
  .industry-detail-block { min-height: 0; }
}
.industry-principles,
.industry-offers,
.industry-partner-note { background: #04232c; padding: 112px 0; }
.industry-principles { padding-top: 0; }
.industry-principles-inner,
.industry-offers-head,
.industry-offer-grid,
.industry-partner-inner { width: min(1488px, calc(100vw - 72px)); margin: 0 auto; }
.industry-principles-inner { display: grid; grid-template-columns: 320px minmax(0, 1fr); gap: 54px; align-items: start; padding-top: 10px; }
.industry-principles ul { margin: 0; padding: 0; list-style: none; display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px 36px; }
.industry-principles li { position: relative; padding: 26px 28px 26px 52px; border: 1px solid rgba(255,255,255,.14); color: #fff; background: rgba(255,255,255,.045); font-size: 22px; line-height: 1.28; letter-spacing: -.02em; }
.industry-principles li::before { content: ''; position: absolute; left: 28px; top: 36px; width: 8px; height: 8px; border-radius: 50%; background: var(--pec-green); }
.industry-partner-note { background: #03171d; }
.industry-partner-inner { max-width: 1120px; }
.industry-partner-inner h2,
.industry-offers-head h2 { margin: 0; color: #fff; font-size: 48px; line-height: 1.16; font-weight: 400; letter-spacing: -.035em; }
.industry-partner-inner p:not(.industrie-kicker) { margin: 28px 0 0; color: rgba(255,255,255,.84); font-size: 21px; line-height: 1.6; max-width: 920px; }
.industry-offers { background: #03171d; }
.industry-offers-head { margin-bottom: 54px; max-width: 980px; }
.industry-offer-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 36px; }
.industry-offer-card { padding: 46px; border: 1px solid rgba(255,255,255,.16); background: linear-gradient(150deg, rgba(255,255,255,.08), rgba(255,255,255,.022)); box-shadow: 0 30px 90px rgba(0,0,0,.18); }
.industry-offer-number { margin: 0 0 26px; color: var(--pec-green); font-size: 14px; font-weight: 800; letter-spacing: .12em; }
.industry-offer-card h3 { margin: 0 0 18px; color: #fff; font-size: 34px; line-height: 1.14; font-weight: 400; letter-spacing: -.03em; }
.industry-offer-duration { margin: 0 0 22px; color: rgba(255,255,255,.62); font-size: 16px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.industry-offer-card p { color: rgba(255,255,255,.84); font-size: 17px; line-height: 1.56; }
.industry-offer-columns { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; margin-top: 34px; }
.industry-offer-card .industry-offer-label { margin: 0 0 16px; color: #fff; font-size: 16px; line-height: 1.2; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.industry-offer-card ul { margin: 0; padding: 0; list-style: none; color: rgba(255,255,255,.86); font-size: 15px; line-height: 1.48; }
.industry-offer-card li { position: relative; padding-left: 18px; margin-bottom: 10px; }
.industry-offer-card li::before { content: ''; position: absolute; left: 0; top: .64em; width: 6px; height: 6px; border-radius: 50%; background: var(--pec-green); }
@media (max-width: 1199px) {
  .industry-principles-inner,
  .industry-offer-grid { grid-template-columns: 1fr; }
  .industry-offer-columns { grid-template-columns: 1fr; }
}
@media (max-width: 767px) {
  .industry-detail-intro-grid,
  .industry-detail-blocks-grid,
  .industry-detail-when-inner,
  .industry-principles-inner,
  .industry-offers-head,
  .industry-offer-grid,
  .industry-partner-inner { width: calc(100vw - 44px); }
  .industry-detail-intro,
  .industry-detail-blocks { padding: 84px 0; }
  .industry-detail-blocks { padding-top: 0; }
  .industry-detail-intro-grid h2,
  .industry-detail-when h2,
  .industry-partner-inner h2,
  .industry-offers-head h2 { font-size: 34px; line-height: 1.18; }
  .industry-detail-intro-grid > p { font-size: 18px; }
  .industry-detail-intro-grid img { height: 270px; }
  .industry-detail-intro-grid figure::after { width: 82px; height: 82px; right: 20px; bottom: 18px; }
  .industry-detail-block { padding: 34px 26px; }
  .industry-detail-block h3 { font-size: 28px; }
  .industry-detail-when,
  .industry-principles,
  .industry-offers,
  .industry-partner-note { padding: 84px 0; }
  .industry-principles { padding-top: 0; }
  .industry-detail-when ul,
  .industry-principles ul { grid-template-columns: 1fr; font-size: 17px; }
  .industry-principles li { font-size: 18px; padding: 22px 22px 22px 44px; }
  .industry-principles li::before { left: 22px; top: 31px; }
  .industry-offer-card { padding: 32px 24px; }
  .industry-offer-card h3 { font-size: 28px; }
}

/* Strategy & Transformation premium sections */
.strategy-detail-page .strategy-context-section,
.strategy-detail-page .strategy-principles-section {
  position: relative;
  background: #04232c;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.strategy-detail-page .strategy-context-section {
  padding: 132px 0 118px;
  background: #020b0e;
}
.strategy-detail-page .strategy-context-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(90deg, rgba(0,0,0,.88), rgba(4,35,44,.58) 44%, rgba(0,0,0,.82)),
    url('assets/headback.jpg');
  background-size: cover;
  background-position: center 42%;
  filter: saturate(.85) contrast(1.08) brightness(.58);
  transform: scale(1.03);
}
.strategy-detail-page .strategy-context-section::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse at 22% 16%, rgba(0,161,154,.18), transparent 44%),
    radial-gradient(ellipse at 78% 78%, rgba(0,161,154,.13), transparent 48%),
    linear-gradient(180deg, rgba(4,35,44,.06), rgba(4,35,44,.78));
  pointer-events: none;
}
.strategy-detail-page .strategy-context-inner,
.strategy-detail-page .strategy-principles-inner,
.strategy-detail-page .strategy-entry-formats .industry-offers-head,
.strategy-detail-page .strategy-entry-formats .industry-offer-grid {
  width: min(1488px, calc(100vw - 144px));
  margin: 0 auto;
}
.strategy-detail-page .strategy-section-head {
  max-width: 920px;
  margin-bottom: 58px;
}
.strategy-detail-page .industry-detail-intro-grid {
  column-gap: 72px;
  row-gap: 24px;
}
.strategy-detail-page .industry-detail-intro-grid h2 {
  font-size: 36px;
  line-height: 1.18;
  letter-spacing: -.035em;
}
.strategy-detail-page .industry-detail-intro-copy {
  margin: 24px 0 0;
  color: rgba(255,255,255,.84);
  font-size: 22px;
  line-height: 1.58;
  max-width: 760px;
}
.realtime-detail-page .industry-detail-intro-grid {
  align-items: start;
}
.realtime-detail-page .industry-detail-intro-grid h2 {
  font-size: 32px;
  line-height: 1.28;
  max-width: 880px;
}
.realtime-technology-note {
  margin-top: 48px;
  padding-top: 42px;
  border-top: 1px solid rgba(255,255,255,.14);
  max-width: 900px;
}
.realtime-technology-note h3 {
  margin: 0 0 18px;
  color: #fff;
  font-size: 30px;
  line-height: 1.18;
  font-weight: 400;
  letter-spacing: -.03em;
}
.realtime-technology-note p {
  margin: 0 0 18px;
  color: rgba(255,255,255,.82);
  font-size: 20px;
  line-height: 1.6;
}
.realtime-technology-note :is(strong, .semantic-emphasis) { color: #fff; font-weight: 500; }
.realtime-partner-logo {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 28px;
  color: rgba(255,255,255,.72);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.realtime-partner-logo img {
  display: block;
  width: 126px;
  height: auto;
  padding: 10px 14px;
  border-radius: 999px;
  background: #fff;
}
.realtime-why-section {
  background: #04232c;
  padding: 0 0 104px;
}
.realtime-why-inner {
  width: min(1120px, calc(100vw - 72px));
  margin: 0 auto;
  padding-top: 8px;
}
.realtime-why-inner h2 {
  margin: 0;
  color: #fff;
  font-size: 46px;
  line-height: 1.16;
  font-weight: 400;
  letter-spacing: -.035em;
}
.realtime-why-inner p:not(.industrie-kicker) {
  max-width: 860px;
  margin: 24px 0 0;
  color: rgba(255,255,255,.84);
  font-size: 21px;
  line-height: 1.62;
}
.strategy-detail-page .strategy-section-head .industrie-kicker,
.strategy-detail-page .strategy-principles-copy .industrie-kicker,
.strategy-detail-page .strategy-entry-formats .industrie-kicker {
  margin-bottom: 22px;
}
.strategy-detail-page .strategy-section-head .industrie-kicker,
.strategy-detail-page .strategy-principles-copy .industrie-kicker,
.strategy-detail-page .strategy-entry-formats .industrie-kicker {
  color: rgba(255,255,255,.66);
}
.strategy-detail-page .strategy-section-head h2,
.strategy-detail-page .strategy-principles-copy h2,
.strategy-detail-page .strategy-entry-formats .industry-offers-head h2 {
  margin: 0;
  color: #fff;
  font-size: 58px;
  line-height: 1.08;
  font-weight: 400;
  letter-spacing: -.045em;
}
.strategy-detail-page .strategy-trigger-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}
.strategy-detail-page .strategy-trigger-card {
  min-height: 292px;
  padding: 34px 30px 32px;
  border: 1px solid rgba(255,255,255,.16);
  background: linear-gradient(145deg, rgba(255,255,255,.09), rgba(255,255,255,.022));
  box-shadow: 0 28px 90px rgba(0,0,0,.22);
  backdrop-filter: blur(8px);
}
.strategy-detail-page .strategy-trigger-card span,
.strategy-detail-page .strategy-principles-list span,
.strategy-detail-page .industry-offer-number {
  display: block;
  color: var(--pec-green);
  font-size: 13px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: .13em;
}
.strategy-detail-page .strategy-trigger-card h3 {
  margin: 52px 0 18px;
  color: #fff;
  font-size: 25px;
  line-height: 1.12;
  font-weight: 400;
  letter-spacing: -.035em;
}
.strategy-detail-page .strategy-trigger-card p {
  margin: 0;
  color: rgba(255,255,255,.78);
  font-size: 17px;
  line-height: 1.5;
}
.strategy-detail-page .strategy-principles-section {
  padding: 112px 0 132px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.strategy-detail-page .strategy-principles-inner {
  display: grid;
  grid-template-columns: 492px minmax(0, 1fr);
  gap: 108px;
  align-items: start;
}
.strategy-detail-page .strategy-principles-copy h2 {
  font-size: 50px;
  line-height: 1.12;
}
.strategy-detail-page .strategy-principles-list {
  border-top: 1px solid rgba(255,255,255,.25);
}
.strategy-detail-page .strategy-principles-list article {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 32px;
  padding: 31px 0 34px;
  border-bottom: 1px solid rgba(255,255,255,.25);
}
.strategy-detail-page .strategy-principles-list h3 {
  margin: 0 0 10px;
  color: #fff;
  font-size: 30px;
  line-height: 1.15;
  font-weight: 400;
  letter-spacing: -.035em;
}
.strategy-detail-page .strategy-principles-list p {
  margin: 0;
  max-width: 650px;
  color: rgba(255,255,255,.76);
  font-size: 18px;
  line-height: 1.55;
}
.strategy-detail-page .strategy-entry-formats {
  background: #00a19a;
  padding: 118px 0 120px;
  color: #fff;
}
.strategy-detail-page .strategy-entry-formats .industry-offers-head {
  display: block;
  max-width: 1040px;
  margin-bottom: 60px;
}
.strategy-detail-page .strategy-entry-formats .industry-offers-head p:not(.industrie-kicker) {
  margin: 26px 0 0;
  max-width: 760px;
  color: rgba(255,255,255,.86);
  font-size: 21px;
  line-height: 1.52;
}
.strategy-detail-page .strategy-entry-formats .industry-offer-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 36px;
}
.strategy-detail-page .strategy-entry-formats .industry-offer-card {
  position: relative;
  padding: 46px 46px 42px;
  border: 1px solid rgba(255,255,255,.28);
  background: linear-gradient(150deg, rgba(255,255,255,.18), rgba(255,255,255,.055));
  box-shadow: 0 32px 88px rgba(0,70,67,.2);
  color: #fff;
  min-height: 668px;
}
.strategy-detail-page .strategy-entry-formats .industry-offer-number {
  margin: 0 0 28px;
  color: #fff;
  opacity: .74;
}
.strategy-detail-page .strategy-entry-formats .industry-offer-card h3 {
  margin: 0 0 18px;
  color: #fff;
  font-size: 38px;
  line-height: 1.1;
  font-weight: 400;
  letter-spacing: -.04em;
}
.strategy-detail-page .strategy-entry-formats .industry-offer-duration {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  margin: 0 0 28px;
  padding: 0 15px;
  border: 1px solid rgba(255,255,255,.46);
  border-radius: 999px;
  color: #fff;
  font-size: 13px;
  line-height: 1;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.strategy-detail-page .strategy-entry-formats .industry-offer-card p:not(.industry-offer-duration):not(.industry-offer-number) {
  margin: 0;
  max-width: 610px;
  color: rgba(255,255,255,.9);
  font-size: 18px;
  line-height: 1.5;
  font-weight: 400;
}
.strategy-detail-page .strategy-entry-formats .industry-offer-card p :is(strong, .semantic-emphasis) {
  display: inline-block;
  margin-bottom: 5px;
  color: #fff;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.strategy-detail-page .strategy-entry-formats .industry-offer-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
  margin-top: 38px;
}
.strategy-detail-page .strategy-entry-formats .industry-offer-card .industry-offer-label {
  margin: 0 0 18px;
  color: #fff;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.strategy-detail-page .strategy-entry-formats .industry-offer-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  color: rgba(255,255,255,.88);
  font-size: 15px;
  line-height: 1.52;
}
.strategy-detail-page .strategy-entry-formats .industry-offer-card li {
  position: relative;
  margin: 0 0 10px;
  padding-left: 18px;
}
.strategy-detail-page .strategy-entry-formats .industry-offer-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .7em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff;
}
.strategy-detail-page .strategy-entry-formats .offer-booking-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin-top: 34px;
  padding: 0 28px;
  border: 1px solid rgba(255,255,255,.82);
  border-radius: 999px;
  color: #fff;
  background: transparent;
  text-decoration: none;
  font-size: 13px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.strategy-detail-page .strategy-entry-formats .offer-booking-button:hover {
  background: rgba(255,255,255,.14);
  border-color: #fff;
}
@media (max-width: 1350px) {
  .strategy-detail-page .strategy-trigger-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 1199px) {
  .strategy-detail-page .strategy-context-inner,
  .strategy-detail-page .strategy-principles-inner,
  .strategy-detail-page .strategy-entry-formats .industry-offers-head,
  .strategy-detail-page .strategy-entry-formats .industry-offer-grid {
    width: min(820px, calc(100vw - 72px));
  }
  .strategy-detail-page .strategy-principles-inner,
  .strategy-detail-page .strategy-entry-formats .industry-offer-grid {
    grid-template-columns: 1fr;
  }
  .strategy-detail-page .strategy-principles-inner { gap: 54px; }
  .strategy-detail-page .strategy-entry-formats .industry-offer-card { min-height: 0; }
}
@media (max-width: 767px) {
  .strategy-detail-page .strategy-context-section,
  .strategy-detail-page .strategy-principles-section,
  .strategy-detail-page .strategy-entry-formats { padding: 84px 0; }
  .strategy-detail-page .strategy-context-inner,
  .strategy-detail-page .strategy-principles-inner,
  .strategy-detail-page .strategy-entry-formats .industry-offers-head,
  .strategy-detail-page .strategy-entry-formats .industry-offer-grid,
  .strategy-detail-page .industry-detail-intro-grid,
  .strategy-detail-page .industry-detail-blocks-grid { width: calc(100vw - 56px); }
  .strategy-detail-page .industry-detail-intro-grid h2 { font-size: 29px; line-height: 1.22; }
  .strategy-detail-page .industry-detail-intro-copy { margin-top: 18px; font-size: 18px; line-height: 1.55; }
  .realtime-detail-page .industry-detail-intro-grid h2 { font-size: 27px; line-height: 1.28; }
  .realtime-technology-note { margin-top: 34px; padding-top: 30px; }
  .realtime-technology-note h3 { font-size: 25px; }
  .realtime-technology-note p { font-size: 18px; line-height: 1.58; }
  .realtime-partner-logo { align-items: flex-start; flex-direction: column; gap: 12px; }
  .realtime-why-section { padding-bottom: 78px; }
  .realtime-why-inner { width: calc(100vw - 56px); }
  .realtime-why-inner h2 { font-size: 32px; line-height: 1.14; }
  .realtime-why-inner p:not(.industrie-kicker) { font-size: 18px; line-height: 1.58; }
  .strategy-detail-page .strategy-section-head h2,
  .strategy-detail-page .strategy-principles-copy h2,
  .strategy-detail-page .strategy-entry-formats .industry-offers-head h2 { font-size: 36px; line-height: 1.13; }
  .strategy-detail-page .strategy-trigger-grid,
  .strategy-detail-page .strategy-entry-formats .industry-offer-columns { grid-template-columns: 1fr; }
  .strategy-detail-page .strategy-trigger-card { min-height: 0; }
  .strategy-detail-page .strategy-trigger-card h3 { margin-top: 38px; font-size: 27px; }
  .strategy-detail-page .strategy-principles-list article { grid-template-columns: 48px minmax(0, 1fr); gap: 18px; }
  .strategy-detail-page .strategy-principles-list h3 { font-size: 24px; }
  .strategy-detail-page .strategy-entry-formats .industry-offer-card { padding: 34px 26px; }
  .strategy-detail-page .strategy-entry-formats .industry-offer-card h3 { font-size: 30px; }
}

/* NIS2 / OPSWAT subpage */
.nis2-page .nis2-hero .industrie-hero-bg {
  background-image: linear-gradient(90deg, rgba(3, 14, 18, .86) 0%, rgba(4, 35, 44, .56) 46%, rgba(0, 0, 0, .78) 100%), url('assets/headback.jpg');
  background-position: center 42%;
}
.nis2-intro,
.nis2-offers { background: #04232c; padding: 132px 0; }
.nis2-intro-grid,
.nis2-offers-head,
.nis2-offer-grid { width: min(1488px, calc(100vw - 72px)); margin: 0 auto; }
.nis2-intro-grid { display: grid; grid-template-columns: 320px minmax(0, 1fr) 430px; gap: 54px; align-items: start; }
.nis2-intro-grid h2,
.nis2-offers-head h2 { margin: 0; color: #fff; font-size: 50px; line-height: 1.16; font-weight: 400; letter-spacing: -.035em; }
.nis2-intro-grid > p:last-child { margin: 6px 0 0; color: rgba(255,255,255,.82); font-size: 20px; line-height: 1.55; }
.nis2-intro-heading .industrie-kicker { margin: 0 0 34px; }
.nis2-focus-cards { padding-top: 126px; padding-bottom: 132px; min-height: 0; }
.nis2-card { padding-bottom: 0; }
.nis2-card::after { bottom: 170px; }
.nis2-card-eyebrow { margin: 0 0 18px; color: var(--pec-green); font-size: 13px; line-height: 1; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.nis2-card h2 { min-height: 104px; }
.nis2-card ul,
.nis2-offer-card ul { margin: 28px 0 0; padding: 0; list-style: none; color: rgba(255,255,255,.86); font-size: 17px; line-height: 1.55; }
.nis2-card li,
.nis2-offer-card li { position: relative; padding-left: 20px; margin-bottom: 10px; }
.nis2-card li::before,
.nis2-offer-card li::before { content: ''; position: absolute; left: 0; top: .72em; width: 7px; height: 7px; border-radius: 50%; background: var(--pec-green); }
.nis2-arguments { min-height: 0; }
.nis2-industries { position: relative; overflow: hidden; }
.nis2-offers-head { max-width: 980px; margin-bottom: 62px; }
.nis2-offer-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 36px; }
.nis2-offer-card { min-height: 520px; padding: 52px; border: 1px solid rgba(255,255,255,.16); background: linear-gradient(150deg, rgba(255,255,255,.08), rgba(255,255,255,.02)); box-shadow: 0 30px 90px rgba(0,0,0,.18); }
.nis2-offer-card h3 { margin: 0 0 24px; color: #fff; font-size: 38px; line-height: 1.16; font-weight: 400; letter-spacing: -.03em; }
.nis2-offer-card p { margin: 0; color: rgba(255,255,255,.82); font-size: 19px; line-height: 1.6; }
.nis2-offer-card h4 { margin: 38px 0 0; color: #fff; font-size: 18px; line-height: 1.2; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.nis2-offer-card { display: flex; flex-direction: column; }
.nis2-offers .offer-booking-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  min-height: 48px;
  margin-top: auto;
  padding: 0 28px;
  border: 1px solid rgba(255,255,255,.82);
  border-radius: 999px;
  color: #fff;
  background: transparent;
  text-decoration: none;
  font-size: 13px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.nis2-offers .offer-booking-button:hover { background: rgba(255,255,255,.14); border-color: #fff; }
.nis2-offer-card ul { padding-bottom: 34px; }
.nis2-claim h2 { max-width: 1230px; }
@media (max-width: 1199px) {
  .nis2-intro-grid { grid-template-columns: 1fr; gap: 26px; }
  .nis2-intro-grid > p:last-child { max-width: 760px; }
  .nis2-offer-grid { grid-template-columns: 1fr; }
}
@media (max-width: 767px) {
  .nis2-intro, .nis2-offers { padding: 84px 0; }
  .nis2-intro-grid, .nis2-offers-head, .nis2-offer-grid { width: calc(100vw - 44px); }
  .nis2-intro-grid h2, .nis2-offers-head h2 { font-size: 35px; line-height: 1.18; }
  .nis2-intro-grid > p:last-child, .nis2-offer-card p { font-size: 17px; }
  .nis2-card h2 { min-height: auto; }
  .nis2-card::after { bottom: 205px; width: 86px; height: 86px; }
  .nis2-offer-card { min-height: 0; padding: 34px 26px; }
  .nis2-offer-card h3 { font-size: 30px; }
}


/* Gesundheitswesen detail pages */
.industrie-service-card-link {
  display: block;
  color: inherit;
  text-decoration: none;
}
.industrie-service-card-link .industrie-service-card {
  height: 100%;
}
.industrie-service-card-link:focus-visible {
  outline: 2px solid var(--pec-green);
  outline-offset: 8px;
}
.gesundheitswesen-cards-grid-two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: min(980px, calc(100vw - 72px));
}
.healthcare-detail-page .industry-detail-hero .industrie-hero-bg {
  background-image: linear-gradient(90deg, rgba(3, 14, 18, .84) 0%, rgba(4, 35, 44, .54) 48%, rgba(0, 0, 0, .76) 100%), url('assets/headback.jpg');
}
.healthcare-source-note .healthcare-partner-logo {
  display: block;
  width: min(240px, 70vw);
  max-height: 74px;
  object-fit: contain;
  object-position: left center;
  margin: 0 0 32px;
  padding: 18px 22px;
  background: rgba(255,255,255,.92);
}
.cyber-resilience-nis2-detail-page .industry-partner-inner .partner-cooperation-label {
  margin: 0;
  color: var(--pec-green);
  font-size: 13px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.cyber-resilience-nis2-detail-page .healthcare-partner-logo {
  width: min(220px, 60vw);
  max-height: none;
  margin: 22px 0 38px;
  padding: 0;
  background: transparent;
}
.cyber-resilience-nis2-detail-page .industry-partner-inner .partner-cooperation-title {
  margin-top: 0;
  color: #fff;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.18;
  font-weight: 400;
  letter-spacing: -.025em;
}
@media (max-width: 980px) {
  .gesundheitswesen-cards-grid-two { max-width: calc(100vw - 48px); }
}
@media (max-width: 767px) {
  .industrie-service-card-link { flex: 0 0 82vw; scroll-snap-align: start; }
  .industrie-service-card-link .industrie-service-card { flex: none; }
}

/* Betriebskosten-Schnellrechner Funnel */
.pec-funnel { --pf-ink: #06262a; --pf-dark: #082e33; --pf-teal: #00a19a; --pf-accent: #36c9b8; --pf-signal: #e6a93c; --pf-surface: #eef4f2; --pf-surface-2: #e3ece9; --pf-line: #d6e2de; background: var(--pf-surface); color: var(--pf-ink); font-family: inherit; }
.pec-funnel * { box-sizing: border-box; }
.pec-funnel-wrap { width: min(1180px, calc(100vw - 56px)); margin: 0 auto; }
.pec-funnel-hero { position: relative; overflow: hidden; padding: 92px 0 106px; color: #eaf4f1; background: radial-gradient(1050px 560px at 78% -8%, rgba(54,201,184,.18), transparent 60%), linear-gradient(168deg, #082e33 0%, #06262a 58%, #041c20 100%); }
.pec-funnel-hero::before { content: ''; position: absolute; inset: 0; opacity: .42; background-image: linear-gradient(rgba(214,240,236,.14) 1px, transparent 1px), linear-gradient(90deg, rgba(214,240,236,.14) 1px, transparent 1px); background-size: 54px 54px; -webkit-mask-image: radial-gradient(900px 500px at 30% 28%, #000 0%, transparent 76%); mask-image: radial-gradient(900px 500px at 30% 28%, #000 0%, transparent 76%); }
.pec-funnel-grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1.04fr) minmax(390px, .96fr); gap: 56px; align-items: center; }
.pec-funnel-kicker, .pec-funnel-section-kicker { margin: 0 0 22px; color: var(--pf-accent); font-size: 12px; line-height: 1.3; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.pec-funnel-kicker { display: inline-flex; align-items: center; gap: 10px; }
.pec-funnel-kicker span { width: 7px; height: 7px; border-radius: 50%; background: var(--pf-signal); box-shadow: 0 0 0 4px rgba(230,169,60,.18); }
.pec-funnel-copy h1, .pec-funnel-copy h2, .pec-funnel-why h2, .pec-funnel-briefing h2, .pec-funnel-faq h2 { margin: 0; font-weight: 400; letter-spacing: -.035em; }
.pec-funnel-copy h1, .pec-funnel-copy h2 { max-width: 650px; color: #fff; font-size: clamp(40px, 4.2vw, 68px); line-height: 1.05; }
.pec-funnel-copy h1 em, .pec-funnel-copy h2 em { color: var(--pf-accent); font-style: normal; }
.pec-funnel-lead { max-width: 620px; margin: 26px 0 0; color: rgba(234,244,241,.72); font-size: 20px; line-height: 1.55; }
.pec-funnel-pressure { display: flex; gap: 32px; margin-top: 34px; padding-top: 26px; border-top: 1px solid rgba(214,240,236,.14); }
.pec-funnel-pressure article { max-width: 245px; }
.pec-funnel-pressure :is(strong, .semantic-emphasis) { display: block; color: var(--pf-signal); font-size: 34px; line-height: 1; font-weight: 700; letter-spacing: -.03em; }
.pec-funnel-pressure span { display: block; margin-top: 10px; color: rgba(234,244,241,.72); font-size: 15px; line-height: 1.45; }
.pec-funnel-pressure small { display: block; margin-top: 8px; color: rgba(234,244,241,.42); font-size: 11px; letter-spacing: .06em; text-transform: uppercase; }
.pec-calc { padding: 30px 30px 28px; border: 1px solid rgba(214,240,236,.16); border-radius: 18px; background: linear-gradient(180deg, rgba(15,71,80,.94), rgba(8,42,47,.98)); box-shadow: 0 30px 80px -32px rgba(0,0,0,.68), inset 0 1px 0 rgba(255,255,255,.05); }
.pec-calc-head { display: flex; justify-content: space-between; align-items: baseline; gap: 18px; }
.pec-calc-head h3 { margin: 0; color: #fff; font-size: 22px; line-height: 1.15; font-weight: 500; letter-spacing: -.02em; }
.pec-calc-head span { color: var(--pf-accent); font-size: 11px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.pec-calc-note { margin: 9px 0 22px; color: rgba(234,244,241,.62); font-size: 14px; line-height: 1.5; }
.pec-calc-field { margin-bottom: 15px; }
.pec-calc-field div { display: flex; justify-content: space-between; gap: 16px; margin-bottom: 8px; color: #eaf4f1; font-size: 14px; }
.pec-calc-field output { color: var(--pf-accent); font-weight: 700; white-space: nowrap; }
.pec-calc-field input[type=range] { width: 100%; height: 4px; border-radius: 3px; accent-color: var(--pf-accent); cursor: pointer; }
.pec-calc-readout { margin-top: 21px; padding-top: 21px; border-top: 1px dashed rgba(214,240,236,.18); }
.pec-calc-readout p { margin: 0 0 8px; color: rgba(234,244,241,.62); font-size: 11px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.pec-calc-readout :is(strong, .semantic-emphasis) { display: block; color: var(--pf-accent); font-size: 36px; line-height: 1.05; font-weight: 700; letter-spacing: -.035em; }
.pec-calc-readout span, .pec-calc-readout small { display: block; margin-top: 7px; color: rgba(234,244,241,.66); font-size: 14px; line-height: 1.45; }
.pec-calc-gauge { position: relative; height: 8px; margin: 18px 0 6px; border-radius: 999px; background: rgba(255,255,255,.09); overflow: visible; }
.pec-calc-gauge i { position: absolute; inset: 0 auto 0 0; width: 0; border-radius: inherit; background: linear-gradient(90deg, #1e9e8f, var(--pf-accent)); transition: width .45s ease; }
.pec-calc-gauge :is(b, .pec-gauge-marker) { position: absolute; top: -4px; left: 0; width: 2px; height: 16px; background: #fff; transition: left .45s ease; }
.pec-funnel-button, .pec-funnel-final-cta a { display: inline-flex; align-items: center; justify-content: center; min-height: 52px; padding: 0 24px; border-radius: 999px; background: var(--pf-accent); color: var(--pf-ink); font-weight: 800; text-decoration: none; }
.pec-funnel-button { width: 100%; margin-top: 22px; }
.pec-funnel-why, .pec-funnel-briefing, .pec-funnel-faq { padding: 90px 0; }
.pec-funnel-why { background: var(--pf-surface); }
.pec-funnel-why h2, .pec-funnel-briefing h2, .pec-funnel-faq h2 { max-width: 780px; color: var(--pf-ink); font-size: clamp(34px, 3.4vw, 52px); line-height: 1.12; }
.pec-funnel-section-lead { max-width: 720px; margin: 18px 0 0; color: #4e6b6c; font-size: 20px; line-height: 1.55; }
.pec-funnel-cards { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; margin-top: 48px; }
.pec-funnel-cards article, .pec-lead-form { background: #fff; border: 1px solid var(--pf-line); border-radius: 16px; box-shadow: 0 24px 54px -42px rgba(8,46,51,.42); }
.pec-funnel-cards article { padding: 30px 26px; }
.pec-funnel-cards span { display: block; color: #1e9e8f; font-size: 12px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.pec-funnel-cards :is(strong, .semantic-emphasis) { display: block; margin-top: 18px; color: var(--pf-ink); font-size: 30px; line-height: 1; font-weight: 700; letter-spacing: -.03em; }
.pec-funnel-cards h3 { margin: 17px 0 12px; color: var(--pf-ink); font-size: 22px; line-height: 1.2; font-weight: 500; }
.pec-funnel-cards p { margin: 0; color: #4e6b6c; font-size: 16px; line-height: 1.58; }
.pec-funnel-briefing { background: linear-gradient(180deg, var(--pf-surface-2), var(--pf-surface)); border-top: 1px solid var(--pf-line); }
.pec-funnel-briefing-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(360px, 480px); gap: 58px; align-items: center; }
.pec-brief-points { list-style: none; margin: 30px 0 0; padding: 0; }
.pec-brief-points li { position: relative; margin: 0 0 15px; padding-left: 34px; color: var(--pf-ink); font-size: 17px; line-height: 1.5; }
.pec-brief-points li::before { content: '✓'; position: absolute; left: 0; top: .1em; display: grid; place-items: center; width: 22px; height: 22px; border-radius: 50%; background: rgba(30,158,143,.13); color: #1e9e8f; font-size: 12px; font-weight: 900; }
.pec-docmock { display: inline-flex; align-items: center; gap: 14px; margin-top: 28px; padding: 14px 18px; border: 1px solid var(--pf-line); border-radius: 10px; background: #fff; color: #4e6b6c; font-size: 15px; }
.pec-docmock span { padding: 6px 8px; border-radius: 4px; background: var(--pf-ink); color: var(--pf-accent); font-size: 11px; font-weight: 800; letter-spacing: .1em; }
.pec-lead-form { padding: 34px 32px; }
.pec-lead-form h2, .pec-lead-form h3 {
  margin: 0 0 7px;
  color: var(--pf-ink);
  font-size: 30px;
  line-height: 36px;
  font-weight: 400;
  letter-spacing: 0;
}
.pec-lead-form p { margin: 0 0 24px; color: #4e6b6c; font-size: 15px; }
.pec-lead-form label { display: block; margin-bottom: 16px; color: var(--pf-ink); font-size: 13px; font-weight: 700; }
.pec-lead-form input, .pec-lead-form select { display: block; width: 100%; margin-top: 7px; padding: 12px 13px; border: 1px solid var(--pf-line); border-radius: 8px; background: var(--pf-surface); color: var(--pf-ink); font: inherit; font-size: 15px; }
.pec-lead-form button { width: 100%; margin-top: 6px; padding: 15px 18px; border: 0; border-radius: 9px; background: var(--pf-ink); color: var(--pf-accent); font: inherit; font-weight: 800; cursor: pointer; }
.pec-lead-form small { display: block; margin-top: 14px; color: #6a7f80; font-size: 12px; line-height: 1.45; }
.pec-form-done { display: none; margin-top: 16px; padding: 16px; border-radius: 10px; background: rgba(30,158,143,.13); color: var(--pf-ink); font-weight: 700; }
.pec-form-done.is-visible { display: block; }
.pec-funnel-faq { background: var(--pf-surface); }
.pec-funnel-faq details { border-top: 1px solid var(--pf-line); }
.pec-funnel-faq details:last-of-type { border-bottom: 1px solid var(--pf-line); }
.pec-funnel-faq summary { display: flex; justify-content: space-between; gap: 20px; padding: 24px 4px; color: var(--pf-ink); font-size: 20px; line-height: 1.3; font-weight: 500; cursor: pointer; }
.pec-funnel-faq summary::after { content: '+'; color: #1e9e8f; font-weight: 400; }
.pec-funnel-faq details[open] summary::after { transform: rotate(45deg); }
.pec-funnel-faq details p { margin: -6px 4px 24px; max-width: 780px; color: #4e6b6c; font-size: 17px; line-height: 1.6; }
.pec-funnel-final-cta { margin-top: 54px; padding: 48px; border-radius: 20px; background: radial-gradient(800px 360px at 50% 120%, rgba(54,201,184,.20), transparent 62%), linear-gradient(160deg, #0b3a40, var(--pf-ink)); color: #eaf4f1; text-align: center; }
.pec-funnel-final-cta h2, .pec-funnel-final-cta h3 { max-width: 760px; margin: 0 auto; color: #fff; font-size: clamp(30px, 3vw, 46px); line-height: 1.1; font-weight: 400; letter-spacing: -.035em; }
.pec-funnel-final-cta p { max-width: 560px; margin: 18px auto 30px; color: rgba(234,244,241,.68); font-size: 18px; line-height: 1.55; }
.pec-funnel-final-cta a { min-width: 260px; }
@media (max-width: 1180px) {
  .header-inner { gap: 24px; }
  .nav-link { padding-left: 10px; padding-right: 10px; font-size: 13px; letter-spacing: .35px; }
  .pec-funnel-grid, .pec-funnel-briefing-grid { grid-template-columns: 1fr; }
  .pec-calc, .pec-lead-form { max-width: 620px; }
}
@media (max-width: 767px) {
  .pec-funnel-wrap { width: calc(100vw - 44px); }
  .pec-funnel-hero, .pec-funnel-why, .pec-funnel-briefing, .pec-funnel-faq { padding: 68px 0; }
  .pec-funnel-grid { gap: 34px; }
  .pec-funnel-copy h1, .pec-funnel-copy h2 { font-size: 39px; line-height: 1.08; }
  .pec-funnel-lead, .pec-funnel-section-lead { font-size: 17px; }
  .pec-funnel-pressure { flex-direction: column; gap: 22px; }
  .pec-calc { padding: 24px 20px; }
  .pec-calc-readout :is(strong, .semantic-emphasis) { font-size: 30px; }
  .pec-funnel-cards { grid-template-columns: 1fr; }
  .pec-funnel-why h2, .pec-funnel-briefing h2, .pec-funnel-faq h2 { font-size: 34px; line-height: 1.15; }
  .pec-lead-form { padding: 28px 22px; }
  .pec-funnel-final-cta { padding: 36px 22px; }
  .pec-funnel-final-cta a { width: 100%; min-width: 0; }
}

/* Healthcare process page: compact decision/work section matching source layout */
.healthcare-decision-work {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: #020b0e;
  color: #fff;
  padding: 106px 0 96px;
}
.healthcare-decision-work::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(90deg, rgba(0,0,0,.82), rgba(4,35,44,.38) 46%, rgba(0,0,0,.78)),
    url('assets/headback.jpg');
  background-size: cover;
  background-position: center 43%;
  filter: saturate(.9) contrast(1.08) brightness(.56);
  transform: scale(1.04);
}
.healthcare-decision-work::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse at 18% 18%, rgba(0,161,154,.18), transparent 42%),
    linear-gradient(180deg, rgba(2,11,14,.08), rgba(2,11,14,.58));
  pointer-events: none;
}
.healthcare-decision-work-inner {
  width: min(1488px, calc(100vw - 88px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(64px, 9vw, 138px);
  align-items: start;
}
.healthcare-decision-panel {
  padding: 0 4px 0;
}
.healthcare-decision-panel h2 {
  margin: 0;
  padding: 0 0 23px;
  border-bottom: 1px solid rgba(255,255,255,.62);
  color: #fff;
  font-size: clamp(28px, 2.2vw, 39px);
  line-height: 1.12;
  font-weight: 700;
  letter-spacing: -.025em;
}
.healthcare-decision-panel ul {
  margin: 20px 0 0;
  padding: 0 0 24px 18px;
  border-bottom: 1px solid rgba(255,255,255,.62);
  color: rgba(255,255,255,.92);
  font-size: clamp(15px, 1.1vw, 18px);
  line-height: 1.58;
}
.healthcare-decision-panel li {
  margin: 0 0 4px;
  padding-left: 2px;
}
.healthcare-decision-panel li::marker {
  color: #fff;
  font-size: .85em;
}
@media (max-width: 900px) {
  .healthcare-decision-work { padding: 78px 0 72px; }
  .healthcare-decision-work-inner {
    width: calc(100vw - 44px);
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

/* Match Industrie Strategy offer buttons on healthcare detail offer cards */
.healthcare-detail-page .industry-offers .offer-booking-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin-top: 34px;
  padding: 0 28px;
  border: 1px solid rgba(255,255,255,.82);
  border-radius: 999px;
  color: #fff;
  background: transparent;
  text-decoration: none;
  font-size: 13px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.healthcare-detail-page .industry-offers .offer-booking-button:hover {
  background: rgba(255,255,255,.14);
  border-color: #fff;
}

/* Healthcare process page: align offer CTAs */
.healthcare-detail-page.prozesse-ablaeufe-im-versorgungsalltag-detail-page .industry-offer-card {
  display: flex;
  flex-direction: column;
}
.healthcare-detail-page.prozesse-ablaeufe-im-versorgungsalltag-detail-page .industry-offer-columns {
  padding-bottom: 34px;
}
.healthcare-detail-page.prozesse-ablaeufe-im-versorgungsalltag-detail-page .industry-offers .offer-booking-button {
  margin-top: auto;
  align-self: flex-start;
}

/* Funnel CI refinement: PEC visual language, square UI surfaces, rounded buttons only */
.pec-funnel {
  --pf-ink: var(--pec-night);
  --pf-dark: var(--pec-night);
  --pf-teal: var(--pec-green);
  --pf-accent: #2fcfc3;
  --pf-signal: var(--pec-green);
  --pf-surface: #edf4f2;
  --pf-surface-2: #e5eeeb;
  --pf-line: rgba(4,35,44,.14);
}
.pec-funnel-wrap { width: min(1488px, calc(100vw - 88px)); }
.pec-funnel-hero {
  padding: 112px 0 126px;
  background: var(--pec-dark);
}
.pec-funnel-hero::before {
  opacity: 0;
  background: none;
}
.pec-funnel-grid { grid-template-columns: minmax(0, 1.05fr) minmax(420px, .85fr); gap: clamp(58px, 7vw, 112px); }
.pec-funnel-kicker,
.pec-funnel-section-kicker {
  margin: 0 0 44px;
  color: #00a19a;
  font-size: 14px;
  line-height: 17px;
  font-weight: 600;
  letter-spacing: .01em;
  text-transform: uppercase;
}
.pec-funnel-kicker { display: block; }
.pec-funnel-kicker span { display: none; }
.pec-funnel-copy h1, .pec-funnel-copy h2 {
  max-width: 986px;
  color: #fff;
  font-size: clamp(52px, 5.625vw, 72px);
  line-height: 1.0667;
  font-weight: 400;
  letter-spacing: .002em;
}
.pec-funnel-copy h1 em, .pec-funnel-copy h2 em { color: var(--pec-green); font-style: normal; }
.pec-funnel-lead { max-width: 484px; color: #fff; font-size: clamp(20px, 1.875vw, 24px); line-height: 1.2; font-weight: 400; }
.pec-funnel-pressure { border-top-color: rgba(255,255,255,.28); gap: clamp(34px, 5vw, 84px); }
.pec-funnel-pressure article { max-width: 310px; }
.pec-funnel-pressure :is(strong, .semantic-emphasis) { color: var(--pec-green); font-size: clamp(34px, 2.6vw, 52px); }
.pec-calc {
  padding: 38px 38px 34px;
  border: 1px solid rgba(255,255,255,.20);
  border-radius: 0;
  background: #04232c;
  box-shadow: none;
}
.pec-calc-head { align-items: flex-start; }
.pec-calc-head h2, .pec-calc-head h3 {
  margin: 0;
  color: #fff;
  font-size: 30px;
  line-height: 36px;
  font-weight: 400;
  letter-spacing: 0;
}
.pec-calc-head span,
.pec-calc-field output,
.pec-calc-readout :is(strong, .semantic-emphasis) { color: var(--pec-green); }
.pec-calc-note,
.pec-calc-readout span,
.pec-calc-readout small { color: rgba(234,244,241,.68); }
.pec-calc-field div { color: rgba(255,255,255,.86); }
.pec-calc-field input[type=range] {
  height: 2px;
  border-radius: 0;
  accent-color: var(--pec-green);
}
.pec-calc-field input[type=range]::-webkit-slider-thumb { border-radius: 0; }
.pec-calc-field input[type=range]::-moz-range-thumb { border-radius: 0; }
.pec-calc-readout {
  border-top: 1px solid rgba(255,255,255,.18);
}
.pec-calc-gauge, .pec-calc-gauge i { border-radius: 0; }
.pec-calc-gauge { height: 6px; background: rgba(255,255,255,.14); }
.pec-calc-gauge :is(b, .pec-gauge-marker) { background: #fff; }
.pec-funnel-button, .pec-funnel-final-cta a, .pec-lead-form button { border-radius: 999px; }
.pec-funnel-why, .pec-funnel-briefing, .pec-funnel-faq { padding: 112px 0; }
.pec-funnel-faq { padding-bottom: 0; }
.pec-funnel-why h2, .pec-funnel-briefing h2, .pec-funnel-faq h2 {
  max-width: 960px;
  font-size: clamp(38px, 3.3vw, 60px);
  line-height: 1.2;
  font-weight: 400;
  letter-spacing: 0;
}
.pec-funnel-faq h2 { width: 100%; max-width: none; margin-bottom: 56px; }
.pec-funnel-cards { gap: 28px; }
.pec-funnel-cards article, .pec-lead-form {
  border-radius: 0;
  border-color: rgba(4,35,44,.14);
  box-shadow: none;
}
.pec-funnel-cards article { padding: 38px 32px; }
.pec-funnel-cards span { color: var(--pec-green); }
.pec-funnel-cards :is(strong, .semantic-emphasis) { color: var(--pec-night); font-size: 34px; }
.pec-funnel-briefing { background: var(--pf-surface-2); }
.pec-funnel-outcomes {
  padding: 112px 0;
  background: var(--pec-dark);
  color: rgba(234,244,241,.72);
}
.pec-funnel-outcomes .pec-funnel-wrap { max-width: 1180px; }
.pec-funnel-outcomes .pec-funnel-section-kicker {
  margin-bottom: 44px;
  color: #00a19a;
  opacity: 1;
  font-size: 14px;
  line-height: 17px;
  font-weight: 600;
  letter-spacing: .01em;
}
.pec-funnel-outcomes h2 {
  max-width: 986px;
  margin: 0;
  color: #fff;
  font-size: clamp(38px, 3.3vw, 60px);
  line-height: 1.2;
  font-weight: 400;
  letter-spacing: 0;
}
.pec-funnel-outcomes .pec-funnel-section-lead {
  max-width: 760px;
  margin-top: 24px;
  color: rgba(234,244,241,.68);
  font-size: 17px;
  line-height: 1.6;
}
.pec-outcome-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 54px;
}
.pec-outcome-cards article {
  min-height: 230px;
  padding: 32px 28px 30px;
  border: 1px solid rgba(234,244,241,.13);
  background: rgba(5,58,58,.34);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.03);
}
.pec-outcome-cards span,
.pec-outcome-footnotes span {
  display: block;
  color: var(--pec-green);
  font-size: 11px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.pec-outcome-cards :is(strong, .semantic-emphasis) {
  display: block;
  margin-top: 28px;
  color: #fff;
  font-size: clamp(30px, 2.1vw, 42px);
  line-height: 1;
  font-weight: 800;
  letter-spacing: -.055em;
}
.pec-outcome-cards h3 {
  margin: 14px 0 18px;
  color: var(--pec-green);
  font-size: 16px;
  line-height: 1.35;
  font-weight: 700;
}
.pec-outcome-cards p {
  margin: 0;
  color: rgba(234,244,241,.68);
  font-size: 15px;
  line-height: 1.55;
}
.pec-outcome-footnotes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px;
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid rgba(234,244,241,.13);
}
.pec-outcome-footnotes p {
  margin: 16px 0 0;
  color: rgba(234,244,241,.70);
  font-size: 14px;
  line-height: 1.6;
}
.pec-funnel-briefing-grid { grid-template-columns: minmax(0, .9fr) minmax(520px, 640px); align-items: stretch; }
.pec-lead-form { width: 100%; justify-self: stretch; }
.pec-brief-points li::before {
  width: 18px;
  height: 18px;
  border-radius: 0;
  background: var(--pec-green);
  color: var(--pec-night);
}
.pec-docmock, .pec-docmock span, .pec-lead-form input, .pec-lead-form select, .pec-form-done, .pec-funnel-final-cta { border-radius: 0; }
.pec-lead-form input, .pec-lead-form select { background: #edf4f2; }
.pec-form-done { border-left: 4px solid var(--pec-green); }
.pec-funnel-final-cta {
  width: 100vw;
  max-width: none;
  margin: 112px calc(50% - 50vw) 0;
  padding: clamp(64px, 7vw, 112px) max(28px, calc((100vw - 1488px) / 2));
  background: var(--pec-dark);
}
.pec-funnel-final-cta a {
  min-height: 48px;
  padding: 0 28px;
  border: 1px solid rgba(255,255,255,.82);
  background: transparent;
  color: #fff;
  font-size: 13px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  gap: 10px;
}
.pec-funnel-final-cta a:hover {
  background: rgba(255,255,255,.14);
  border-color: #fff;
}
.pec-funnel-button,
.pec-lead-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 48px;
  padding: 0 28px;
  border-radius: 999px;
  background: transparent;
  text-decoration: none;
  font-size: 13px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
  text-align: center;
  white-space: normal;
}
.pec-funnel-button {
  margin-top: 36px;
  border: 1px solid var(--pec-green);
  color: var(--pec-green);
}
.pec-funnel-button:hover {
  background: rgba(0,161,154,.12);
  border-color: var(--pec-green);
}
.pec-lead-form button {
  border: 1px solid rgba(4,35,44,.82);
  color: var(--pec-night);
}
.pec-lead-form button:hover {
  background: rgba(4,35,44,.06);
  border-color: var(--pec-night);
}
.pec-funnel-final-cta a span {
  display: block;
  margin-left: 0;
  margin-top: 0;
  color: var(--pec-green);
  font-size: 27px;
  line-height: 0;
  font-weight: 800;
  letter-spacing: 0;
}

/* Digitalisierung & KI funnel route */
.pec-digital-funnel .pec-funnel-why h2,
.pec-material-funnel .pec-funnel-why h2,
.pec-logistik-funnel .pec-funnel-why h2,
.pec-logistik-funnel .pec-funnel-outcomes h2,
.pec-nis2-funnel .pec-funnel-why h2,
.pec-nis2-funnel .pec-funnel-outcomes h2 {
  width: 100%;
  max-width: none;
}
.pec-calc-seg {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin: 0 0 18px;
  border: 1px solid rgba(214,240,236,.18);
}
.pec-calc-seg-three { grid-template-columns: repeat(3, minmax(0, 1fr)); margin: 0; }
.pec-calc-seg button {
  min-height: 38px;
  border: 0;
  border-right: 1px solid rgba(214,240,236,.18);
  background: transparent;
  color: rgba(234,244,241,.68);
  font: inherit;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}
.pec-calc-seg button:last-child { border-right: 0; }
.pec-calc-seg button.is-active { background: var(--pec-green); color: var(--pec-night); }
.pec-calc-field.is-hidden { display: none; }
.pec-calc-field small,
.pec-logistik-assume small {
  display: block;
  margin-top: 7px;
  color: rgba(234,244,241,.54);
  font-size: 12px;
  line-height: 1.35;
}
.pec-material-readout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.pec-material-readout > div { min-width: 0; }
.pec-material-readout .pec-material-gauge { grid-column: 1 / -1; }
.pec-material-readout .pec-material-gauge > span {
  display: block;
  margin: -2px 0 8px;
  color: rgba(234,244,241,.86);
  font-size: 15px;
  font-weight: 700;
}
.pec-material-funnel .pec-funnel-pressure article:nth-child(2) :is(strong, .semantic-emphasis) { color: #e6a93c; }
@media (max-width: 767px) {
  .funnel-teaser-section { padding: 72px 24px; }
  .funnel-teaser-section::before { right: calc(24px + 44vw); }
  .funnel-teaser-head { display: block; margin-bottom: 34px; }
  .funnel-teaser-head h2 { font-size: 42px; }
  .funnel-teaser-sliders { width: 100%; height: 136px; margin-top: 28px; }
  .funnel-teaser-sliders span { margin: 21px 0; }
  .funnel-teaser-grid { grid-template-columns: 1fr; }
  .funnel-teaser-card { min-height: 0; padding: 24px 20px; }
  .funnel-teaser-card :is(strong, .semantic-emphasis) { margin-top: 24px; }
  .pec-material-readout { grid-template-columns: 1fr; }
}
.pec-digital-funnel .pec-funnel-pressure article:nth-child(2) :is(strong, .semantic-emphasis),
.pec-nis2-funnel .pec-funnel-pressure article:nth-child(2) :is(strong, .semantic-emphasis) {
  color: #e6a93c;
  font-size: clamp(28px, 2.35vw, 42px);
  letter-spacing: -.035em;
}
.pec-nis2-funnel .pec-funnel-pressure article:nth-child(1) :is(strong, .semantic-emphasis) { color: #e06a5e; }
.pec-nis2-risk {
  grid-column: 1 / -1;
  padding-top: 12px;
  border-top: 1px solid rgba(214,240,236,.13);
  color: rgba(234,244,241,.74);
  font-size: 13px;
  line-height: 1.45;
}
.pec-nis2-funnel .pec-calc-gauge i { background: linear-gradient(90deg, #e06a5e, #e6a93c 55%, var(--pec-green)); }
.pec-readiness .pec-calc-note { margin-bottom: 18px; }
.pec-readiness .pec-select-field { margin-bottom: 18px; }
.pec-readiness .pec-select-field div { margin-bottom: 8px; }
.pec-readiness select {
  width: 100%;
  min-height: 42px;
  border: 1px solid rgba(214,240,236,.16);
  border-radius: 0;
  background: rgba(4,35,44,.72);
  color: rgba(234,244,241,.92);
  padding: 10px 12px;
  font-family: inherit;
  font-size: 14px;
  outline: none;
}
.pec-readiness select:focus { border-color: var(--pec-green); }
.pec-readiness select option { color: var(--pec-night); }
.pec-readiness-label {
  margin: 18px 0 10px;
  color: var(--pec-green);
  font-size: 12px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.pec-readiness-measures {
  max-height: 232px;
  overflow-y: auto;
  padding-right: 6px;
}
.pec-readiness-measures::-webkit-scrollbar { width: 6px; }
.pec-readiness-measures::-webkit-scrollbar-thumb { background: rgba(214,240,236,.18); }
.pec-readiness-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(214,240,236,.08);
}
.pec-readiness-row > span {
  color: rgba(234,244,241,.86);
  font-size: 13px;
  line-height: 1.3;
}
.pec-readiness-seg {
  display: inline-flex;
  flex: 0 0 auto;
  border: 1px solid rgba(214,240,236,.16);
}
.pec-readiness-seg button {
  min-width: 48px;
  min-height: 30px;
  border: 0;
  border-right: 1px solid rgba(214,240,236,.16);
  background: transparent;
  color: rgba(234,244,241,.68);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}
.pec-readiness-seg button:last-child { border-right: 0; }
.pec-readiness-seg button.is-active[data-value="ja"] { background: var(--pec-green); color: var(--pec-night); }
.pec-readiness-seg button.is-active[data-value="teils"] { background: #e6a93c; color: var(--pec-night); }
.pec-readiness-seg button.is-active[data-value="nein"] { background: #e06a5e; color: #2a0f0c; }
.pec-readiness-readout.is-low :is(strong, .semantic-emphasis) { color: #e06a5e; }
.pec-readiness-readout.is-mid :is(strong, .semantic-emphasis) { color: #e6a93c; }
.pec-readiness-readout.is-high :is(strong, .semantic-emphasis) { color: var(--pec-green); }
.pec-digital-funnel .pec-calc-gauge i { background: linear-gradient(90deg, #e06a5e, #e6a93c 55%, var(--pec-green)); }
@media (max-width: 767px) {
  .pec-readiness-row { align-items: flex-start; flex-direction: column; gap: 8px; }
  .pec-readiness-seg { width: 100%; }
  .pec-readiness-seg button { flex: 1; }
}
@media (max-width: 1180px) {
  .funnel-teaser-head { display: block; }
  .funnel-teaser-sliders { width: min(520px, 100%); margin-top: 32px; }
  .funnel-teaser-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .funnel-teaser-card { min-height: 230px; }
  .pec-funnel-wrap { width: calc(100vw - 56px); }
  .pec-funnel-grid { grid-template-columns: 1fr; }
  .pec-calc {
    width: 100%;
    max-width: 620px;
    justify-self: center;
  }
  .pec-outcome-cards,
  .pec-outcome-footnotes { grid-template-columns: 1fr; }
  .pec-outcome-cards article { min-height: 0; }
}
@media (max-width: 980px) {
  .pec-funnel-briefing-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .pec-funnel-briefing h2 {
    max-width: 440px;
  }
  .pec-lead-form {
    max-width: 640px;
    justify-self: start;
  }
}
@media (max-width: 767px) {
  .pec-funnel-wrap { width: calc(100vw - 44px); }
  .pec-funnel-hero, .pec-funnel-why, .pec-funnel-briefing, .pec-funnel-faq, .pec-funnel-outcomes { padding: 72px 0; }
  .pec-funnel-faq { padding-bottom: 0; }
  .pec-funnel-copy h1, .pec-funnel-copy h2 { font-size: 41px; line-height: 1.04; }
  .pec-calc { padding: 26px 20px; }
  .pec-funnel-button { min-height: 56px; padding: 12px 20px; line-height: 1.28; }
  .pec-funnel-final-cta { margin-top: 72px; }
}

/* Contact page imported from source contact route */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.contact-page .nav-link.is-current { color: var(--pec-white); }
.contact-page .primary-nav a[href="kontakt/"] { color: var(--pec-muted); }
.contact-stage {
  min-height: 100vh;
  padding-top: var(--header-h);
  background: var(--pec-night);
  color: #fff;
}
.contact-hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-height: 980px;
  padding: 112px 0 118px;
  background:
    radial-gradient(860px 520px at 78% 8%, rgba(0,161,154,.11), transparent 64%),
    radial-gradient(900px 620px at 18% 68%, rgba(0,161,154,.08), transparent 68%),
    var(--pec-night);
}
.contact-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(4,35,44,.96), rgba(4,35,44,.72) 48%, rgba(4,35,44,.94)),
    url("assets/headback.jpg");
  background-size: cover;
  background-position: center top;
  opacity: .42;
  filter: saturate(.75) brightness(.55) contrast(1.05);
  transform: scale(1.02);
}
.contact-canvas {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: .45;
  pointer-events: none;
}
.contact-inner {
  width: min(996px, calc(100vw - 88px));
  margin: 0 auto;
}
.contact-copy h1 {
  max-width: 920px;
  margin: 0;
  color: #fff;
  font-size: clamp(44px, 4vw, 64px);
  line-height: 1.12;
  font-weight: 400;
  letter-spacing: -.018em;
}
.contact-copy p {
  width: 100%;
  max-width: none;
  margin: 72px 0 90px;
  color: #fff;
  font-size: clamp(21px, 1.55vw, 26px);
  line-height: 1.18;
  font-weight: 400;
}
.contact-form {
  display: grid;
  gap: 18px;
  padding-bottom: 72px;
  border-bottom: 1px solid rgba(255,255,255,.28);
}
.contact-field-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.contact-form label,
.contact-form input,
.contact-form textarea {
  display: block;
  width: 100%;
}
.contact-form input,
.contact-form textarea {
  border: 1px solid rgba(255,255,255,.34);
  border-radius: 0;
  background: rgba(4,35,44,.42);
  color: #fff;
  font: inherit;
  font-size: 15px;
  line-height: 1.4;
  outline: none;
  transition: border-color .18s ease, background-color .18s ease;
}
.contact-form input {
  min-height: 54px;
  padding: 15px 20px;
}
.contact-form textarea {
  min-height: 220px;
  resize: vertical;
  padding: 18px 20px;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: #fff; opacity: .95; }
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(0,161,154,.9);
  background: rgba(4,35,44,.72);
}
.contact-consent {
  display: flex !important;
  align-items: center;
  gap: 14px;
  margin: 6px 0 12px;
  color: rgba(255,255,255,.94);
  font-size: 13px;
  line-height: 1.4;
}
.contact-consent input {
  width: 16px;
  height: 16px;
  min-height: 16px;
  padding: 0;
  flex: 0 0 16px;
  appearance: none;
  border: 1px solid rgba(255,255,255,.38);
  background: transparent;
}
.contact-consent input:checked {
  background-color: var(--pec-green);
  border-color: var(--pec-green);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%23ffffff' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round' d='M3.2 8.4 6.4 11.5 12.8 4.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 13px 13px;
}
.contact-consent a { color: var(--pec-green); text-decoration: none; }
.contact-consent a:hover { text-decoration: underline; }
.contact-submit {
  width: 100%;
  min-height: 43px;
  border: 0;
  border-radius: 2px;
  background: var(--pec-green);
  color: #fff;
  font-size: 13px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  cursor: default;
}
@media (max-width: 1180px) {
  .contact-copy h1 { font-size: 42px; line-height: 1.1; }
}
@media (max-width: 900px) {
  .contact-stage { padding-top: var(--header-h); }
  .contact-hero { padding: 78px 0 88px; min-height: 820px; }
  .contact-inner { width: calc(100vw - 44px); }
  .contact-copy p { margin: 42px 0 58px; font-size: 21px; line-height: 1.28; }
  .contact-field-row { grid-template-columns: 1fr; gap: 14px; }
  .contact-form { gap: 14px; padding-bottom: 52px; }
  .contact-form textarea { min-height: 170px; }
  .contact-consent { align-items: flex-start; }
}
@media (max-width: 540px) {
  .contact-copy h1 { font-size: 34px; line-height: 1.16; }
}


/* Legal pages imported from source */
.legal-stage {
  min-height: 100vh;
  padding-top: var(--header-h);
  background: var(--pec-night);
  color: #fff;
}
.legal-hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-height: 100vh;
  padding: 112px 0 122px;
  background:
    radial-gradient(900px 520px at 76% 0%, rgba(0,161,154,.11), transparent 64%),
    radial-gradient(980px 640px at 16% 38%, rgba(0,161,154,.075), transparent 68%),
    var(--pec-night);
}
.legal-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(4,35,44,.97), rgba(4,35,44,.78) 50%, rgba(4,35,44,.95)),
    url("assets/headback.jpg");
  background-size: cover;
  background-position: center top;
  opacity: .30;
  filter: saturate(.7) brightness(.52) contrast(1.08);
  transform: scale(1.02);
}
.legal-canvas {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: .38;
  pointer-events: none;
}
.legal-inner {
  width: min(996px, calc(100vw - 88px));
  margin: 0 auto;
}
.legal-inner h1 {
  margin: 0 0 72px;
  color: #fff;
  font-size: clamp(48px, 5vw, 82px);
  line-height: 1.02;
  font-weight: 400;
  letter-spacing: -.018em;
}
.legal-content {
  max-width: 900px;
  color: rgba(255,255,255,.88);
  font-size: 17px;
  line-height: 1.68;
  font-weight: 400;
}
.legal-content p { margin: 0 0 22px; }
.legal-content :is(strong, .semantic-emphasis) { color: #fff; font-weight: 700; }
.legal-content a { color: var(--pec-green); text-decoration: none; }
.legal-content a:hover { text-decoration: underline; }
.legal-content ul,
.legal-content ol {
  margin: -6px 0 24px 0;
  padding-left: 22px;
}
.legal-content li { margin: 0 0 8px; }
.legal-content li::marker { color: var(--pec-green); }
@media (max-width: 900px) {
  .legal-hero { padding: 78px 0 88px; }
  .legal-inner { width: calc(100vw - 44px); }
  .legal-inner h1 { margin-bottom: 44px; font-size: clamp(42px, 14vw, 62px); }
  .legal-content { max-width: none; font-size: 15.5px; line-height: 1.62; }
}

/* Perspektiven page: source-page content transferred into preview system */
.perspectives-page {
  background: #04232c;
  color: #fff;
}
.perspectives-page .site-header {
  background: #062f37;
}
.perspectives-page .primary-nav a[href="perspektiven/"] {
  color: rgba(255,255,255,.58);
}
.perspectives-stage {
  overflow: hidden;
  background: #052f37;
}
.perspectives-hero {
  position: relative;
  min-height: 752px;
  display: flex;
  align-items: center;
  background: #020909;
  isolation: isolate;
}
.perspectives-hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(0,0,0,.78) 0%, rgba(3,32,39,.46) 44%, rgba(0,0,0,.86) 100%),
    linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.62)),
    url('assets/headback.jpg') center center / cover no-repeat;
  transform: scale(1.02);
}
.perspectives-hero-inner {
  width: min(986px, calc(100vw - 224px));
  margin-left: clamp(48px, 11.1vw, 170px);
  padding-top: 34px;
}
.perspectives-kicker {
  margin: 0 0 42px;
  color: #00bbb0;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: .01em;
  text-transform: uppercase;
}
.perspectives-hero h1 {
  max-width: 760px;
  margin: 0 0 42px;
  color: #fff;
  font-size: clamp(54px, 5.2vw, 86px);
  line-height: 1.12;
  font-weight: 300;
  letter-spacing: -.045em;
}
.perspectives-hero-lead {
  max-width: 890px;
  margin: 0;
  color: rgba(255,255,255,.94);
  font-size: clamp(21px, 1.95vw, 32px);
  line-height: 1.18;
  font-weight: 400;
}
.perspectives-grid-section {
  background: #052f37;
  padding: 126px 0 126px;
}
.perspectives-grid {
  width: min(1188px, calc(100vw - 224px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 44px;
  row-gap: 180px;
}
.perspective-card {
  min-height: 520px;
  padding-bottom: 54px;
  border-bottom: 1px solid rgba(255,255,255,.82);
}
.perspective-card img {
  display: block;
  width: 100%;
  height: 264px;
  margin: 0 0 58px;
  object-fit: cover;
}
.perspective-card h2 {
  max-width: 560px;
  margin: 0 0 44px;
  color: #fff;
  font-size: clamp(34px, 3vw, 49px);
  line-height: 1.13;
  font-weight: 300;
  letter-spacing: -.035em;
}
.perspective-card p {
  max-width: 560px;
  margin: 0 0 18px;
  color: rgba(255,255,255,.96);
  font-size: 19px;
  line-height: 1.58;
  font-weight: 500;
}
.perspective-card p:last-child { margin-bottom: 0; }
.perspectives-values {
  position: relative;
  min-height: 590px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #06333b;
  isolation: isolate;
}
.perspectives-values-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(4,35,44,.50), rgba(4,35,44,.78)),
    linear-gradient(90deg, rgba(4,35,44,.70), rgba(4,35,44,.22), rgba(4,35,44,.70)),
    url('assets/perspektive-04.jpg') center center / cover no-repeat;
  opacity: .86;
}
.perspectives-values-inner {
  width: min(980px, calc(100vw - 72px));
  margin: 0 auto;
  padding: 84px 0 92px;
}
.perspectives-values h2 {
  margin: 0 0 24px;
  color: #fff;
  font-size: clamp(48px, 4.1vw, 72px);
  line-height: 1.08;
  font-weight: 300;
  letter-spacing: -.04em;
}
.values-subline {
  margin: 0 0 22px;
  color: rgba(255,255,255,.96);
  font-size: clamp(24px, 2.2vw, 37px);
  line-height: 1.24;
  font-weight: 300;
}
.perspectives-values ul {
  list-style: none;
  margin: 0 auto 28px;
  padding: 0;
  display: grid;
  gap: 22px;
  justify-items: center;
}
.perspectives-values li {
  position: relative;
  padding-left: 34px;
  color: rgba(255,255,255,.96);
  font-size: clamp(20px, 1.7vw, 29px);
  line-height: 1.25;
  font-weight: 400;
}
.perspectives-values li::before {
  content: '+';
  position: absolute;
  left: 0;
  top: -.08em;
  color: #00b8b0;
  font-weight: 800;
}
.values-closing {
  margin: 28px 0 0;
  color: rgba(255,255,255,.93);
  font-size: clamp(17px, 1.5vw, 22px);
  line-height: 1.45;
}
.perspectives-page .site-footer { margin-top: 0; }

@media (max-width: 1100px) {
  .perspectives-hero { min-height: 680px; }
  .perspectives-hero-inner,
  .perspectives-grid {
    width: min(760px, calc(100vw - 72px));
    margin-left: auto;
    margin-right: auto;
  }
  .perspectives-grid {
    grid-template-columns: 1fr;
    row-gap: 72px;
  }
  .perspective-card { min-height: auto; }
}

@media (max-width: 640px) {
  .perspectives-hero {
    min-height: 620px;
    align-items: flex-end;
  }
  .perspectives-hero-inner {
    width: calc(100vw - 48px);
    padding: 120px 0 70px;
  }
  .perspectives-kicker { margin-bottom: 26px; font-size: 13px; }
  .perspectives-hero h1 { margin-bottom: 28px; font-size: 44px; }
  .perspectives-hero-lead { font-size: 18px; line-height: 1.35; }
  .perspectives-grid-section { padding: 70px 0 88px; }
  .perspectives-grid { width: calc(100vw - 48px); row-gap: 58px; }
  .perspective-card { padding-bottom: 40px; }
  .perspective-card img { height: 210px; margin-bottom: 34px; }
  .perspective-card h2 { margin-bottom: 26px; font-size: 32px; }
  .perspective-card p { font-size: 17px; line-height: 1.55; }
  .perspectives-values { min-height: 520px; }
  .perspectives-values-inner { width: calc(100vw - 48px); padding: 72px 0; }
  .perspectives-values h2 { font-size: 42px; }
  .values-subline { font-size: 23px; }
  .perspectives-values ul { align-items: start; justify-items: start; text-align: left; }
  .perspectives-values li { font-size: 19px; }
}

/* PEC article content pages */
.article-page {
  background: #020b0e;
  color: #fff;
}
.article-stage {
  background: #020b0e;
  overflow: hidden;
}
.article-hero {
  position: relative;
  min-height: 680px;
  display: flex;
  align-items: flex-end;
  isolation: isolate;
  background: #020b0e;
}
.article-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: linear-gradient(90deg, rgba(0,0,0,.92), rgba(4,35,44,.52) 48%, rgba(0,0,0,.84)), var(--article-hero-image);
  background-size: cover;
  background-position: center center;
  filter: saturate(.82) brightness(.64);
  transform: scale(1.0);
}
.article-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(ellipse at 18% 18%, rgba(0,161,154,.2), transparent 42%), linear-gradient(180deg, rgba(2,11,14,.05), #020b0e 100%);
}
.article-hero-inner {
  width: min(1200px, calc(100vw - 144px));
  margin: 0 auto;
  padding: 180px 0 108px;
}
.article-kicker {
  margin: 0 0 26px;
  color: var(--pec-green);
  font-size: 13px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.article-hero h1 {
  max-width: 960px;
  margin: 0 0 34px;
  color: #fff;
  font-size: clamp(48px, 6.1vw, 96px);
  line-height: .98;
  font-weight: 400;
  letter-spacing: -.055em;
}
.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  color: rgba(255,255,255,.75);
  font-size: 14px;
  line-height: 1.35;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.article-content-section {
  background: #04232c;
  padding: 112px 0 126px;
}
.article-content {
  width: min(920px, calc(100vw - 144px));
  margin: 0 auto;
}
.article-content h2 {
  margin: 72px 0 22px;
  color: #fff;
  font-size: clamp(31px, 3.1vw, 50px);
  line-height: 1.12;
  font-weight: 400;
  letter-spacing: -.04em;
}
.article-content h2:first-child { margin-top: 0; }
.article-content p,
.article-content li {
  color: rgba(255,255,255,.84);
  font-size: 20px;
  line-height: 1.72;
}
.article-content p {
  margin: 0 0 24px;
}
.article-content ul {
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}
.article-content li {
  position: relative;
  margin: 0 0 10px;
  padding-left: 26px;
}
.article-content li::before {
  content: '+';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--pec-green);
  font-weight: 800;
}
.article-author {
  margin-top: 82px;
  padding-top: 42px;
  border-top: 1px solid rgba(255,255,255,.16);
}
.article-author h2 { margin-top: 0; }

/* Legacy article author compact v1 */
.article-author {
  margin-top: 54px;
  padding-top: 28px;
}
.article-author h2 {
  font-size: clamp(24px, 2.2vw, 34px);
  margin-bottom: 10px;
}
.article-author p,
.article-author p :is(strong, .semantic-emphasis) {
  font-size: 16px;
  line-height: 1.55;
}
.article-author p {
  margin-bottom: 12px;
}

.article-cta-section {
  background: #00A19A;
  padding: 84px 0;
  text-align: center;
}
.article-cta-section h2 {
  width: min(880px, calc(100vw - 72px));
  margin: 0 auto 34px;
  color: #fff;
  font-size: clamp(34px, 4vw, 64px);
  line-height: 1.08;
  font-weight: 400;
  letter-spacing: -.045em;
}
.article-cta-section .hero-cta {
  margin: 0 auto;
  border-color: rgba(255,255,255,.76);
  color: #fff;
}
.article-page .site-footer { margin-top: 0; }

/* Portfolio study cleanup v4: centered hero image, no bottom image bleed */
.article-hero::after {
  background: radial-gradient(ellipse at 18% 18%, rgba(0,161,154,.2), transparent 42%), linear-gradient(180deg, rgba(2,11,14,.05) 0%, rgba(4,35,44,.78) 86%, #04232c 100%);
}
.portfolio-study-page .article-hero {
  margin-bottom: 0;
  border-bottom: 0;
  background: #04232c;
}
.portfolio-study-page .article-hero::after {
  background: radial-gradient(ellipse at 18% 18%, rgba(0,161,154,.2), transparent 42%), linear-gradient(180deg, rgba(4,35,44,.04) 0%, rgba(4,35,44,.82) 84%, #04232c 100%);
}
.portfolio-study-page .article-content-section {
  position: relative;
  z-index: 1;
  padding-top: 96px;
}


/* Whitepaper unlock/download flow v1 */
.sr-only {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.whitepaper-download {
  margin-top: 72px;
  padding-top: 48px;
  border-top: 1px solid rgba(255,255,255,.22);
}
.whitepaper-download h2 {
  margin-top: 0;
  margin-bottom: 34px;
}
.whitepaper-unlock-form {
  max-width: 390px;
}
.whitepaper-email-label,
.whitepaper-email-label input {
  display: block;
  width: 100%;
}
.whitepaper-email-label input {
  height: 48px;
  border: 1px solid rgba(255,255,255,.26);
  border-radius: 0;
  background: transparent;
  padding: 0 16px;
  color: #fff;
  font: inherit;
  font-size: 15px;
  outline: none;
}
.whitepaper-email-label input::placeholder { color: rgba(255,255,255,.92); }
.whitepaper-email-label input:focus { border-color: rgba(255,255,255,.78); }
.whitepaper-unlock-button,
.whitepaper-download-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 55px;
  border: 1.5px solid rgba(255,255,255,.92);
  border-radius: 999px;
  background: transparent;
  color: #fff;
  font: inherit;
  font-size: 15px;
  line-height: 1;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}
.whitepaper-unlock-button {
  min-width: 242px;
  margin-top: 26px;
  padding: 0 30px;
}
.whitepaper-download-button {
  width: 100%;
  min-width: min(100%, 530px);
  padding: 0 32px;
}
.whitepaper-unlock-button:hover,
.whitepaper-download-button:hover {
  border-color: var(--pec-green);
  color: var(--pec-green);
}
.whitepaper-download-ready { display: none; max-width: 560px; }
.whitepaper-download.is-unlocked .whitepaper-unlock-form { display: none; }
.whitepaper-download.is-unlocked .whitepaper-download-ready { display: block; }
.whitepaper-error {
  min-height: 1.4em;
  margin: 12px 0 0 !important;
  color: rgba(255,255,255,.78) !important;
  font-size: 14px !important;
  line-height: 1.4 !important;
}
.whitepaper-note {
  margin-top: 36px !important;
  color: rgba(255,255,255,.88) !important;
  font-size: 14px !important;
  line-height: 1.45 !important;
  font-style: italic;
}
@media (max-width: 900px) {
  .article-hero { min-height: 560px; }
  .article-hero-inner,
  .article-content { width: calc(100vw - 48px); }
  .article-hero-inner { padding: 140px 0 76px; }
  .article-content-section { padding: 78px 0 92px; }
  .article-content p,
  .article-content li { font-size: 18px; line-height: 1.64; }
}
@media (max-width: 640px) {
  .whitepaper-download { margin-top: 54px; padding-top: 38px; }
  .whitepaper-unlock-form,
  .whitepaper-download-ready,
  .whitepaper-unlock-button,
  .whitepaper-download-button { width: 100%; max-width: none; min-width: 0; }
  .whitepaper-download-button { padding-inline: 20px; }
}

/* Perspektiven source rebuild v2: section-by-section, source-measured proportions */
.perspectives-source-rebuild .perspectives-stage {
  background: #04232c;
}
.perspectives-source-rebuild .perspectives-hero {
  min-height: 749px;
  align-items: flex-start;
  background: #05232b;
}
.perspectives-source-rebuild .perspectives-hero-bg {
  background:
    linear-gradient(90deg, rgba(4,35,44,.98) 0%, rgba(4,35,44,.90) 62%, rgba(4,35,44,.96) 100%),
    url('assets/headback.jpg') center center / cover no-repeat;
  opacity: 1;
  transform: none;
}
.perspectives-source-rebuild .perspectives-hero-inner {
  width: min(808px, calc(100vw - 282px));
  margin-left: clamp(72px, 11.1vw, 141px);
  padding-top: 212px;
}
.perspectives-source-rebuild .perspectives-kicker {
  margin: 0 0 31px;
  color: #00a19a;
  font-size: 14px;
  line-height: 16.8px;
  font-weight: 600;
  letter-spacing: 0;
}
.perspectives-source-rebuild .perspectives-hero h1 {
  max-width: 808px;
  margin: 0 0 36px;
  font-size: clamp(54px, 5vw, 63.25px);
  line-height: 1.2;
  font-weight: 400;
  letter-spacing: -.022em;
}
.perspectives-source-rebuild .perspectives-hero-lead {
  max-width: 808px;
  margin: 0 0 37px;
  font-size: 24px;
  line-height: 28.8px;
  font-weight: 500;
  color: #fff;
}
.perspectives-source-rebuild .perspectives-source-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-width: 248px;
  height: 52px;
  padding: 0 29px;
  border: 2px solid rgba(255,255,255,.92);
  border-radius: 999px;
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  line-height: 1;
  font-weight: 500;
}
.perspectives-source-rebuild .perspectives-source-cta span {
  font-size: inherit;
  line-height: inherit;
  transform: none;
}
.perspectives-source-rebuild .perspectives-grid-section { display: none; }
.perspectives-source-rebuild .perspectives-card-section {
  background: #04232c;
  padding: 108px 0 72px;
}
.perspectives-source-rebuild .perspectives-card-section-second {
  padding-top: 36px;
  padding-bottom: 108px;
}
.perspectives-source-rebuild .perspectives-card-row {
  width: min(984px, calc(100vw - 282px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 474px));
  justify-content: space-between;
  gap: 36px;
}
.perspectives-source-rebuild .perspective-card {
  min-height: 0;
  padding-bottom: 54px;
  border-bottom: 1px solid rgba(255,255,255,.82);
}
.perspectives-source-rebuild .perspective-card img {
  width: 100%;
  height: 267px;
  margin: 0 0 55px;
  object-fit: cover;
}
.perspectives-source-rebuild .perspective-card h2 {
  max-width: 474px;
  margin: 0 0 53px;
  font-size: 35px;
  line-height: 42px;
  font-weight: 500;
  letter-spacing: -.018em;
}
.perspectives-source-rebuild .perspective-card p {
  max-width: 474px;
  margin: 0;
  font-size: 18px;
  line-height: 31.5px;
  font-weight: 400;
  color: #fff;
}
.perspectives-source-rebuild .perspectives-values {
  min-height: 598px;
  align-items: flex-start;
  background: #04232c;
}
.perspectives-source-rebuild .perspectives-values-bg { display: none; }
.perspectives-source-rebuild .perspectives-values-inner {
  width: min(984px, calc(100vw - 282px));
  padding: 108px 0 0;
  text-align: center;
}
.perspectives-source-rebuild .perspectives-values h2 {
  margin: 0 0 18px;
  font-size: 50px;
  line-height: 60px;
  font-weight: 500;
  letter-spacing: -.01em;
}
.perspectives-source-rebuild .values-subline {
  margin: 0 0 18px;
  font-size: 29px;
  line-height: 34.8px;
  font-weight: 500;
}
.perspectives-source-rebuild .perspectives-values ul { display: none; }
.perspectives-source-rebuild .values-list-source {
  max-width: 666px;
  margin: 0 auto 17px;
  color: #fff;
  font-size: 24px;
  line-height: 28.8px;
  font-weight: 500;
}
.perspectives-source-rebuild .values-closing {
  max-width: 984px;
  margin: 0;
  color: #fff;
  font-size: 18px;
  line-height: 31.5px;
  font-weight: 400;
}
.perspectives-source-rebuild .perspectives-final {
  min-height: 324px;
  display: flex;
  align-items: center;
  background: #04232c;
}
.perspectives-source-rebuild .perspectives-final-inner {
  width: min(984px, calc(100vw - 282px));
  margin: 0 auto;
}
.perspectives-source-rebuild .perspectives-final h2 {
  margin: 0;
  color: #fff;
  font-size: 50px;
  line-height: 60px;
  font-weight: 400;
  letter-spacing: -.02em;
}
@media (max-width: 1100px) {
  .perspectives-source-rebuild .perspectives-hero-inner,
  .perspectives-source-rebuild .perspectives-card-row,
  .perspectives-source-rebuild .perspectives-values-inner,
  .perspectives-source-rebuild .perspectives-final-inner {
    width: min(760px, calc(100vw - 72px));
    margin-left: auto;
    margin-right: auto;
  }
  .perspectives-source-rebuild .perspectives-card-row {
    grid-template-columns: 1fr;
    gap: 72px;
  }
  .perspectives-source-rebuild .perspectives-card-section,
  .perspectives-source-rebuild .perspectives-card-section-second { padding: 84px 0; }
  .perspectives-source-rebuild .perspective-card img { height: auto; aspect-ratio: 16/9; }
}
@media (max-width: 640px) {
  .perspectives-source-rebuild .perspectives-hero { min-height: auto; }
  .perspectives-source-rebuild .perspectives-hero-inner {
    width: calc(100vw - 48px);
    padding: 96px 0 72px;
  }
  .perspectives-source-rebuild .perspectives-hero h1 { font-size: 44px; line-height: 1.13; }
  .perspectives-source-rebuild .perspectives-hero-lead { font-size: 18px; line-height: 1.45; }
  .perspectives-source-rebuild .perspectives-card-row,
  .perspectives-source-rebuild .perspectives-values-inner,
  .perspectives-source-rebuild .perspectives-final-inner { width: calc(100vw - 48px); }
  .perspectives-source-rebuild .perspective-card h2 { font-size: 31px; line-height: 1.2; margin-bottom: 28px; }
  .perspectives-source-rebuild .perspective-card p { font-size: 17px; line-height: 1.58; }
  .perspectives-source-rebuild .perspectives-values h2,
  .perspectives-source-rebuild .perspectives-final h2 { font-size: 40px; line-height: 1.18; }
  .perspectives-source-rebuild .values-subline { font-size: 24px; line-height: 1.25; }
  .perspectives-source-rebuild .values-list-source { font-size: 20px; line-height: 1.35; }
}

/* Perspektiven adjustments v3 — Christian: hero like subpages, wider cards, black abbinder, plus values */
.perspectives-adjusted-v3 .perspectives-stage {
  padding-top: var(--header-h);
  background: #04232c;
}
.perspectives-adjusted-v3 .perspectives-hero {
  min-height: auto;
  background: #0c4f48;
  overflow: hidden;
}
.perspectives-adjusted-v3 .perspectives-hero-bg {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, rgba(3, 14, 18, .84) 0%, rgba(4, 35, 44, .54) 48%, rgba(0, 0, 0, .76) 100%), url('assets/headback.jpg');
  background-position: center 40%;
  background-size: cover;
  opacity: .92;
  transform: none;
}
.perspectives-adjusted-v3 .perspectives-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 120px;
  background: linear-gradient(0deg, rgba(0,0,0,.45), transparent);
  pointer-events: none;
}
.perspectives-adjusted-v3 .perspectives-hero-inner {
  position: relative;
  z-index: 1;
  width: min(1488px, calc(100vw - 72px));
  margin: 0 auto;
  min-height: auto;
  display: block;
  align-items: center;
  padding: 144px 0;
}
.perspectives-adjusted-v3 .perspectives-kicker {
  margin: 0 0 44px;
  color: #00a19a;
  font-size: 14px;
  line-height: 17px;
  font-weight: 600;
  letter-spacing: .01em;
  text-transform: uppercase;
}
.perspectives-adjusted-v3 .perspectives-hero-left h1,
.perspectives-adjusted-v3 .perspectives-hero h1 {
  margin: 0;
  max-width: 986px;
  color: #fff;
  font-size: clamp(54px, 5vw, 70px);
  line-height: 1.2;
  font-weight: 400;
  letter-spacing: -.035em;
}
.perspectives-adjusted-v3 .perspectives-hero-copy {
  max-width: 640px;
  margin-top: 38px;
}
.perspectives-adjusted-v3 .perspectives-hero-lead {
  max-width: 640px;
  margin: 0;
  color: #fff;
  font-size: 22px;
  line-height: 1.24;
  font-weight: 400;
  letter-spacing: -.025em;
}
.perspectives-adjusted-v3 .perspectives-source-cta {
  margin-top: 36px;
  gap: 12px;
  min-width: 0;
  min-height: 51.53px;
  height: auto;
  padding: 16px 39px;
  border-width: 1px;
}
.perspectives-adjusted-v3 .perspectives-card-section {
  background: #04232c;
  padding: 118px 0 82px;
}
.perspectives-adjusted-v3 .perspectives-card-section-second {
  padding-top: 48px;
  padding-bottom: 126px;
}
.perspectives-adjusted-v3 .perspectives-card-row {
  width: min(1488px, calc(100vw - 72px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 54px;
}
.perspectives-adjusted-v3 .perspective-card {
  padding-bottom: 58px;
  border-bottom: 1px solid rgba(255,255,255,.82);
}
.perspectives-adjusted-v3 .perspective-card img {
  width: 100%;
  height: 360px;
  margin: 0 0 56px;
  object-fit: cover;
}
.perspectives-adjusted-v3 .perspective-card h2 {
  max-width: 680px;
  margin: 0 0 44px;
  font-size: clamp(35px, 2.55vw, 42px);
  line-height: 1.18;
  font-weight: 500;
  letter-spacing: -.02em;
}
.perspectives-adjusted-v3 .perspective-card p {
  max-width: 680px;
  margin: 0;
  font-size: 18px;
  line-height: 31.5px;
  font-weight: 400;
  color: #fff;
}
.perspectives-adjusted-v3 .perspectives-values {
  min-height: 598px;
  position: relative;
  align-items: flex-start;
  background: #04232c;
  overflow: hidden;
}
.perspectives-adjusted-v3 .perspectives-values::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(4,35,44,.87), rgba(4,35,44,.9)), url('assets/headback.jpg') center 50% / cover no-repeat;
  opacity: .95;
}
.perspectives-adjusted-v3 .perspectives-values-inner {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100vw - 72px));
  padding: 72px 0 64px;
  margin: 0 auto;
  text-align: center;
}
.perspectives-adjusted-v3 .perspectives-values h2 {
  margin: 0 0 20px;
  font-size: clamp(44px, 4vw, 58px);
  line-height: 1.05;
  font-weight: 500;
  letter-spacing: -.01em;
}
.perspectives-adjusted-v3 .values-subline {
  margin: 0 0 20px;
  font-size: clamp(24px, 2.2vw, 31px);
  line-height: 1.2;
  font-weight: 700;
}
.perspectives-adjusted-v3 .perspectives-values ul.values-list-source {
  display: grid;
  gap: 24px;
  max-width: 860px;
  margin: 0 auto 25px;
  padding: 0;
  list-style: none;
  color: #fff;
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.2;
  font-weight: 500;
  text-align: left;
}
.perspectives-adjusted-v3 .values-list-source li {
  display: flex;
  align-items: baseline;
  justify-content: flex-start;
  gap: 16px;
}
.perspectives-adjusted-v3 .values-list-source li::before {
  content: "+";
  flex: 0 0 auto;
  color: #00a19a;
  font-size: 30px;
  line-height: 1;
  font-weight: 800;
  text-shadow: 0 0 14px rgba(0,161,154,.35);
}
.perspectives-adjusted-v3 .values-closing {
  max-width: 1180px;
  margin: 0 auto;
  color: #fff;
  font-size: 18px;
  line-height: 31.5px;
  font-weight: 400;
}
.perspectives-adjusted-v3 .perspectives-final {
  min-height: 264px;
  display: flex;
  align-items: center;
  background: #000;
}
.perspectives-adjusted-v3 .perspectives-final-inner {
  width: min(1488px, calc(100vw - 72px));
  margin: 0 auto;
  text-align: center;
}
.perspectives-adjusted-v3 .perspectives-final h2 {
  margin: 0;
  color: #fff;
  font-size: 50px;
  line-height: 1.2;
  font-weight: 400;
  letter-spacing: -.03em;
  overflow-wrap: break-word;
}
@media (max-width: 980px) {
  .perspectives-adjusted-v3 .perspectives-hero-inner {
    padding: 112px 0;
  }
  .perspectives-adjusted-v3 .perspectives-hero-lead { max-width: 720px; }
  .perspectives-adjusted-v3 .perspectives-card-row { grid-template-columns: 1fr; gap: 72px; width: min(760px, calc(100vw - 72px)); }
  .perspectives-adjusted-v3 .perspective-card img { height: auto; aspect-ratio: 16 / 9; }
}
@media (max-width: 540px) {
  .perspectives-adjusted-v3 .perspectives-hero-inner { width: calc(100vw - 48px); padding: 88px 0; gap: 30px; }
  .perspectives-adjusted-v3 .perspectives-kicker { margin-bottom: 28px; font-size: 13px; }
  .perspectives-adjusted-v3 .perspectives-hero-left h1,
  .perspectives-adjusted-v3 .perspectives-hero h1 { font-size: 44px; line-height: 1.18; }
  .perspectives-adjusted-v3 .perspectives-hero-lead { font-size: 20px; line-height: 1.28; }
  .perspectives-adjusted-v3 .perspectives-card-row,
  .perspectives-adjusted-v3 .perspectives-values-inner,
  .perspectives-adjusted-v3 .perspectives-final-inner { width: calc(100vw - 48px); }
  .perspectives-adjusted-v3 .perspectives-card-section { padding: 76px 0; }
  .perspectives-adjusted-v3 .perspective-card h2 { font-size: 31px; }
  .perspectives-adjusted-v3 .perspectives-values ul.values-list-source { font-size: 20px; text-align: left; gap: 18px; }
  .perspectives-adjusted-v3 .perspectives-final h2 { font-size: 40px; line-height: 1.18; }
}

/* Perspektiven adjustments v3b — match Unterseiten hero vertical rhythm */
.perspectives-adjusted-v3 .perspectives-hero-inner {
  min-height: 656px;
  align-items: start;
}
.perspectives-adjusted-v3 .perspectives-hero-copy {
  margin-top: 38px;
}
.perspectives-adjusted-v3 .perspectives-hero-lead {
  font-size: 18px;
  line-height: 1.45;
  letter-spacing: -.015em;
}

/* Appointment booked confirmation page */
.appointment-booked-page .appointment-booked-hero {
  min-height: calc(100vh - 96px);
  display: flex;
  align-items: flex-start;
  padding: clamp(52px, 5.5vw, 88px) 0 clamp(72px, 8vw, 120px);
}
.appointment-booked-inner {
  width: min(980px, calc(100vw - 88px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(26px, 4vw, 54px);
  align-items: stretch;
}
.appointment-confirmation-card,
.appointment-side-note {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.22);
  background: linear-gradient(135deg, rgba(255,255,255,.13), rgba(255,255,255,.045));
  box-shadow: 0 30px 90px rgba(0,0,0,.22);
  backdrop-filter: blur(16px);
}
.appointment-confirmation-card {
  padding: clamp(34px, 5vw, 68px);
}
.appointment-confirmation-card::after {
  content: '';
  position: absolute;
  right: -120px;
  top: -120px;
  width: 280px;
  height: 280px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(0,161,154,.48), rgba(0,161,154,0) 68%);
  pointer-events: none;
}
.appointment-status {
  width: 58px;
  height: 58px;
  margin-bottom: clamp(22px, 3vw, 34px);
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: #00A19A;
  box-shadow: 0 16px 36px rgba(0,161,154,.35);
}
.appointment-status span {
  width: 24px;
  height: 13px;
  border-left: 3px solid #fff;
  border-bottom: 3px solid #fff;
  transform: translateY(-2px) rotate(-45deg);
}
.appointment-booked-page .eyebrow {
  margin: 0 0 18px;
  color: rgba(255,255,255,.72);
  font-size: 13px;
  line-height: 1.2;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.appointment-booked-page h1,
.appointment-booked-page h2,
.appointment-booked-page p,
.appointment-booked-page :is(strong, .semantic-emphasis) { color: #fff; }
.appointment-booked-page h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(44px, 5.2vw, 82px);
  line-height: .98;
  font-weight: 400;
  letter-spacing: -.045em;
}
.appointment-booked-page .appointment-lead {
  max-width: 760px;
  margin: clamp(24px, 3vw, 36px) 0 0;
  font-size: clamp(20px, 1.55vw, 25px);
  line-height: 1.25;
}
.appointment-next-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: clamp(34px, 4vw, 52px);
  background: rgba(255,255,255,.16);
  border: 1px solid rgba(255,255,255,.16);
}
.appointment-next-steps article {
  min-height: 178px;
  padding: 24px 22px;
  background: rgba(4,35,44,.38);
}
.appointment-next-steps article > span {
  display: inline-block;
  margin-bottom: 22px;
  color: #00d7ce;
  font-size: 13px;
  letter-spacing: .12em;
}
.appointment-next-steps :is(strong, .semantic-emphasis) {
  display: block;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 600;
}
.appointment-next-steps p {
  margin: 12px 0 0;
  color: rgba(255,255,255,.76);
  font-size: 15px;
  line-height: 1.38;
}
.appointment-booked-page .appointment-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: clamp(34px, 4vw, 52px);
}
.appointment-back-link {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: #fff;
  font-size: 16px;
  line-height: 1.2;
  text-decoration: none;
  transition: color .2s, transform .2s;
}
.appointment-back-link :is(strong, .semantic-emphasis) {
  color: currentColor;
  font-size: 21px;
  line-height: 1;
  font-weight: 300;
}
.appointment-back-link:hover,
.appointment-back-link:focus-visible {
  color: #fff;
  transform: translateX(-3px);
}
.appointment-back-link:focus-visible {
  outline: 2px solid #00d7ce;
  outline-offset: 5px;
}
.appointment-side-note {
  align-self: end;
  padding: clamp(26px, 3vw, 42px);
}
.appointment-side-note h2 {
  margin: 0;
  font-size: clamp(30px, 3.2vw, 48px);
  line-height: 1.05;
  font-weight: 400;
  letter-spacing: -.032em;
}
.appointment-side-note p:not(.eyebrow) {
  margin: 22px 0 0;
  color: rgba(255,255,255,.78);
  font-size: 17px;
  line-height: 1.42;
}
@media (max-width: 980px) {
  .appointment-booked-inner {
    grid-template-columns: 1fr;
  }
  .appointment-next-steps {
    grid-template-columns: 1fr;
  }
  .appointment-next-steps article {
    min-height: 0;
  }
}
@media (max-width: 740px) {
  .appointment-booked-page .appointment-booked-hero {
    padding: 48px 0 88px;
  }
  .appointment-booked-inner {
    width: calc(100vw - 44px);
  }
  .appointment-booked-page h1 {
    font-size: clamp(42px, 13vw, 58px);
  }
  .appointment-booked-page .appointment-actions {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Appointment booked: same Meetergo success URL with in-page DE/EN switch */
.appointment-card-topline {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: clamp(22px, 3vw, 34px);
}
.appointment-card-topline .appointment-status { margin-bottom: 0; }
.appointment-language-toggle {
  display: inline-flex;
  align-items: center;
  padding: 4px;
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(4,35,44,.32);
  backdrop-filter: blur(10px);
}
.appointment-language-toggle button {
  appearance: none;
  border: 0;
  border-radius: 0;
  padding: 10px 14px;
  color: rgba(255,255,255,.68);
  background: transparent;
  font: inherit;
  font-size: 13px;
  line-height: 1;
  letter-spacing: .02em;
  cursor: pointer;
  transition: color .2s, background .2s;
}
.appointment-language-toggle button:hover,
.appointment-language-toggle button:focus-visible { color: #fff; }
.appointment-language-toggle button:focus-visible { outline: 2px solid #00d7ce; outline-offset: 2px; }
.appointment-language-toggle button.is-active {
  color: #04232c;
  background: #fff;
}
.appointment-language-panel {
  position: relative;
  z-index: 1;
}
.appointment-language-panel[hidden] { display: none !important; }
.appointment-confirmation-card > .appointment-language-panel.is-active {
  animation: appointmentLangIn .22s ease-out both;
}
@keyframes appointmentLangIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (max-width: 740px) {
  .appointment-card-topline {
    align-items: center;
  }
  .appointment-language-toggle {
    width: 100%;
    max-width: 260px;
    margin-left: auto;
  }
  .appointment-language-toggle button {
    flex: 1;
    padding: 11px 10px;
  }
}
@media (max-width: 520px) {
  .appointment-card-topline {
    flex-direction: column;
    align-items: flex-start;
  }
  .appointment-language-toggle {
    max-width: none;
    margin-left: 0;
  }
}

/* Mobile overview-card sliders: explicit controls without instructional copy */
.industrie-cards-controls { display: none; }
@media (max-width: 767px) {
  .industrie-service-cards .industrie-cards-grid {
    overscroll-behavior-x: contain;
    scrollbar-width: none;
  }
  .industrie-service-cards .industrie-cards-grid::-webkit-scrollbar { display: none; }
  .industrie-cards-controls {
    --card-scroll-progress: 0;
    width: calc(100vw - 48px);
    margin: 16px auto 0;
    display: flex;
    align-items: center;
    gap: 14px;
  }
  .industrie-cards-controls:not(.is-scrollable) { display: none; }
  .industrie-cards-controls + .industrie-cards-grid { margin-top: 56px; }
  .industrie-cards-control {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(0,161,154,.78);
    border-radius: 50%;
    color: #fff;
    background: rgba(0,161,154,.28);
    box-shadow: 0 10px 26px rgba(0,0,0,.28);
    cursor: pointer;
  }
  .industrie-cards-control span {
    display: block;
    transform: translateY(-1px);
    font-size: 29px;
    line-height: 1;
    font-weight: 300;
  }
  .industrie-cards-control:disabled { opacity: .24; cursor: default; }
  .industrie-cards-progress {
    position: relative;
    height: 3px;
    flex: 1;
    overflow: hidden;
    background: rgba(255,255,255,.2);
  }
  .industrie-cards-progress span {
    position: absolute;
    inset: 0;
    background: var(--pec-green);
    transform-origin: left center;
    transform: scaleX(calc(.16 + var(--card-scroll-progress) * .84));
    transition: transform .2s ease-out;
  }
}

/* Homepage mobile spacing + partner/NIS2 refinements 31 */
.realtime-partner-logo img { padding: 0; border-radius: 0; background: transparent; }
.nis2-card h2 { min-height: 0; margin-bottom: 24px; }
@media (min-width: 1200px) {
  .nis2-intro { padding: 84px 0 72px; }
  .nis2-intro-grid { grid-template-columns: minmax(0, 1fr) 430px; gap: 72px; }
  .nis2-intro-grid h2 { font-size: 42px; line-height: 1.15; }
}
.cyber-resilience-nis2-detail-page .industry-detail-blocks { padding-top: 96px; }
@media (max-width: 767px) {
  .cyber-resilience-nis2-detail-page .industry-detail-blocks { padding-top: 72px; }
}
@media (max-width: 760px) {
  .hero-inner { padding-top: 64px; }
  .hero-headline-wrap, .hero-copy-wrap { min-width: 0; width: 100%; }
  .hero-section h1 { width: 100%; hyphens: auto; overflow-wrap: normal; word-break: normal; }
  .presence-copy { min-height: 0; padding-bottom: 78px; }
  .presence-copy h2 { width: min(318px, calc(100vw - 72px)); margin-left: auto; margin-right: auto; }
  .presence-title-nowrap { white-space: normal; }
  .presence-profile-row { width: calc(100vw - 72px); grid-template-columns: 1fr; row-gap: 40px; text-align: center; }
  .presence-profile, .presence-text { width: 100%; }
  .presence-profile img { width: min(190px, 60vw); height: auto; aspect-ratio: 1; margin-left: auto; margin-right: auto; }
  .presence-profile figcaption { text-align: center; }
  .presence-text { text-align: left; }
  .presence-button { margin-left: auto; margin-right: auto; }
  .pec-group-section { min-height: 0; padding: 72px 36px 48px; }
  .pec-group-inner { height: auto; }
  .pec-group-visual { position: relative; left: auto; top: auto; width: 100%; height: clamp(300px, 72vw, 549px); margin-top: 72px; }
}

/* Homepage/tablet + mobile density corrections 37 */
@media (min-width: 761px) and (max-width: 960px) {
  .hero-section,
  .hero-inner { min-height: 760px; }
  .hero-inner {
    width: calc(100% - 72px);
    padding-top: 64px;
    grid-template-columns: 1fr;
    row-gap: 28px;
    align-content: start;
  }
  .hero-section h1 {
    max-width: 100%;
    font-size: 44px;
    line-height: 1.14;
  }
  .hero-copy-wrap {
    max-width: 560px;
    padding-top: 0;
  }
  .hero-copy-wrap p {
    max-width: 100%;
    font-size: 20px;
    line-height: 1.28;
  }
  .hero-cta { margin-top: 28px; }
}
@media (max-width: 767px) {
  .funnel-teaser-section::before { display: none; }
  .funnel-teaser-sliders { height: 88px; }
  .funnel-teaser-sliders span:nth-child(n + 4) { display: none; }
  .industrie-service-cards { padding-bottom: 32px; }
  .industrie-service-cards .industrie-cards-grid:not(:has(*)) { display: none; }
}

/* About mobile map + image-overlay cleanup 38 */
.industry-detail-intro-grid figure::after,
.industrie-service-card::after { display: none; }
@media (max-width: 540px) {
  .about-page-v2 .about-presence-map {
    width: calc(100vw - 48px);
    max-width: none;
    min-height: var(--about-map-w);
    margin: 0 auto;
  }
}
@media (max-width: 760px) {
  .about-page-v2 .special-card { top: auto; }
  .footer-bottom { padding-bottom: 36px; }
}

/* Homepage tablet layout corrections 40 */
@media (min-width: 761px) and (max-width: 1180px) {
  .presence-copy h2 {
    margin-left: auto;
    margin-right: auto;
  }
  .presence-profile-row {
    margin-left: auto;
    margin-right: auto;
  }
  .pec-group-section { min-height: 0; }
  .pec-group-inner { height: auto; }
  .pec-group-visual {
    position: relative;
    left: auto;
    top: auto;
    margin-top: 72px;
  }
  .presence-map { --presence-tablet-map-left: calc((100% - 768px) / 2); }
  .presence-map > img { left: var(--presence-tablet-map-left); }
  .presence-map .city-bremen { left: calc(var(--presence-tablet-map-left) + 289px); }
  .presence-map .city-wolfsburg { left: calc(var(--presence-tablet-map-left) + 380px); }
  .presence-map .city-duesseldorf { left: calc(var(--presence-tablet-map-left) + 193px); }
  .presence-map .city-stuttgart { left: calc(var(--presence-tablet-map-left) + 309px); }
  .presence-map .city-muenchen { left: calc(var(--presence-tablet-map-left) + 430px); }
  .presence-map .city-friedrichshafen { left: calc(var(--presence-tablet-map-left) + 322px); }
}
@media (max-width: 760px) {
  .presence-copy h2,
  .presence-text { text-align: center; }
  .presence-button {
    display: flex;
    margin-left: auto;
    margin-right: auto;
  }
  .about-page-v2 .about-v2-special { padding-bottom: 72px; }
  .about-page-v2 .brand-logos {
    top: auto;
    left: auto;
    width: min(520px, calc(100vw - 48px));
    margin: 60px auto 0;
  }
}

/* Perspektiven Abbinder — typography parity with homepage closing band */
.perspectives-adjusted-v3 .perspectives-final h2 {
  font-size: 60px;
  line-height: 72px;
}
@media (min-width: 1181px) and (max-width: 1919px) {
  .perspectives-adjusted-v3 .perspectives-final h2 {
    font-size: clamp(48px, 3.125vw, 60px);
    line-height: 1.2;
  }
}
@media (max-width: 1180px) {
  .perspectives-adjusted-v3 .perspectives-final h2 {
    font-size: 30.72px;
    line-height: 36.864px;
  }
}
@media (max-width: 760px) {
  .perspectives-adjusted-v3 .perspectives-final h2 {
    font-size: 30px;
    line-height: 36px;
  }
}


/* Presentational emphasis replacements used to avoid overusing semantic strong/b tags. */
.semantic-emphasis { font-weight: 700; }

/* Homepage accessibility: WCAG contrast, keyboard focus, skip navigation and touch targets. */
.pec-home-performance .skip-link {
  position: fixed;
  left: 18px;
  top: 12px;
  z-index: 100000;
  padding: 12px 18px;
  border: 2px solid #04232c;
  border-radius: 4px;
  background: #fff;
  color: #04232c;
  font-weight: 700;
  text-decoration: none;
  transform: translateY(-160%);
  transition: transform .15s ease;
}
.pec-home-performance .skip-link:focus { transform: translateY(0); }
.pec-home-performance #main-content:focus { outline: none; }
.pec-home-performance :is(a, button, input, select, textarea):focus-visible {
  outline: 3px solid #ffda79;
  outline-offset: 3px;
}
.pec-home-performance .pec-cookie-panel .pec-cookie-btn {
  background: #007a75;
  border-color: #007a75;
  color: #fff;
}
.pec-home-performance .transformation-inner { opacity: 1; }
.pec-home-performance .funnel-teaser-head p,
.pec-home-performance .funnel-teaser-card span,
.pec-home-performance .funnel-teaser-card em { color: #006f6a; }
.pec-home-performance .funnel-teaser-card:hover span,
.pec-home-performance .funnel-teaser-card:hover em { color: #fff; }
.pec-home-performance .carousel-dots { gap: 0; }
.pec-home-performance .carousel-dots button {
  position: relative;
  width: 28px;
  height: 28px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  transform: none;
  touch-action: manipulation;
}
.pec-home-performance .carousel-dots button::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 8px;
  height: 8px;
  border: 1px solid rgba(255,255,255,.9);
  border-radius: 50%;
  background: transparent;
  transform: translate(-50%, -50%);
  transition: background .2s ease, transform .2s ease;
}
.pec-home-performance .carousel-dots button.is-active {
  border: 0;
  background: transparent;
  transform: none;
}
.pec-home-performance .carousel-dots button.is-active::before {
  background: #fff;
  transform: translate(-50%, -50%) scale(1.12);
}
.pec-home-performance .presence-city {
  min-height: 30px;
  padding-block: 2px;
  touch-action: manipulation;
}
@media (max-width: 760px) {
  .pec-home-performance .city-muenchen { top: 286px; }
  .pec-home-performance .city-friedrichshafen { top: 319px; }
}

/* Homepage KPI dock: compact calculator cards inside the lower hero zone. */
.home-kpi-docked .funnel-teaser-section::before,
.home-kpi-docked .funnel-teaser-head h2,
.home-kpi-docked .funnel-teaser-sliders { display: none; }
.home-kpi-docked .funnel-teaser-head {
  display: block;
  margin: 0 0 16px;
}
.home-kpi-docked .funnel-teaser-head p {
  margin: 0;
  color: #75d7d0;
  font-size: 13px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: .11em;
}
.home-kpi-docked .funnel-teaser-grid {
  border-color: rgba(117,215,208,.34);
  box-shadow: 0 22px 64px rgba(0,0,0,.22);
}
.home-kpi-docked .funnel-teaser-card {
  min-height: 230px;
  padding: 22px 18px 20px;
  border-color: rgba(117,215,208,.28);
  background: rgba(4,35,44,.88);
  color: #fff;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.home-kpi-docked .funnel-teaser-card:nth-child(even) { background: rgba(0,67,72,.86); }
.home-kpi-docked .funnel-teaser-card:hover {
  background: rgba(0,161,154,.94);
  color: #fff;
}
.home-kpi-docked .funnel-teaser-card > span:first-child,
.home-kpi-docked .funnel-teaser-card em { color: #75d7d0; }
.home-kpi-docked .funnel-teaser-card:hover > span:first-child,
.home-kpi-docked .funnel-teaser-card:hover em { color: #04232c; }
.home-kpi-docked .funnel-teaser-card :is(strong, .semantic-emphasis) {
  margin-top: 20px;
  color: #fff;
  font-size: clamp(18px, 1.15vw, 21px);
  line-height: 1.12;
  letter-spacing: -.025em;
}
.home-kpi-docked .funnel-teaser-card small {
  margin-top: 10px;
  color: rgba(234,244,241,.72);
  font-size: 12.5px;
  line-height: 1.38;
}
.home-kpi-docked .funnel-teaser-card:hover small { color: rgba(4,35,44,.82); }
.home-kpi-docked .funnel-teaser-card em {
  margin-left: -6px;
  padding: 6px;
  background: transparent;
  font-size: 10px;
}
.home-kpi-docked .funnel-teaser-card:hover em { background: transparent; }
@media (min-width: 1181px) {
  .home-kpi-docked .hero-section,
  .home-kpi-docked .hero-inner { min-height: 715px; }
  .home-kpi-docked .funnel-teaser-section {
    z-index: 5;
    width: min(1488px, calc(100% - clamp(144px, 22.5vw, 432px)));
    margin: -269px auto 24px;
    padding: 0;
    background: transparent;
    overflow: visible;
    isolation: auto;
  }
}
@media (max-width: 1180px) {
  .home-kpi-docked .funnel-teaser-section {
    width: 100%;
    margin: 0;
    padding: 72px 36px;
    background: #062d36;
  }
  .home-kpi-docked .funnel-teaser-card { min-height: 190px; }
}
@media (max-width: 767px) {
  .home-kpi-docked .funnel-teaser-section { padding: 56px 24px; }
  .home-kpi-docked .funnel-teaser-head { margin-bottom: 20px; }
  .home-kpi-docked .funnel-teaser-grid { grid-template-columns: 1fr; }
  .home-kpi-docked .funnel-teaser-card { min-height: 0; padding: 22px 20px; }
}

/* Homepage studies topline — same rhythm as the KPI dock. */
.home-kpi-docked .studies-head { margin: 0 0 16px; }
.home-kpi-docked .studies-head p {
  margin: 0;
  color: #75d7d0;
  font-size: 13px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
}

/* Homepage services redesign: editorial, image-free audience panels. */
.services-overview-v2 {
  width: 100%;
  padding: 120px max(36px, calc((100vw - 1488px) / 2)) 132px;
  background: #000;
  color: #fff;
}
.services-overview-v2-inner { width: 100%; margin: 0 auto; }
.services-overview-v2-head { display: block; }
.services-overview-v2-head > p {
  margin: 0 0 16px;
  color: #75d7d0;
  font-size: 13px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.services-overview-v2-head h2 {
  max-width: 1120px;
  margin: 0;
  color: #fff;
  font-size: clamp(52px, 4.35vw, 76px);
  line-height: 1.04;
  font-weight: 400;
  letter-spacing: -.05em;
}
.services-overview-v2-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 68px;
  border-top: 1px solid rgba(117,215,208,.28);
  border-left: 1px solid rgba(117,215,208,.28);
}
.services-overview-v2-card {
  min-width: 0;
  min-height: 610px;
  padding: 44px 48px 42px;
  border-right: 1px solid rgba(117,215,208,.28);
  border-bottom: 1px solid rgba(117,215,208,.28);
  color: #fff;
  display: flex;
  flex-direction: column;
}
.services-overview-v2-card-dark { background: #04232c; }
.services-overview-v2-card-green { background: #006f6a; }
.services-overview-v2-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255,255,255,.16);
}
.services-overview-v2-meta span {
  color: #75d7d0;
  font-size: 13px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: .14em;
}
.services-overview-v2-meta small {
  color: rgba(255,255,255,.7);
  font-size: 11px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: .1em;
  text-align: right;
  text-transform: uppercase;
}
.services-overview-v2-card h3 {
  max-width: 600px;
  margin: 40px 0 30px;
  color: #fff;
  font-size: clamp(38px, 3vw, 54px);
  line-height: 1.05;
  font-weight: 400;
  letter-spacing: -.04em;
}
.services-overview-v2-card > p {
  max-width: 610px;
  margin: 0;
  color: rgba(255,255,255,.76);
  font-size: 16px;
  line-height: 1.65;
}
.services-overview-v2-card .services-overview-v2-focus {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.16);
  color: rgba(255,255,255,.92);
}
.services-overview-v2-focus span {
  display: block;
  margin-bottom: 9px;
  color: #75d7d0;
  font-size: 11px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.services-overview-v2-card > a {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  align-self: flex-start;
  min-width: 250px;
  min-height: 48px;
  margin-top: auto;
  padding: 13px 22px;
  border: 1px solid rgba(255,255,255,.78);
  border-radius: 999px;
  color: #fff;
  text-decoration: none;
  font-size: 12px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.services-overview-v2-card > a span { color: #75d7d0; font-size: 18px; }
.services-overview-v2-card > a:hover {
  border-color: #75d7d0;
  background: #75d7d0;
  color: #04232c;
}
.services-overview-v2-card > a:hover span { color: #04232c; }
@media (max-width: 960px) {
  .services-overview-v2 { padding: 88px 36px 96px; }
  .services-overview-v2-head { grid-template-columns: 1fr; gap: 22px; }
  .services-overview-v2-head > p { margin-top: 0; }
  .services-overview-v2-grid { grid-template-columns: 1fr; margin-top: 48px; }
  .services-overview-v2-card { min-height: 0; padding: 40px 36px; }
  .services-overview-v2-card > a { margin-top: 44px; }
}
@media (max-width: 540px) {
  .services-overview-v2 { padding: 72px 24px 80px; }
  .services-overview-v2-head h2 { font-size: 42px; line-height: 1.08; }
  .services-overview-v2-card { padding: 32px 24px; }
  .services-overview-v2-card h3 { margin: 32px 0 24px; font-size: 36px; }
  .services-overview-v2-card > p { font-size: 15px; line-height: 1.6; }
  .services-overview-v2-card > a { min-width: 0; width: 100%; }
}

/* Homepage KPI breakpoint handoff: avoid hero overlap and excess tablet whitespace. */
@media (min-width: 1181px) and (max-width: 1279px) {
  .home-kpi-docked .hero-section,
  .home-kpi-docked .hero-inner { min-height: 460px; }
  .home-kpi-docked .funnel-teaser-section {
    z-index: 1;
    width: 100%;
    margin: 0;
    padding: 32px 36px 56px;
    background: #062d36;
    overflow: hidden;
    isolation: isolate;
  }
  .home-kpi-docked .funnel-teaser-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    box-shadow: none;
  }
  .home-kpi-docked .funnel-teaser-card { min-height: 230px; }
}
@media (min-width: 961px) and (max-width: 1180px) {
  .home-kpi-docked .hero-section,
  .home-kpi-docked .hero-inner { min-height: 420px; }
  .home-kpi-docked .funnel-teaser-section { padding: 32px 36px 56px; }
}
@media (min-width: 761px) and (max-width: 960px) {
  .home-kpi-docked .hero-section,
  .home-kpi-docked .hero-inner { min-height: 480px; }
  .home-kpi-docked .funnel-teaser-section { padding: 32px 36px 56px; }
}
@media (min-width: 768px) and (max-width: 1180px) {
  .home-kpi-docked .funnel-teaser-grid { box-shadow: none; }
}
.home-kpi-docked .studies-section {
  margin-top: 0;
  padding-top: 32px;
}
@media (max-width: 760px) {
  .home-kpi-docked .studies-section { padding-top: 56px; }
}

/* Unlinked news previews: keep long German compound titles inside the mobile hero. */
@media (max-width: 640px) {
  .article-news-page .article-hero h1 {
    overflow-wrap: anywhere;
    hyphens: auto;
  }
}

/* Perspektiven: chronologisch veröffentlichte Fachbeiträge. */
.perspectives-news-section {
  padding: 104px 0 112px;
  background: #000;
  color: #fff;
}
.perspectives-news-inner {
  width: min(1260px, calc(100vw - 144px));
  margin: 0 auto;
}
.perspectives-news-kicker {
  margin: 0 0 16px;
  color: #75d7d0;
  font-size: 13px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 1.43px;
  text-transform: uppercase;
}
.perspectives-news-inner > h2 {
  margin: 0 0 48px;
  color: #fff;
  font-size: clamp(42px, 4.3vw, 66px);
  line-height: 1.05;
  font-weight: 400;
  letter-spacing: -.035em;
}
.perspectives-news-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px 36px;
}
.perspectives-news-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  color: #fff;
  text-decoration: none;
}
.perspectives-news-card img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  margin: 0 0 30px;
  transition: transform .35s ease, filter .35s ease;
}
.perspectives-news-card:hover img {
  transform: scale(1.015);
  filter: brightness(1.05);
}
.perspectives-news-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255,255,255,.35);
}
.perspectives-news-meta {
  margin: 0 0 16px;
  color: #75d7d0;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 600;
}
.perspectives-news-card h3 {
  margin: 0 0 28px;
  color: #fff;
  font-size: clamp(27px, 2.2vw, 36px);
  line-height: 1.16;
  font-weight: 500;
  letter-spacing: -.025em;
}
.perspectives-news-card-body > span {
  margin-top: auto;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
}
@media (max-width: 900px) {
  .perspectives-news-inner { width: min(760px, calc(100vw - 72px)); }
  .perspectives-news-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .perspectives-news-section { padding: 72px 0 80px; }
  .perspectives-news-inner { width: calc(100vw - 48px); }
  .perspectives-news-inner > h2 { margin-bottom: 36px; font-size: 40px; }
  .perspectives-news-grid { gap: 42px; }
  .perspectives-news-card img { margin-bottom: 24px; }
  .perspectives-news-card h3 { font-size: 30px; }
}
/* PEC Healthcare feedback harmonisation · 2026-07-24 */
@media (min-width: 768px) and (max-width: 1180px) {
  .pec-home-performance .studies-section {
    width: min(1488px, calc(100% - 72px));
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
  }
}
@media (min-width: 1181px) {
  .pec-home-performance .studies-section,
  .pec-home-performance .services-overview-v2-inner {
    width: min(1488px, calc(100vw - clamp(144px, 22.5vw, 432px)));
    margin-left: auto;
    margin-right: auto;
  }
  .pec-home-performance .studies-section {
    padding-left: 0;
  }
}
@media (max-width: 767px) {
  .pec-home-performance .studies-section {
    width: calc(100% - 48px);
    margin-left: 24px;
    margin-right: 24px;
    padding-left: 0;
  }
}
.industry-detail-page .industry-detail-intro-grid .industrie-kicker,
.industry-detail-page .strategy-section-head .industrie-kicker,
.industry-detail-page .strategy-principles-copy .industrie-kicker,
.industry-detail-page .industry-offers-head .industrie-kicker,
.industry-detail-page .realtime-why-inner .industrie-kicker,
.nis2-page .nis2-intro-heading .industrie-kicker,
.nis2-page .nis2-offers-head .industrie-kicker {
  margin-bottom: 22px;
}
.industry-detail-page .industry-offers-head,
.strategy-detail-page .strategy-entry-formats .industry-offers-head,
.nis2-page .nis2-offers-head {
  max-width: none;
}
.healthcare-detail-page .industry-detail-intro-copy {
  max-width: 760px;
  margin: 24px 0 0;
  color: rgba(255,255,255,.84);
  font-size: 22px;
  line-height: 1.58;
}
.betriebsstabilitaet-reaktionsfaehigkeit-im-versorgungsalltag-detail-page .healthcare-source-note .partner-cooperation-label {
  margin: 0;
  color: var(--pec-green);
  font-size: 13px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.betriebsstabilitaet-reaktionsfaehigkeit-im-versorgungsalltag-detail-page .healthcare-source-note .healthcare-partner-logo {
  width: min(220px, 60vw);
  max-height: none;
  margin: 18px 0 38px;
  padding: 0;
  background: transparent;
}
.betriebsstabilitaet-reaktionsfaehigkeit-im-versorgungsalltag-detail-page .healthcare-source-note .partner-cooperation-title {
  margin: 0;
  color: #fff;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.18;
  font-weight: 400;
  letter-spacing: -.025em;
}
.betriebsstabilitaet-reaktionsfaehigkeit-im-versorgungsalltag-detail-page .industry-detail-blocks {
  padding-top: 132px;
}
@media (max-width: 767px) {
  .healthcare-detail-page .industry-detail-intro-copy {
    margin-top: 18px;
    font-size: 18px;
    line-height: 1.55;
  }
  .betriebsstabilitaet-reaktionsfaehigkeit-im-versorgungsalltag-detail-page .industry-detail-blocks {
    padding-top: 84px;
  }
}

/* SEO quick-win headings: preserve complete words on narrow screens. */
@media (max-width: 760px) {
  .hero-section h1 {
    hyphens: none;
    overflow-wrap: normal;
    word-break: normal;
  }
}
@media (max-width: 540px) {
  .industrie-hero-left h1 {
    font-size: 38px;
    line-height: 1.14;
    hyphens: none;
    overflow-wrap: normal;
    word-break: normal;
  }
}
@media (max-width: 767px) {
  .pec-funnel-copy h1 {
    font-size: 36px;
    line-height: 1.08;
    hyphens: none;
    overflow-wrap: normal;
    word-break: normal;
  }
}


/* Industry SEO service headings · 2026-07-24 */
.industrie-page .industrie-hero-left .industry-hero-claim {
  max-width: 820px;
  margin: 24px 0 0;
  color: rgba(255,255,255,.78);
  font-size: 22px;
  line-height: 1.4;
  font-weight: 400;
  letter-spacing: -.01em;
}
@media (max-width: 540px) {
  .industrie-page .industrie-hero-left .seo-service-h1 {
    font-size: 36px;
    line-height: 1.12;
    hyphens: none;
    overflow-wrap: normal;
    word-break: normal;
  }
  .industrie-page .industrie-hero-left .industry-hero-claim {
    margin-top: 18px;
    font-size: 18px;
    line-height: 1.42;
  }
}


/* Article contextual links: stable visited state · 2026-07-24 */
.article-content .article-context-link a:link,
.article-content .article-context-link a:visited {
  color: #75d7d0;
  text-decoration-color: currentColor;
  text-decoration-thickness: 1px;
  text-underline-offset: .16em;
}
.article-content .article-context-link a:hover,
.article-content .article-context-link a:focus-visible {
  color: #fff;
}
