/* ==========================================================================
   System Trailers
   Consolidated stylesheet for Contao / RockSolid Custom Elements
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Design tokens / base
   -------------------------------------------------------------------------- */

:root {
  --st-blue: #174a91;
  --st-blue-dark: #071b33;
  --st-red: #ee1735;
  --st-red-dark: #d70d28;

  --st-ink: #111820;
  --st-copy: #5f6975;
  --st-muted: #7a8794;
  --st-line: #dfe4e8;
  --st-line-strong: #cfd7df;
  --st-soft: #f3f5f6;
  --st-soft-blue: #eef1f3;
  --st-white: #fff;

  --st-shadow: 0 28px 80px rgba(7, 27, 51, .10);
  --st-container: 1540px;

  --st-section-space: 118px;
  --st-section-space-lg: 86px;
  --st-section-space-sm: 64px;

  --st-header-offset: 112px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Barlow", sans-serif;
  color: var(--st-ink);
  background: #fff;
  line-height: 1.6;
  letter-spacing: -.005em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

.container-xxl {
  max-width: var(--st-container);
  padding-left: clamp(1.25rem, 3.2vw, 3.75rem);
  padding-right: clamp(1.25rem, 3.2vw, 3.75rem);
}

section {
  padding: var(--st-section-space) 0;
}

section[id] {
  scroll-margin-top: var(--st-header-offset);
}

.section-kicker {
  color: var(--st-red);
  font-size: .72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .19em;
}

.section-title {
  max-width: 900px;
  margin: .65rem 0 1rem;
  font-size: clamp(2.6rem, 4vw, 4.65rem);
  font-weight: 700;
  line-height: .98;
  letter-spacing: -.05em;
  text-wrap: balance;
}

.section-copy {
  max-width: 720px;
  color: var(--st-copy);
  font-size: 1.05rem;
  line-height: 1.72;
  text-wrap: pretty;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  color: rgba(255,255,255,.68);
  font-size: .76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .21em;
}

.eyebrow::before {
  content: "";
  width: 44px;
  height: 2px;
  background: var(--st-red);
}

/* --------------------------------------------------------------------------
   2. Buttons
   -------------------------------------------------------------------------- */

.btn {
  border-radius: 0;
  padding: .95rem 1.25rem;
  font-weight: 700;
  letter-spacing: .01em;
}

.btn-st-primary {
  color: #fff;
  background: var(--st-red);
  border: 1px solid var(--st-red);
}

.btn-st-primary:hover,
.btn-st-primary:focus-visible {
  color: #fff;
  background: var(--st-red-dark);
  border-color: var(--st-red-dark);
}

.btn-st-outline-light {
  color: #fff;
  background: transparent;
  border: 1px solid rgba(255,255,255,.45);
}

.btn-st-outline-light:hover,
.btn-st-outline-light:focus-visible {
  color: var(--st-blue-dark);
  background: #fff;
  border-color: #fff;
}

.btn-st-outline-dark {
  color: var(--st-ink);
  background: transparent;
  border: 1px solid #aab7c6;
}

.btn-st-outline-dark:hover,
.btn-st-outline-dark:focus-visible {
  color: #fff;
  background: var(--st-blue);
  border-color: var(--st-blue);
}

/* --------------------------------------------------------------------------
   3. Header / Contao navigation
   -------------------------------------------------------------------------- */

.topbar {
  min-height: 38px;
  display: flex;
  align-items: center;
  color: rgba(255,255,255,.62);
  background: #06182d;
  border-bottom: 1px solid rgba(255,255,255,.08);
  font-size: .82rem;
  letter-spacing: .045em;
}

.topbar a {
  color: rgba(255,255,255,.95);
}

.topbar a:hover {
  color: #fff;
}

/*
 * Contao header structure:
 *
 * .site-header
 *   > .inside
 *     > .brand-logo
 *     > .mod_navigation.main-nav
 *       > .level_1
 */

.site-header {
  z-index: 1030;
  background: rgba(255,255,255,.97);
  border-bottom: 1px solid rgba(8,27,50,.09);
  box-shadow: 0 4px 18px rgba(7,27,51,.025);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.site-header > .inside {
  width: 100%;
  max-width: var(--st-container);
  min-height: 96px;
  margin: 0 auto;
  padding-left: clamp(1.25rem, 3.2vw, 3.75rem);
  padding-right: clamp(1.25rem, 3.2vw, 3.75rem);
  display: flex;
  align-items: center;
  gap: clamp(2rem, 4vw, 5rem);
}

/*
 * Alle drei Header-Bereiche nutzen dieselbe Header-Höhe.
 * Dadurch liegen Logo, Navigation und Sprachwahl geometrisch
 * exakt auf einer gemeinsamen vertikalen Mitte.
 */
.site-header .brand-logo,
.site-header .main-nav,
.site-header .mod_changelanguage {
  align-self: stretch;
  display: flex;
  align-items: center;
}

.site-header .brand-logo {
  justify-content: flex-start;
}

.site-header .main-nav {
  justify-content: flex-end;
}

.site-header .mod_changelanguage {
  justify-content: flex-end;
}

.brand-logo {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.brand-logo img {
  width: auto;
  height: 52px;
  max-width: min(310px, 32vw);
  object-fit: contain;
}

/* Contao navigation wrapper */

.main-nav {
  flex: 1 1 auto;
  min-width: 0;
  margin-left: auto;
}

.main-nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.main-nav .level_1 {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: .1rem;
}

.main-nav .level_1 > li {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
}

/*
 * Contao renders an active page as <strong>, while normal entries are <a>.
 * Both therefore receive exactly the same navigation styling.
 */

.main-nav .level_1 > li > a,
.main-nav .level_1 > li > strong {
  position: relative;
  height: 100%;
  min-height: 0;
  padding: 0 clamp(.68rem, 1vw, .95rem);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #1f2937;
  font-size: .94rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: .015em;
  white-space: nowrap;
  transition: color .18s ease;
}

.main-nav .level_1 > li > strong {
  cursor: default;
}

.main-nav .level_1 > li > a::after,
.main-nav .level_1 > li > strong::after {
  content: "";
  position: absolute;
  left: clamp(.68rem, 1vw, .95rem);
  right: clamp(.68rem, 1vw, .95rem);
  bottom: 23px;
  height: 2px;
  background: var(--st-red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .18s ease;
}

.main-nav .level_1 > li > a:hover,
.main-nav .level_1 > li > a:focus-visible,
.main-nav .level_1 > li.active > strong,
.main-nav .level_1 > li.trail > a,
.main-nav .level_1 > li.trail > strong {
  color: var(--st-blue);
}

.main-nav .level_1 > li > a:hover::after,
.main-nav .level_1 > li > a:focus-visible::after,
.main-nav .level_1 > li.active > strong::after,
.main-nav .level_1 > li.trail > a::after,
.main-nav .level_1 > li.trail > strong::after {
  transform: scaleX(1);
}

.main-nav .level_1 > li > a:focus-visible {
  outline: 2px solid rgba(23,74,145,.28);
  outline-offset: -5px;
}

/* Optional Contao second level / dropdown */

.main-nav .level_2 {
  position: absolute;
  top: calc(100% - 1px);
  left: .6rem;
  z-index: 1080;
  min-width: 260px;
  max-width: min(340px, calc(100vw - 2rem));
  padding: .45rem;
  background: #fff;
  border: 1px solid #d9e1e8;
  border-top: 3px solid var(--st-red);
  box-shadow: 0 22px 54px rgba(5,24,45,.15);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px);
  transition:
    opacity .16s ease,
    transform .16s ease,
    visibility 0s linear .16s;
}

.main-nav .level_1 > li:last-child > .level_2 {
  left: auto;
  right: 0;
}

.main-nav .level_1 > li:hover > .level_2,
.main-nav .level_1 > li:focus-within > .level_2 {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
  transition-delay: 0s;
}

.main-nav .level_2 li {
  margin: 0;
  padding: 0;
}

.main-nav .level_2 a,
.main-nav .level_2 strong {
  min-height: 44px;
  padding: .68rem .78rem;
  display: flex;
  align-items: center;
  color: #263649;
  border-left: 2px solid transparent;
  font-size: .91rem;
  font-weight: 600;
  line-height: 1.3;
  white-space: normal;
  transition:
    color .15s ease,
    background-color .15s ease,
    border-color .15s ease;
}

.main-nav .level_2 a:hover,
.main-nav .level_2 a:focus-visible,
.main-nav .level_2 li.active > strong,
.main-nav .level_2 li.trail > a,
.main-nav .level_2 li.trail > strong {
  color: var(--st-blue);
  background: #f3f6f9;
  border-left-color: var(--st-red);
  outline: none;
}

/* Contao skip-navigation links remain visually hidden until focused. */

.main-nav > .invisible:focus {
  position: fixed !important;
  top: .75rem !important;
  left: .75rem !important;
  z-index: 2000 !important;
  width: auto !important;
  height: auto !important;
  padding: .7rem 1rem !important;
  overflow: visible !important;
  clip: auto !important;
  clip-path: none !important;
  white-space: normal !important;
  color: #fff !important;
  background: var(--st-blue-dark) !important;
  border: 2px solid var(--st-red) !important;
}

/* If a language selector is still used next to the Contao navigation */

.site-header .language-selector {
  flex: 0 0 auto;
  margin-left: .75rem;
}

.language-selector .dropdown-toggle::after {
  display: none;
}

.language-btn {
  min-width: 154px;
  height: 46px;
  padding: 0 .78rem 0 .55rem;
  border: 1px solid #d7dee6;
  border-radius: 0;
  background: #fff;
  display: inline-flex;
  align-items: center;
  gap: .66rem;
  color: #152337;
  font-size: .86rem;
  font-weight: 600;
  transition: border-color .18s ease, box-shadow .18s ease, background-color .18s ease;
}

.language-btn:hover,
.language-btn:focus,
.language-btn[aria-expanded="true"] {
  border-color: #aebdca;
  background: #fbfcfd;
  color: #152337;
  box-shadow: 0 0 0 3px rgba(23,74,145,.06);
  outline: none;
}

.language-btn__code {
  min-width: 34px;
  height: 30px;
  padding: 0 .42rem;
  display: inline-grid;
  place-items: center;
  background: var(--st-blue-dark);
  color: #fff;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  line-height: 1;
}

.language-btn__label {
  flex: 1 1 auto;
  text-align: left;
  white-space: nowrap;
}

.language-btn__chevron {
  color: #8491a0;
  font-size: .68rem;
  transition: transform .18s ease;
}

.language-btn[aria-expanded="true"] .language-btn__chevron {
  transform: rotate(180deg);
}

.language-menu {
  width: 248px;
  min-width: 248px;
  margin-top: .65rem !important;
  padding: .55rem;
  border: 1px solid #d9e0e7;
  border-radius: 0;
  background: #fff;
  box-shadow: 0 22px 60px rgba(7,27,51,.13);
}

.language-menu__label {
  padding: .45rem .62rem .62rem;
  color: #8a96a4;
  font-size: .68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.language-option {
  min-height: 50px;
  padding: .5rem .62rem;
  display: grid;
  grid-template-columns: 38px 1fr 18px;
  align-items: center;
  gap: .72rem;
  color: #1d2b3d;
  border-left: 2px solid transparent;
  transition: background-color .16s ease, border-color .16s ease, color .16s ease;
}

.language-option + .language-option {
  margin-top: 2px;
}

.language-option:hover,
.language-option:focus-visible {
  background: #f4f7fa;
  color: var(--st-blue);
  outline: none;
}

.language-option.active {
  background: #f1f5fa;
  border-left-color: var(--st-red);
  color: var(--st-blue-dark);
}

.language-option__code {
  width: 38px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 1px solid #dbe2e9;
  background: #fff;
  color: #617083;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
}

.language-option.active .language-option__code {
  border-color: var(--st-blue-dark);
  background: var(--st-blue-dark);
  color: #fff;
}

.language-option__name {
  font-size: .9rem;
  font-weight: 650;
}

.language-option__check {
  justify-self: end;
  color: var(--st-red);
  font-size: .72rem;
  opacity: 0;
}

.language-option.active .language-option__check {
  opacity: 1;
}



/* --------------------------------------------------------------------------
   4. Homepage RSCEs
   -------------------------------------------------------------------------- */

/* Hero */

.hero {
  position: relative;
  min-height: 790px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(90deg,
      rgba(5,20,39,.96) 0%,
      rgba(5,20,39,.91) 34%,
      rgba(5,20,39,.62) 54%,
      rgba(5,20,39,.18) 78%,
      rgba(5,20,39,.08) 100%),
    url('https://system-trailers.de/wp-content/uploads/2025/06/thumbnail_582.jpg') 58% center/cover no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(114deg, transparent 0 69%, rgba(255,255,255,.09) 69.05%, transparent 69.18%),
    linear-gradient(114deg, transparent 0 77%, rgba(238,23,53,.20) 77.04%, transparent 77.18%);
  opacity: .72;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 220px;
  background: linear-gradient(to top, rgba(5,20,39,.58), transparent);
}

.hero > .container-xxl {
  position: relative;
  z-index: 1;
}

.hero .col-xl-9 {
  max-width: 980px;
}

.hero h1 {
  max-width: 900px;
  margin: 1.15rem 0 1.3rem;
  font-size: clamp(3.8rem, 5.8vw, 6.55rem);
  font-weight: 700;
  line-height: .94;
  letter-spacing: -.052em;
  text-wrap: balance;
}

.hero .lead {
  max-width: 720px;
  color: rgba(255,255,255,.76);
  font-size: clamp(1.06rem, 1.25vw, 1.24rem);
  line-height: 1.68;
}

.hero .btn {
  min-width: 190px;
  padding: 1rem 1.35rem;
}

.hero-meta {
  max-width: 870px;
  margin-top: 3.6rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  border-top: 1px solid rgba(255,255,255,.24);
}

.hero-stat {
  padding: 1.35rem 1.35rem .3rem 0;
}

.hero-stat + .hero-stat {
  padding-left: 1.35rem;
  border-left: 1px solid rgba(255,255,255,.14);
}

.hero-stat strong {
  display: block;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -.035em;
}

.hero-stat span {
  display: block;
  margin-top: .45rem;
  color: rgba(255,255,255,.52);
  font-size: .82rem;
  letter-spacing: .03em;
}

/* Facts */

.facts-band {
  background: #fff;
  border-bottom: 1px solid #dce2e7;
}

.facts-grid {
  min-height: 142px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  align-items: stretch;
}

.fact-card {
  padding: 2.1rem 2.3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 1px solid #e1e5e9;
}

.fact-card:last-child {
  border-right: 1px solid var(--st-line);
}

.fact-card strong {
  display: block;
  color: #11233a;
  font-size: clamp(1.85rem, 2vw, 2.45rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -.045em;
}

.fact-card span {
  display: block;
  max-width: 250px;
  margin-top: .55rem;
  color: #6d7782;
  font-size: .88rem;
  line-height: 1.45;
}

/* Company intro */

#unternehmen .row {
  --bs-gutter-x: clamp(3rem, 6vw, 7rem);
}

.image-panel {
  position: relative;
  min-height: 640px;
  overflow: hidden;
}

.image-panel img {
  width: 100%;
  height: 100%;
  min-height: 640px;
  object-fit: cover;
  transition: transform .7s cubic-bezier(.2,.7,.2,1);
}

.image-panel:hover img {
  transform: scale(1.018);
}

.image-badge {
  position: absolute;
  left: 0;
  bottom: 0;
  width: min(72%, 390px);
  min-width: 0;
  padding: 1.5rem 1.7rem 1.55rem;
  color: #fff;
  background: rgba(7,27,51,.96);
  border-top: 3px solid var(--st-red);
}

.image-badge strong {
  display: block;
  font-size: 1.45rem;
  font-weight: 700;
  line-height: 1.05;
}

.image-badge span {
  display: block;
  margin-top: .5rem;
  color: rgba(255,255,255,.72);
  font-size: .94rem;
}

.tick-list {
  margin: 2.2rem 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--st-line);
}

.tick-list li {
  padding: .83rem 0;
  display: flex;
  align-items: flex-start;
  gap: .85rem;
  color: #1f2937;
  border-bottom: 1px solid var(--st-line);
  font-size: .97rem;
  font-weight: 600;
}

.tick-list i {
  margin-top: .36rem;
  color: var(--st-red);
  font-size: .82rem;
}

/* Product program */

.product-section {
  background: #f2f4f5;
  border-top: 1px solid #e8ebee;
  border-bottom: 1px solid #e1e5e8;
}

.product-section .row.g-3.g-lg-4 {
  --bs-gutter-x: 1px;
  --bs-gutter-y: 1px;
  background: #dfe4e8;
  border: 1px solid #dfe4e8;
}

.product-card {
  min-height: 330px;
  height: 100%;
  padding: 2.5rem 2.35rem 2.35rem;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 0;
  box-shadow: none;
  transition: background-color .2s ease;
}

.product-card:hover {
  background: #fbfcfd;
}

.product-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 2.35rem;
  display: grid;
  place-items: center;
  color: var(--st-blue);
  background: transparent;
  border: 1px solid #cfd6dd;
  font-size: 1.15rem;
}

.product-card h3 {
  margin-bottom: .7rem;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -.02em;
}

.product-card p {
  margin-bottom: 1.2rem;
  color: #64707c;
  font-size: .95rem;
  line-height: 1.62;
}

.inline-link {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  color: var(--st-blue);
  font-weight: 700;
}

.product-card .inline-link {
  margin-top: auto;
  padding-top: 1.5rem;
  font-size: .88rem;
  letter-spacing: .02em;
}

.inline-link i {
  transition: transform .2s ease;
}

.inline-link:hover i {
  transform: translateX(4px);
}

/* Manufacturing */

.manufacturing {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: var(--st-blue-dark);
}

.manufacturing::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(116deg, transparent 0 73%, rgba(255,255,255,.045) 73.05%, transparent 73.2%);
}

.manufacturing .container-xxl {
  position: relative;
  z-index: 1;
}

.manufacturing .section-copy {
  color: rgba(255,255,255,.74);
}

.tech-visual {
  min-height: 590px;
  overflow: hidden;
}

.tech-visual img {
  width: 100%;
  height: 100%;
  min-height: 590px;
  object-fit: cover;
}

.tech-grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 0 2rem;
}

.tech-item {
  padding: 1.2rem 0 1.45rem;
  border-top: 1px solid rgba(255,255,255,.20);
}

.tech-item strong {
  display: block;
  font-size: 1.65rem;
  font-weight: 700;
  line-height: 1;
}

.tech-item span {
  display: block;
  margin-top: .45rem;
  color: rgba(255,255,255,.56);
  font-size: .87rem;
}

/* Process */

#prozess .row.g-4 {
  --bs-gutter-x: 3rem;
}

.process-step {
  position: relative;
  height: 100%;
  padding-top: 1.55rem;
  border-top: 1px solid #bfc8d0;
}

.process-step::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 58px;
  height: 1px;
  background: var(--st-red);
}

.process-no {
  color: #98a5b4;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .17em;
}

.process-step h3 {
  margin: 1rem 0 .55rem;
  font-size: 1.42rem;
  font-weight: 700;
  letter-spacing: -.02em;
}

.process-step p {
  margin: 0;
  color: var(--st-copy);
  font-size: .94rem;
  line-height: 1.64;
}

/* Homepage career */

.career {
  position: relative;
  min-height: 660px;
  display: flex;
  align-items: center;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(5,20,39,.94) 0%, rgba(5,20,39,.78) 42%, rgba(5,20,39,.30) 74%, rgba(5,20,39,.10) 100%),
    url('https://system-trailers.de/wp-content/uploads/2025/06/thumbnail_573.jpg') center/cover no-repeat;
}

.career .col-lg-8 {
  max-width: 820px;
}

.career p {
  max-width: 720px;
  color: rgba(255,255,255,.8);
}

/* Homepage contact cards */

.contact-card {
  height: 100%;
  min-height: 220px;
  padding: 2.2rem 2.4rem;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.contact-card i {
  width: 18px;
  margin-right: .55rem;
  color: var(--st-red);
  text-align: center;
}

.contact-card h3 {
  margin-bottom: 1.35rem;
  font-size: 1.1rem;
  font-weight: 700;
}

.contact-card p {
  color: #63707d;
  font-size: .94rem;
}

/* --------------------------------------------------------------------------
   5. Services page RSCEs
   -------------------------------------------------------------------------- */

/* Minimal subpage hero */

.services-hero,
.career-hero,
.contact-hero {
  position: relative;
  min-height: 410px;
  padding: 0 !important;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background: var(--st-blue-dark);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.services-hero::before,
.career-hero::before,
.contact-hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  opacity: .86;
  pointer-events: none;
}

.services-hero::before {
  background:
    linear-gradient(90deg, var(--st-blue-dark) 0%, rgba(7,27,51,.78) 20%, rgba(7,27,51,.12) 100%),
    url('https://system-trailers.de/wp-content/uploads/2025/06/thumbnail_582.jpg') 56% center/cover no-repeat;
}

.career-hero::before {
  width: 42%;
  background:
    linear-gradient(90deg, var(--st-blue-dark) 0%, rgba(7,27,51,.78) 18%, rgba(7,27,51,.12) 100%),
    url('https://system-trailers.de/wp-content/uploads/2025/06/thumbnail_573.jpg') center/cover no-repeat;
}

.contact-hero::before {
  background:
    linear-gradient(90deg, var(--st-blue-dark) 0%, rgba(7,27,51,.78) 18%, rgba(7,27,51,.12) 100%),
    url('https://system-trailers.de/wp-content/uploads/2025/06/thumbnail_582.jpg') center/cover no-repeat;
}

.services-hero::after,
.career-hero::after,
.contact-hero::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 92px;
  height: 4px;
  background: var(--st-red);
}

.services-hero .container-xxl,
.career-hero .container-xxl,
.contact-hero .container-xxl {
  position: relative;
  z-index: 1;
  padding-top: 4.35rem;
  padding-bottom: 4.35rem;
}

.services-hero h1,
.career-hero h1,
.contact-hero h1 {
  max-width: 790px;
  margin: 0;
  font-size: clamp(2.75rem, 4.15vw, 4.55rem);
  line-height: .99;
  font-weight: 800;
  letter-spacing: -.045em;
  text-wrap: balance;
}

.services-hero .hero-intro,
.career-hero .hero-intro,
.contact-hero .hero-intro {
  max-width: 650px;
  margin: 1.25rem 0 0;
  color: rgba(255,255,255,.69);
  font-size: clamp(1rem, 1.2vw, 1.16rem);
  line-height: 1.62;
  text-wrap: pretty;
}

/* Services overview */

.services-overview {
  background: #fff;
}

.services-overview .section-title {
  max-width: 900px;
  margin-bottom: 1.15rem;
}

.services-intro-copy {
  max-width: 700px;
  line-height: 1.68;
}

.services-list {
  margin-top: 3.1rem;
  border-top: 1px solid var(--st-line);
}

.service-row {
  min-height: 112px;
  padding: 1.55rem 0;
  display: grid;
  grid-template-columns: 74px minmax(220px,.72fr) minmax(0,1.35fr) 28px;
  gap: 1.5rem;
  align-items: center;
  color: inherit;
  border-bottom: 1px solid var(--st-line);
  transition: background .18s ease, padding .18s ease;
}

.service-row:hover {
  padding-left: .9rem;
  padding-right: .9rem;
  background: #f6f8fa;
}

.service-row:focus-visible {
  outline: 2px solid var(--st-blue);
  outline-offset: 4px;
  background: #f6f8fa;
}

.service-no {
  color: var(--st-red);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .14em;
}

.service-row h3 {
  margin: 0;
  color: var(--st-blue-dark);
  font-size: 1.45rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -.02em;
  text-wrap: balance;
}

.service-row p {
  max-width: 760px;
  margin: 0;
  color: var(--st-copy);
  line-height: 1.58;
  text-wrap: pretty;
}

.service-row i {
  justify-self: end;
  color: var(--st-red);
  transition: transform .18s ease;
}

.service-row:hover i {
  transform: translateX(5px);
}

/* Services production */

.services-production {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: var(--st-blue-dark);
}

.services-production::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(118deg, transparent 0 72%, rgba(255,255,255,.04) 72.04%, transparent 72.15%),
    linear-gradient(118deg, transparent 0 80%, rgba(238,23,53,.10) 80.03%, transparent 80.15%);
}

.services-production .container-xxl {
  position: relative;
  z-index: 1;
}

.services-production .section-title {
  max-width: 720px;
}

.services-production .section-copy {
  max-width: 660px;
  color: rgba(255,255,255,.68);
  line-height: 1.68;
}

.services-production-visual {
  position: relative;
  min-height: 520px;
  height: 100%;
  overflow: hidden;
  background: #142a42;
}

.services-production-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.service-points {
  margin-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.15);
}

.service-point {
  padding: 1.05rem 0;
  display: grid;
  grid-template-columns: 30px minmax(0,1fr);
  gap: .9rem;
  border-bottom: 1px solid rgba(255,255,255,.15);
}

.service-point i {
  width: 18px;
  margin-top: .15rem;
  color: var(--st-red);
  text-align: center;
}

.service-point strong {
  display: block;
  font-size: 1rem;
  font-weight: 800;
}

.service-point span {
  display: block;
  margin-top: .2rem;
  color: rgba(255,255,255,.62);
  font-size: .93rem;
  line-height: 1.45;
}

/* Services contact / compact CTA */

.services-contact {
  background: var(--st-soft-blue);
  border-top: 1px solid #dfe4e8;
}

.services-contact .section-copy {
  max-width: 680px;
}

.contact-line {
  margin-top: 1.75rem;
  padding-top: 1.45rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  border-top: 1px solid var(--st-line-strong);
}

.contact-line a,
.contact-line span {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  color: var(--st-blue-dark);
  font-weight: 700;
  overflow-wrap: anywhere;
}

.contact-line i {
  color: var(--st-red);
}

/* --------------------------------------------------------------------------
   6. Career page RSCEs
   -------------------------------------------------------------------------- */

.career-intro {
  background: #fff;
}

.career-intro .section-title {
  max-width: 760px;
}

.career-intro .section-copy {
  max-width: 690px;
  line-height: 1.68;
}

.career-visual {
  position: relative;
  min-height: 560px;
  height: 100%;
  overflow: hidden;
  background: #dfe5ea;
}

.career-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.career-visual-note {
  position: absolute;
  left: 0;
  bottom: 0;
  width: min(430px, 90%);
  padding: 1.55rem 1.7rem 1.5rem;
  color: #fff;
  background: rgba(7,27,51,.95);
  border-top: 4px solid var(--st-red);
}

.career-visual-note strong {
  display: block;
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1.2;
}

.career-visual-note span {
  display: block;
  margin-top: .45rem;
  color: rgba(255,255,255,.67);
  font-size: .92rem;
  line-height: 1.45;
}

.career-points {
  margin-top: 2.2rem;
  border-top: 1px solid var(--st-line);
}

.career-point {
  padding: 1.05rem 0;
  display: grid;
  grid-template-columns: 30px minmax(0,1fr);
  gap: .95rem;
  border-bottom: 1px solid var(--st-line);
}

.career-point i {
  margin-top: .18rem;
  color: var(--st-red);
  text-align: center;
}

.career-point strong {
  display: block;
  color: var(--st-blue-dark);
  font-size: 1rem;
  font-weight: 800;
}

.career-point span {
  display: block;
  margin-top: .2rem;
  color: var(--st-copy);
  font-size: .94rem;
  line-height: 1.48;
}

/* Career entry list */

.career-entry {
  color: #fff;
  background: var(--st-blue-dark);
}

.career-entry .section-title {
  max-width: 850px;
}

.career-entry .section-copy {
  max-width: 700px;
  color: rgba(255,255,255,.67);
  line-height: 1.68;
}

.career-entry-list {
  margin-top: 3rem;
  border-top: 1px solid rgba(255,255,255,.16);
}

.career-entry-row {
  min-height: 116px;
  padding: 1.55rem 0;
  display: grid;
  grid-template-columns: 72px minmax(210px,.7fr) minmax(0,1.25fr) 28px;
  gap: 1.45rem;
  align-items: center;
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,.16);
  transition: padding .18s ease, background .18s ease;
}

.career-entry-row:hover {
  padding-left: .9rem;
  padding-right: .9rem;
  background: rgba(255,255,255,.045);
}

.career-entry-row:focus-visible {
  outline: 2px solid rgba(255,255,255,.9);
  outline-offset: 4px;
}

.career-entry-no {
  color: var(--st-red);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .14em;
}

.career-entry-row h3 {
  margin: 0;
  color: #fff;
  font-size: 1.45rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -.02em;
}

.career-entry-row p {
  margin: 0;
  color: rgba(255,255,255,.66);
  line-height: 1.55;
}

.career-entry-row > i {
  justify-self: end;
  color: var(--st-red);
  transition: transform .18s ease;
}

.career-entry-row:hover > i {
  transform: translateX(5px);
}

/* Career CTA / contact */

.career-contact {
  background: var(--st-soft-blue);
  border-top: 1px solid #dfe4e8;
}

.career-contact .section-title {
  max-width: 820px;
}

.career-contact .section-copy {
  max-width: 680px;
  line-height: 1.65;
}

.career-contact-actions {
  margin-top: 1.8rem;
  display: flex;
  flex-wrap: wrap;
  gap: .9rem;
}

.career-contact-meta {
  padding-left: 2rem;
  display: grid;
  gap: .75rem;
  border-left: 1px solid var(--st-line-strong);
}

.career-contact-meta a,
.career-contact-meta span {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  color: var(--st-blue-dark);
  font-weight: 700;
  overflow-wrap: anywhere;
}

.career-contact-meta i {
  width: 18px;
  color: var(--st-red);
  text-align: center;
}

/* --------------------------------------------------------------------------
   7. Contact page RSCEs
   -------------------------------------------------------------------------- */

.contact-main {
  background: #fff;
}

.contact-main .section-title {
  max-width: 760px;
}

.contact-main .section-copy {
  max-width: 680px;
  line-height: 1.68;
}

.contact-details {
  margin-top: 2.5rem;
  border-top: 1px solid var(--st-line);
}

.contact-detail {
  padding: 1.25rem 0;
  display: grid;
  grid-template-columns: 42px minmax(120px,.7fr) minmax(0,1.4fr);
  gap: 1rem;
  align-items: start;
  border-bottom: 1px solid var(--st-line);
}

.contact-detail-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: var(--st-red);
  border: 1px solid #d8dfe5;
}

.contact-detail strong {
  color: var(--st-blue-dark);
  font-size: .95rem;
  font-weight: 800;
}

.contact-detail a,
.contact-detail span {
  min-width: 0;
  color: var(--st-copy);
  line-height: 1.5;
  overflow-wrap: anywhere;
}

.contact-detail a:hover {
  color: var(--st-blue);
}

.contact-map {
  position: relative;
  min-height: 540px;
  height: 100%;
  overflow: hidden;
  background: #dfe5ea;
  border: 1px solid #d8dfe5;
}

.contact-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 540px;
  border: 0;
  filter: grayscale(.14) contrast(.96);
}

.contact-map-label {
  position: absolute;
  left: 0;
  bottom: 0;
  max-width: 390px;
  padding: 1.35rem 1.55rem;
  color: #fff;
  background: rgba(7,27,51,.95);
  border-top: 4px solid var(--st-red);
  pointer-events: none;
}

.contact-map-label strong {
  display: block;
  font-size: 1.15rem;
  font-weight: 800;
}

.contact-map-label span {
  display: block;
  margin-top: .4rem;
  color: rgba(255,255,255,.66);
  font-size: .9rem;
  line-height: 1.45;
}

/* Contact request */

.contact-request {
  background: var(--st-soft-blue);
  border-top: 1px solid #dfe4e8;
}

.contact-request .section-title {
  max-width: 760px;
}

.contact-request .section-copy {
  max-width: 650px;
  line-height: 1.66;
}

.contact-form-shell {
  margin-top: 2.6rem;
  padding-top: 2rem;
  border-top: 1px solid var(--st-line-strong);
}

.contact-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 1.2rem 1.35rem;
}

.form-field {
  min-width: 0;
}

.form-field--full {
  grid-column: 1 / -1;
}

.form-field label {
  display: block;
  margin-bottom: .45rem;
  color: var(--st-blue-dark);
  font-size: .86rem;
  font-weight: 800;
}

.form-control-st {
  width: 100%;
  min-height: 52px;
  padding: .8rem .9rem;
  color: #1d2c3c;
  background: #fff;
  border: 1px solid #cbd4dc;
  border-radius: 0;
  outline: none;
  transition: border-color .16s ease, box-shadow .16s ease;
}

textarea.form-control-st {
  min-height: 150px;
  resize: vertical;
}

.form-control-st:focus {
  border-color: var(--st-blue);
  box-shadow: 0 0 0 3px rgba(24,71,141,.09);
}

.form-note {
  margin: .9rem 0 0;
  color: #6b7785;
  font-size: .86rem;
  line-height: 1.5;
}

.contact-request-aside {
  padding-left: 2rem;
  border-left: 1px solid var(--st-line-strong);
}

.contact-request-aside h3 {
  margin: 0 0 1rem;
  color: var(--st-blue-dark);
  font-size: 1.15rem;
  font-weight: 800;
}

.contact-request-aside p {
  color: var(--st-copy);
  line-height: 1.6;
}

.contact-request-aside .aside-line {
  margin-top: .85rem;
  display: flex;
  align-items: flex-start;
  gap: .7rem;
  color: var(--st-blue-dark);
  font-weight: 700;
}

.contact-request-aside .aside-line i {
  width: 18px;
  margin-top: .2rem;
  color: var(--st-red);
  text-align: center;
}

/* --------------------------------------------------------------------------
   8. Footer
   -------------------------------------------------------------------------- */

.footer {
  color: rgba(255,255,255,.68);
  background: #06182d;
}

.footer-main {
  padding: 82px 0 54px;
}

.footer h5 {
  margin-bottom: 1rem;
  color: rgba(255,255,255,.88);
  font-size: .72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .16em;
}

.footer-logo img {
  width: auto;
  height: 46px;
  object-fit: contain;
}

.footer .d-grid a,
.footer p {
  font-size: .92rem;
  line-height: 1.7;
}

.footer a:hover {
  color: #fff;
}

.footer-bottom {
  padding: 1.15rem 0;
  color: rgba(255,255,255,.52);
  border-top: 1px solid rgba(255,255,255,.12);
  font-size: .88rem;
}

/* --------------------------------------------------------------------------
   9. Responsive
   -------------------------------------------------------------------------- */

@media (min-width: 1200px) and (max-width: 1399.98px) {
  .site-header > .inside {
    gap: clamp(1rem, 2vw, 2rem);
  }

  .brand-logo img {
    height: 48px;
  }

  .main-nav .level_1 > li > a,
  .main-nav .level_1 > li > strong {
    padding-left: .62rem;
    padding-right: .62rem;
    font-size: .9rem;
  }

  .main-nav .level_1 > li > a::after,
  .main-nav .level_1 > li > strong::after {
    left: .62rem;
    right: .62rem;
  }

  .mod_changelanguage {
    margin-left: .6rem;
    padding-left: .6rem;
  }

  .mod_changelanguage .level_1 > li > a,
  .mod_changelanguage .level_1 > li > strong {
    width: 38px;
    height: 38px;
    font-size: .7rem;
  }
}

@media (max-width: 1199.98px) {
  :root {
    --st-section-space: 86px;
    --st-header-offset: 96px;
  }

  .hero {
    min-height: 700px;
    background-position: 64% center;
  }

  .hero h1 {
    font-size: clamp(3.3rem, 9vw, 5rem);
  }

  .image-panel,
  .image-panel img {
    min-height: 500px;
  }

  .tech-visual,
  .tech-visual img {
    min-height: 460px;
  }

  .services-hero,
  .career-hero,
  .contact-hero {
    min-height: 390px;
  }

  .services-production-visual {
    min-height: 480px;
  }

  .career-visual {
    min-height: 500px;
  }

  .career-entry-row {
    grid-template-columns: 64px minmax(190px,.7fr) minmax(0,1.2fr) 26px;
    gap: 1.2rem;
  }

  .contact-map,
  .contact-map iframe {
    min-height: 500px;
  }
}

@media (max-width: 991.98px) {
  :root {
    --st-section-space: 76px;
    --st-header-offset: 84px;
  }

  .hero {
    min-height: 700px;
    background-position: 64% center;
  }

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

  .hero-stat:nth-child(3) {
    display: none;
  }

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

  .fact-card:nth-child(2) {
    border-right: 1px solid var(--st-line);
  }

  .fact-card:nth-child(n+3) {
    border-top: 1px solid var(--st-line);
  }

  .services-hero,
  .career-hero,
  .contact-hero {
    min-height: 370px;
  }

  .service-row {
    grid-template-columns: 58px minmax(0,1fr) 24px;
    gap: 1rem;
    min-height: 0;
    padding: 1.45rem 0;
  }

  .service-row p {
    grid-column: 2 / 4;
    padding-right: 2rem;
  }

  .services-production-visual {
    min-height: 420px;
    margin-bottom: .5rem;
  }

  .career-visual {
    min-height: 430px;
    margin-bottom: .5rem;
  }

  .career-entry-row {
    grid-template-columns: 58px minmax(0,1fr) 24px;
    gap: 1rem;
  }

  .career-entry-row p {
    grid-column: 2 / 4;
    padding-right: 2rem;
  }

  .career-contact-meta,
  .contact-request-aside {
    margin-top: 2rem;
    padding-top: 1.8rem;
    padding-left: 0;
    border-top: 1px solid var(--st-line-strong);
    border-left: 0;
  }

  .contact-map {
    margin-top: 1rem;
  }

  .contact-map,
  .contact-map iframe {
    min-height: 420px;
  }
}

@media (max-width: 767.98px) {
  .services-hero,
  .career-hero,
  .contact-hero {
    min-height: 350px;
  }

  .services-hero::before,
  .career-hero::before,
  .contact-hero::before {
    width: 56%;
    opacity: .42;
  }

  .services-hero .container-xxl,
  .career-hero .container-xxl,
  .contact-hero .container-xxl {
    padding-top: 3.6rem;
    padding-bottom: 3.6rem;
  }

  .services-hero h1,
  .career-hero h1,
  .contact-hero h1 {
    font-size: clamp(2.45rem, 9.5vw, 3.7rem);
  }

  .service-row {
    grid-template-columns: 44px minmax(0,1fr) 20px;
    gap: .85rem;
    padding: 1.35rem 0;
  }

  .service-row p {
    grid-column: 2 / 4;
    padding: 0;
  }

  .service-row:hover {
    padding-left: 0;
    padding-right: 0;
    background: transparent;
  }

  .services-production-visual,
  .career-visual {
    min-height: 360px;
  }

  .career-entry-row {
    grid-template-columns: 44px minmax(0,1fr) 20px;
    gap: .85rem;
    padding: 1.35rem 0;
  }

  .career-entry-row p {
    grid-column: 2 / 4;
    padding: 0;
  }

  .career-entry-row:hover {
    padding-left: 0;
    padding-right: 0;
    background: transparent;
  }

  .contact-detail {
    grid-template-columns: 36px 1fr;
  }

  .contact-detail strong,
  .contact-detail a,
  .contact-detail span {
    grid-column: 2;
  }

  .contact-form-grid {
    grid-template-columns: 1fr;
  }

  .form-field--full {
    grid-column: auto;
  }

  .contact-line {
    display: grid;
    gap: .8rem;
  }
}

@media (max-width: 575.98px) {
  :root {
    --st-section-space: 64px;
    --st-header-offset: 76px;
  }

  .topbar {
    display: none;
  }

  .hero {
    min-height: 640px;
    padding-bottom: 42px;
    align-items: flex-end;
    background-position: 70% center;
  }

  .hero h1 {
    font-size: 3.05rem;
    line-height: .96;
  }

  .hero .lead {
    font-size: 1rem;
  }

  .hero-meta {
    margin-top: 2.4rem;
  }

  .hero-stat {
    padding: 1rem .7rem 1rem 0;
  }

  .hero-stat + .hero-stat {
    padding-left: .9rem;
  }

  .facts-grid {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .fact-card,
  .fact-card:last-child {
    padding: 1.55rem 1.25rem;
    border-left: 0;
    border-right: 0;
  }

  .fact-card + .fact-card {
    border-top: 1px solid var(--st-line);
  }

  .image-panel,
  .image-panel img {
    min-height: 390px;
  }

  .image-badge {
    right: 0;
    width: auto;
    min-width: 0;
  }

  .product-card {
    min-height: 0;
    padding: 2rem 1.6rem;
  }

  .tech-visual,
  .tech-visual img {
    min-height: 360px;
  }

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

  .career {
    min-height: 590px;
  }


  .services-hero,
  .career-hero,
  .contact-hero {
    min-height: 330px;
  }

  .services-hero::before,
  .career-hero::before,
  .contact-hero::before {
    width: 66%;
    opacity: .30;
  }

  .services-hero .container-xxl,
  .career-hero .container-xxl,
  .contact-hero .container-xxl {
    padding-top: 3.25rem;
    padding-bottom: 3.25rem;
  }

  .services-list,
  .career-entry-list {
    margin-top: 2.2rem;
  }

  .service-row,
  .career-entry-row {
    grid-template-columns: 38px minmax(0,1fr) 18px;
    gap: .75rem;
  }

  .service-row h3,
  .career-entry-row h3 {
    font-size: 1.25rem;
  }

  .service-row p,
  .career-entry-row p {
    grid-column: 1 / 4;
    padding-left: 46px;
    font-size: .96rem;
  }

  .services-production-visual,
  .career-visual {
    min-height: 320px;
  }

  .career-visual-note {
    width: 100%;
  }

  .career-contact-actions {
    display: grid;
  }

  .career-contact-actions .btn,
  .contact-request .btn {
    width: 100%;
  }

  .contact-map,
  .contact-map iframe {
    min-height: 340px;
  }

  .contact-map-label {
    width: 100%;
    max-width: 100%;
  }

  .contact-form-shell {
    margin-top: 2.1rem;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
  }

  .service-row,
  .service-row i,
  .career-entry-row,
  .career-entry-row > i {
    transition: none;
  }

  .image-panel img {
    transition: none;
  }
}

/* =========================================================
   Contao ChangeLanguage
   ========================================================= */

.mod_changelanguage {
  flex: 0 0 auto;
  margin-left: clamp(.7rem, 1.4vw, 1.35rem);
  padding-left: clamp(.7rem, 1.4vw, 1.35rem);
  border-left: 1px solid #dfe4e8;
}

.mod_changelanguage ul,
.mod_changelanguage .level_1 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.mod_changelanguage .level_1 > li {
  margin: 0;
  padding: 0;
}

.mod_changelanguage .level_1 > li > a,
.mod_changelanguage .level_1 > li > strong {
  position: relative;
  width: 42px;
  height: 42px;
  padding: 0;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  color: #566474;
  background: #fff;
  border: 1px solid #d7dee5;

  font-size: .76rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: .07em;

  transition:
    color .18s ease,
    border-color .18s ease,
    background-color .18s ease;
}


/* Hover / Fokus */

.mod_changelanguage .level_1 > li > a:hover,
.mod_changelanguage .level_1 > li > a:focus-visible {
  color: var(--st-blue);
  border-color: #9eafbf;
  background: #f7f9fb;
  outline: none;
}


/* Aktive Sprache
   Contao gibt sie als <strong> aus.
*/

.mod_changelanguage .level_1 > li.active > strong,
.mod_changelanguage .level_1 > li > strong.active {
  color: #fff;
  background: var(--st-blue-dark);
  border-color: var(--st-blue-dark);
}


/* kleine rote Markenlinie */

.mod_changelanguage .level_1 > li.active > strong::after,
.mod_changelanguage .level_1 > li > strong.active::after {
  content: "";
  position: absolute;
  left: -1px;
  right: -1px;
  bottom: -1px;
  height: 3px;
  background: var(--st-red);
}


/* hreflang Links */

.mod_changelanguage a[hreflang] {
  text-transform: uppercase;
}




/* =========================================================
   System Trailers – Offcanvas Navigation
   ========================================================= */

/* Menübutton */

.mobile-menu-toggle {
  display: none;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  height: 48px;
  padding: 0 .9rem 0 1rem;
  color: var(--st-blue-dark);
  background: #fff;
  border: 1px solid #d7dee5;
  border-radius: 0;
  font-family: inherit;
  font-size: .76rem;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: .1em;
  transition:
    color .18s ease,
    border-color .18s ease,
    background-color .18s ease;
}

.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus-visible {
  color: var(--st-blue);
  background: #f7f9fb;
  border-color: #aab8c5;
  outline: none;
}

.mobile-menu-toggle__icon {
  width: 22px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-menu-toggle__icon span {
  display: block;
  width: 100%;
  height: 2px;
  background: currentColor;
}

.mobile-menu-toggle__icon span:nth-child(2) {
  width: 15px;
  margin-left: auto;
}

/* Offcanvas */

.mobile-offcanvas {
  --bs-offcanvas-width: min(440px, 100vw);
  z-index: 1085;
  color: var(--st-ink);
  background: #fff;
  border-left: 0 !important;
  box-shadow: -25px 0 70px rgba(7,27,51,.17);
}

.offcanvas-backdrop {
  z-index: 1080;
  background: #06182d;
}

.offcanvas-backdrop.show {
  opacity: .62;
}

/* Offcanvas Header */

.mobile-offcanvas__header {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0 1.5rem;
  border-bottom: 1px solid var(--st-line);
}

.mobile-offcanvas__brand {
  min-width: 0;
  display: inline-flex;
  align-items: center;
}

.mobile-offcanvas__brand img {
  width: auto;
  height: 46px;
  max-width: 240px;
  object-fit: contain;
}

.mobile-offcanvas__close {
  position: relative;
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  padding: 0;
  color: var(--st-blue-dark);
  background: transparent;
  border: 1px solid #d7dee5;
  border-radius: 0;
  font-size: 0;
  cursor: pointer;
  transition:
    color .18s ease,
    border-color .18s ease,
    background-color .18s ease;
}

/*
 * X bewusst per CSS gezeichnet.
 * Dadurch funktioniert das Schließen-Icon unabhängig davon,
 * ob Font Awesome bereits geladen wurde.
 */
.mobile-offcanvas__close i {
  display: none;
}

.mobile-offcanvas__close::before,
.mobile-offcanvas__close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 19px;
  height: 2px;
  background: currentColor;
  transform-origin: center;
}

.mobile-offcanvas__close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.mobile-offcanvas__close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.mobile-offcanvas__close:hover,
.mobile-offcanvas__close:focus-visible {
  color: #fff;
  background: var(--st-red);
  border-color: var(--st-red);
  outline: none;
}

/* Offcanvas Body */

.mobile-offcanvas .offcanvas-body {
  display: flex;
  flex-direction: column;
  padding: 0;
  overflow-y: auto;
}

.mobile-navigation-heading {
  padding: 1.6rem 1.5rem .75rem;
  color: #8a96a4;
  font-size: .68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .17em;
}

/* Mobile Navigation */

.mobile-navigation {
  padding: 0 1.5rem;
}

.mobile-navigation ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-level-1 {
  border-top: 1px solid var(--st-line);
}

.mobile-level-1 > li {
  position: relative;
  margin: 0;
  padding: 0;
  border-bottom: 1px solid var(--st-line);
}

.mobile-nav-row {
  display: grid;
  grid-template-columns: minmax(0,1fr) 56px;
  align-items: stretch;
}

/* Level 1 */

.mobile-nav-link {
  min-width: 0;
  min-height: 66px;
  display: flex;
  align-items: center;
  padding: .9rem 0;
  color: #17283c;
  font-size: 1.12rem;
  font-weight: 700;
  line-height: 1.2;
  transition:
    color .18s ease,
    padding-left .18s ease;
}

a.mobile-nav-link:hover,
a.mobile-nav-link:focus-visible {
  color: var(--st-blue);
  padding-left: .3rem;
  outline: none;
}

strong.mobile-nav-link,
.mobile-level-1 > li.active > .mobile-nav-link,
.mobile-level-1 > li.trail > .mobile-nav-row > .mobile-nav-link,
.mobile-level-1 > li.active > .mobile-nav-row > .mobile-nav-link {
  color: var(--st-blue);
}

/* Einträge ohne Untermenü */

.mobile-nav-link--single::after {
  content: "";
  width: 8px;
  height: 8px;
  margin-left: auto;
  margin-right: .25rem;
  border-top: 1.5px solid #8b98a6;
  border-right: 1.5px solid #8b98a6;
  transform: rotate(45deg);
}

/* Untermenü-Schalter */

.mobile-submenu-toggle {
  display: grid;
  place-items: center;
  width: 56px;
  min-width: 56px;
  padding: 0;
  color: #718090;
  background: transparent;
  border: 0;
  border-left: 1px solid var(--st-line);
  transition:
    color .18s ease,
    background-color .18s ease;
}

.mobile-submenu-toggle:hover,
.mobile-submenu-toggle:focus-visible {
  color: var(--st-blue);
  background: #f5f7f9;
  outline: none;
}

.mobile-submenu-toggle i {
  font-size: .72rem;
  transition: transform .2s ease;
}

.mobile-submenu-toggle[aria-expanded="true"] i {
  transform: rotate(180deg);
}

/* Level 2 */

.mobile-submenu {
  margin: 0 !important;
  padding: .4rem 0 .85rem 1.15rem !important;
  background: #f6f8fa;
}

.mobile-submenu > li {
  margin: 0;
  padding: 0;
}

.mobile-submenu-link {
  position: relative;
  display: block;
  padding: .78rem 1rem .78rem 1.2rem;
  color: #536273;
  font-size: .93rem;
  font-weight: 600;
  line-height: 1.4;
  transition:
    color .15s ease,
    padding-left .15s ease;
}

.mobile-submenu-link::before {
  content: "";
  position: absolute;
  top: 1.2rem;
  left: 0;
  width: 5px;
  height: 5px;
  background: #b7c1ca;
}

a.mobile-submenu-link:hover,
a.mobile-submenu-link:focus-visible {
  color: var(--st-blue);
  padding-left: 1.4rem;
  outline: none;
}

strong.mobile-submenu-link,
.mobile-submenu li.active > .mobile-submenu-link,
.mobile-submenu li.trail > .mobile-submenu-link {
  color: var(--st-blue);
  font-weight: 700;
}

strong.mobile-submenu-link::before,
.mobile-submenu li.active > .mobile-submenu-link::before,
.mobile-submenu li.trail > .mobile-submenu-link::before {
  background: var(--st-red);
}

/* Sprache */

.mobile-language {
  margin-top: auto;
  padding: 1.8rem 1.5rem 2rem;
  background: #f5f7f9;
  border-top: 1px solid var(--st-line);
}

.mobile-language__label {
  margin-bottom: .8rem;
  color: #8a96a4;
  font-size: .68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .17em;
}

.mobile-language-list {
  display: grid !important;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: .5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-language-list > li {
  min-width: 0;
  margin: 0;
  padding: 0;
}

.mobile-language-option {
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: .5rem;
  color: #506071;
  background: #fff;
  border: 1px solid #d8e0e7;
  font-size: .72rem;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: .08em;
}

a.mobile-language-option:hover,
a.mobile-language-option:focus-visible {
  color: var(--st-blue);
  border-color: #aab8c5;
  outline: none;
}

.mobile-language-list > li.active > .mobile-language-option,
strong.mobile-language-option {
  color: #fff;
  background: var(--st-blue-dark);
  border-color: var(--st-blue-dark);
}

/* Desktop -> Offcanvas */

@media (max-width: 1199.98px) {
  .site-header > .inside {
    min-height: 82px;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 0;
    padding-bottom: 0;
  }

  .site-header .brand-logo {
    align-self: center;
  }

  .site-header > .inside > .main-nav,
  .site-header > .inside > .mod_changelanguage {
    display: none !important;
  }

  .site-header .brand-logo {
    margin: 0;
  }

  .site-header .brand-logo img {
    height: 46px;
    max-width: 240px;
  }

  .mobile-menu-toggle {
    display: inline-flex;
    margin-left: auto;
  }
}

/* Smartphone */

@media (max-width: 575.98px) {
  .site-header > .inside {
    min-height: 74px;
  }

  .site-header .brand-logo img {
    height: 38px;
    max-width: 205px;
  }

  .mobile-menu-toggle {
    width: 48px;
    height: 46px;
    padding: 0;
  }

  .mobile-menu-toggle__label {
    display: none;
  }

  .mobile-offcanvas {
    --bs-offcanvas-width: 100vw;
  }

  .mobile-offcanvas__header {
    min-height: 74px;
    padding-left: 1.1rem;
    padding-right: 1.1rem;
  }

  .mobile-offcanvas__brand img {
    height: 38px;
    max-width: 205px;
  }

  .mobile-navigation-heading,
  .mobile-navigation,
  .mobile-language {
    padding-left: 1.1rem;
    padding-right: 1.1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .mobile-menu-toggle,
  .mobile-submenu-toggle i,
  .mobile-nav-link,
  .mobile-submenu-link {
    transition: none;
  }
}

/* =========================================================
   Karriere – Offene Stellen als Accordion
   ========================================================= */

.jobs-list-section {
  background: #fff;
}

.jobs-list-section .section-copy {
  max-width: 690px;
}

.jobs-summary {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
}

.jobs-count {
  min-width: 180px;
  padding-top: 1rem;
  border-top: 1px solid var(--st-line);
}

.jobs-count strong {
  display: block;
  color: var(--st-blue-dark);
  font-size: 2.15rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -.04em;
}

.jobs-count span {
  display: block;
  margin-top: .5rem;
  color: #798592;
  font-size: .86rem;
  line-height: 1.45;
}

.jobs-accordion {
  margin-top: 3.3rem;
  border-top: 1px solid var(--st-line);
}

.jobs-accordion .accordion-item {
  border: 0;
  border-bottom: 1px solid var(--st-line);
  border-radius: 0;
  background: transparent;
}

.jobs-accordion .accordion-header {
  margin: 0;
}

.jobs-accordion .accordion-button {
  position: relative;
  min-height: 108px;
  padding: 1.45rem 4rem 1.45rem 0;
  display: grid;
  grid-template-columns: 150px minmax(0,1fr) 150px;
  gap: 1.5rem;
  align-items: center;
  color: var(--st-ink);
  background: transparent;
  border-radius: 0 !important;
  box-shadow: none !important;
  transition: padding .18s ease, background-color .18s ease;
}

.jobs-accordion .accordion-button::after {
  position: absolute;
  right: .15rem;
  width: 34px;
  height: 34px;
  margin: 0;
  display: grid;
  place-items: center;
  content: "+";
  color: var(--st-blue-dark);
  background: transparent;
  border: 1px solid #cfd7df;
  background-image: none !important;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1;
  transform: none;
}

.jobs-accordion .accordion-button:not(.collapsed) {
  color: var(--st-ink);
  background: #f6f8fa;
  padding-left: 1rem;
  padding-right: 5rem;
}

.jobs-accordion .accordion-button:not(.collapsed)::after {
  content: "−";
  color: #fff;
  background: var(--st-blue-dark);
  border-color: var(--st-blue-dark);
}

.jobs-accordion .accordion-button:hover {
  background: #f6f8fa;
}

.job-type {
  color: var(--st-red);
  font-size: .7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .15em;
}

.job-title {
  color: var(--st-blue-dark);
  font-size: clamp(1.14rem, 1.55vw, 1.48rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -.025em;
}

.job-meta {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  color: #7a8692;
  font-size: .9rem;
  font-weight: 600;
}

.job-meta i {
  color: var(--st-red);
  font-size: .78rem;
}

.jobs-accordion .accordion-collapse {
  background: #f6f8fa;
}

.jobs-accordion .accordion-body {
  padding: 0 1rem 2.2rem;
}

.job-detail {
  padding-top: 1.8rem;
  border-top: 1px solid #dbe1e6;
}

.job-detail-intro {
  max-width: 850px;
  margin: 0 0 2rem;
  color: var(--st-copy);
  font-size: 1rem;
  line-height: 1.7;
}

.job-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: clamp(1.5rem, 3vw, 3.5rem);
}

.job-detail-block h4 {
  margin: 0 0 1rem;
  color: var(--st-blue-dark);
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .13em;
}

.job-detail-block ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.job-detail-block li {
  position: relative;
  padding: .38rem 0 .38rem 1.15rem;
  color: var(--st-copy);
  font-size: .94rem;
  line-height: 1.52;
}

.job-detail-block li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .9rem;
  width: 5px;
  height: 5px;
  background: var(--st-red);
}

.job-detail-footer {
  margin-top: 2rem;
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 2rem;
  border-top: 1px solid #dbe1e6;
}

.job-detail-contact {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem 1.6rem;
}

.job-detail-contact span,
.job-detail-contact a {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  color: #617080;
  font-size: .9rem;
  font-weight: 600;
}

.job-detail-contact i {
  color: var(--st-red);
}

.jobs-note {
  margin-top: 1.5rem;
  color: #7a8692;
  font-size: .86rem;
}

@media (max-width: 991.98px) {
  .jobs-summary {
    justify-content: flex-start;
    margin-top: 1.6rem;
  }

  .jobs-accordion .accordion-button {
    grid-template-columns: 112px minmax(0,1fr);
    gap: .55rem 1rem;
  }

  .job-meta {
    grid-column: 2;
  }

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

  .job-detail-block:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 767.98px) {
  .jobs-accordion .accordion-button,
  .jobs-accordion .accordion-button:not(.collapsed) {
    min-height: 0;
    padding: 1.25rem 3.4rem 1.25rem 0;
    grid-template-columns: 1fr;
    gap: .35rem;
  }

  .jobs-accordion .accordion-button:not(.collapsed) {
    padding-left: .85rem;
  }

  .job-meta {
    grid-column: 1;
  }

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

  .job-detail-block:last-child {
    grid-column: auto;
  }

  .job-detail-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 575.98px) {
  .jobs-accordion {
    margin-top: 2.4rem;
  }

  .jobs-accordion .accordion-body {
    padding-left: .85rem;
    padding-right: .85rem;
  }

  .job-detail-contact {
    display: grid;
    gap: .65rem;
  }

  .job-detail-footer .btn {
    width: 100%;
  }
}
/* ==========================================================================
   System Trailers – Karriere → Ausbildung
   Ergänzung für die bestehenden System-Trailers Styles
   ========================================================================== */

/* --------------------------------------------------------------------------
   Allgemein
   -------------------------------------------------------------------------- */

.training-page section[id] {
  scroll-margin-top: 112px;
}


/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */

.training-hero {
  position: relative;
  min-height: 390px;
  padding: 0 !important;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background: var(--st-blue-dark);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.training-hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 42%;
  height: 100%;
  background:
    linear-gradient(
      90deg,
      #071b33 0%,
      rgba(7,27,51,.76) 20%,
      rgba(7,27,51,.10) 100%
    ),
    url("https://system-trailers.de/wp-content/uploads/2025/06/thumbnail_573.jpg")
    center / cover no-repeat;
  opacity: .84;
  pointer-events: none;
}

.training-hero::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 92px;
  height: 4px;
  background: var(--st-red);
}

.training-hero .container-xxl {
  position: relative;
  z-index: 1;
  padding-top: 4.35rem;
  padding-bottom: 4.35rem;
}

.training-hero .eyebrow {
  margin-bottom: 1rem;
}

.training-hero h1 {
  max-width: 800px;
  margin: 0;
  font-size: clamp(2.75rem, 4.15vw, 4.55rem);
  font-weight: 800;
  line-height: .99;
  letter-spacing: -.045em;
  text-wrap: balance;
}

.training-hero .hero-intro {
  max-width: 660px;
  margin: 1.25rem 0 0;
  color: rgba(255,255,255,.69);
  font-size: clamp(1rem, 1.2vw, 1.16rem);
  line-height: 1.62;
  text-wrap: pretty;
}


/* --------------------------------------------------------------------------
   Intro
   -------------------------------------------------------------------------- */

.training-intro {
  padding-top: 96px;
  padding-bottom: 96px;
  background: #fff;
}

.training-visual {
  position: relative;
  min-height: 520px;
  height: 100%;
  overflow: hidden;
  background: #e4e8ec;
}

.training-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.training-visual-note {
  position: absolute;
  left: 0;
  bottom: 0;
  width: min(430px, 92%);
  padding: 1.45rem 1.6rem;
  color: #fff;
  background: rgba(7,27,51,.95);
  border-top: 4px solid var(--st-red);
}

.training-visual-note strong {
  display: block;
  font-size: 1.2rem;
  font-weight: 800;
  line-height: 1.25;
}

.training-visual-note span {
  display: block;
  margin-top: .4rem;
  color: rgba(255,255,255,.67);
  font-size: .92rem;
  line-height: 1.45;
}

.training-intro .section-copy {
  max-width: 660px;
}

.training-points {
  margin-top: 2.1rem;
  border-top: 1px solid var(--st-line);
}

.training-point {
  padding: 1rem 0;
  display: grid;
  grid-template-columns: 28px minmax(0,1fr);
  gap: .9rem;
  border-bottom: 1px solid var(--st-line);
}

.training-point i {
  margin-top: .2rem;
  color: var(--st-red);
  text-align: center;
}

.training-point strong {
  display: block;
  color: var(--st-blue-dark);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.35;
}

.training-point span {
  display: block;
  margin-top: .2rem;
  color: var(--st-copy);
  font-size: .94rem;
  line-height: 1.48;
}


/* --------------------------------------------------------------------------
   Ausbildungsberufe
   -------------------------------------------------------------------------- */

.training-professions {
  padding-top: 96px;
  padding-bottom: 96px;
  color: #fff;
  background: var(--st-blue-dark);
}

.training-professions .section-kicker {
  color: var(--st-red);
}

.training-professions .section-title {
  max-width: 830px;
  color: #fff;
}

.training-professions .section-copy {
  max-width: 700px;
  color: rgba(255,255,255,.67);
}

.training-list {
  margin-top: 3rem;
  border-top: 1px solid rgba(255,255,255,.16);
}

.training-row {
  min-height: 110px;
  padding: 1.45rem 0;
  display: grid;
  grid-template-columns:
    64px
    minmax(250px,.8fr)
    minmax(0,1.3fr)
    28px;
  gap: 1.35rem;
  align-items: center;
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,.16);
  text-decoration: none;
  transition:
    padding .18s ease,
    background-color .18s ease;
}

a.training-row:hover,
a.training-row:focus-visible {
  padding-left: .9rem;
  padding-right: .9rem;
  color: #fff;
  background: rgba(255,255,255,.04);
  outline: none;
}

a.training-row:focus-visible {
  box-shadow: inset 0 0 0 2px rgba(255,255,255,.3);
}

.training-no {
  color: var(--st-red);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .14em;
}

.training-row h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(1.15rem, 1.5vw, 1.35rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -.02em;
  text-wrap: balance;
}

.training-row p {
  margin: 0;
  color: rgba(255,255,255,.64);
  font-size: .96rem;
  line-height: 1.55;
}

.training-row > i {
  justify-self: end;
  color: var(--st-red);
  transition: transform .18s ease;
}

a.training-row:hover > i,
a.training-row:focus-visible > i {
  transform: translateX(5px);
}


/* --------------------------------------------------------------------------
   Bewerbungs-CTA
   -------------------------------------------------------------------------- */

.training-cta {
  padding-top: 78px;
  padding-bottom: 78px;
  background: #eef1f3;
  border-top: 1px solid #dfe4e8;
}

.training-cta .section-title {
  max-width: 790px;
}

.training-cta .section-copy {
  max-width: 680px;
}

.training-cta-actions {
  margin-top: 1.8rem;
  display: flex;
  flex-wrap: wrap;
  gap: .9rem;
}

.training-contact {
  padding-left: 2rem;
  border-left: 1px solid #cfd7df;
}

.training-contact-label {
  margin-bottom: 1rem;
  color: #8793a0;
  font-size: .7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .15em;
}

.training-contact > strong {
  display: block;
  margin-bottom: .85rem;
  color: var(--st-blue-dark);
  font-size: 1.1rem;
  font-weight: 800;
}

.training-contact > a,
.training-contact > span {
  display: flex;
  align-items: flex-start;
  gap: .7rem;
  margin-top: .7rem;
  color: var(--st-blue-dark);
  font-weight: 700;
  line-height: 1.45;
  text-decoration: none;
}

.training-contact > a:hover {
  color: var(--st-blue);
}

.training-contact i {
  width: 18px;
  margin-top: .2rem;
  color: var(--st-red);
  text-align: center;
}


/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */

@media (max-width: 1199.98px) {

  .training-page section[id] {
    scroll-margin-top: 96px;
  }

  .training-hero {
    min-height: 380px;
  }

  .training-intro,
  .training-professions {
    padding-top: 86px;
    padding-bottom: 86px;
  }

  .training-cta {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .training-visual {
    min-height: 480px;
  }

}


@media (max-width: 991.98px) {

  .training-page section[id] {
    scroll-margin-top: 84px;
  }

  .training-hero {
    min-height: 370px;
  }

  .training-intro,
  .training-professions {
    padding-top: 76px;
    padding-bottom: 76px;
  }

  .training-visual {
    min-height: 430px;
    margin-bottom: .5rem;
  }

  .training-row {
    grid-template-columns:
      52px
      minmax(0,1fr)
      24px;
    gap: 1rem;
  }

  .training-row p {
    grid-column: 2 / 4;
  }

  .training-contact {
    margin-top: 2rem;
    padding-top: 1.7rem;
    padding-left: 0;
    border-top: 1px solid #cfd7df;
    border-left: 0;
  }

}


@media (max-width: 767.98px) {

  .training-hero {
    min-height: 350px;
  }

  .training-hero::before {
    width: 58%;
    opacity: .38;
  }

  .training-hero .container-xxl {
    padding-top: 3.6rem;
    padding-bottom: 3.6rem;
  }

  .training-row {
    grid-template-columns:
      42px
      minmax(0,1fr)
      20px;
    gap: .75rem;
  }

  .training-row p {
    grid-column: 1 / 4;
    padding-left: 50px;
  }

  a.training-row:hover,
  a.training-row:focus-visible {
    padding-left: 0;
    padding-right: 0;
    background: transparent;
  }

}


@media (max-width: 575.98px) {

  .training-page section[id] {
    scroll-margin-top: 76px;
  }

  .training-hero {
    min-height: 330px;
  }

  .training-hero::before {
    width: 68%;
    opacity: .28;
  }

  .training-intro,
  .training-professions {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .training-cta {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .training-visual {
    min-height: 330px;
  }

  .training-visual-note {
    width: 100%;
    padding: 1.15rem 1.2rem;
  }

  .training-list {
    margin-top: 2.3rem;
  }

  .training-row {
    min-height: 0;
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
  }

  .training-row h3 {
    font-size: 1.16rem;
  }

  .training-row p {
    padding-left: 0;
    font-size: .9rem;
  }

  .training-cta-actions {
    display: grid;
  }

  .training-cta-actions .btn {
    width: 100%;
  }

}


@media (prefers-reduced-motion: reduce) {

  .training-row,
  .training-row > i {
    transition: none;
  }

}

/* ==========================================================================
   System Trailers – Unternehmen RSCE
   ========================================================================== */

.company-page section[id] {
  scroll-margin-top: 112px;
}

.company-hero {
  position: relative;
  min-height: 410px;
  padding: 0 !important;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background: var(--st-blue-dark);
}

.company-hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 42%;
  height: 100%;
  background:
    linear-gradient(90deg,#071b33 0%,rgba(7,27,51,.76) 22%,rgba(7,27,51,.08) 100%),
    url("https://system-trailers.de/wp-content/uploads/2025/06/thumbnail_573.jpg")
    center / cover no-repeat;
  opacity: .88;
  pointer-events: none;
}

.company-hero::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 92px;
  height: 4px;
  background: var(--st-red);
}

.company-hero .container-xxl {
  position: relative;
  z-index: 1;
  padding-top: 4.35rem;
  padding-bottom: 4.35rem;
}

.company-hero h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(2.75rem,4.15vw,4.55rem);
  font-weight: 800;
  line-height: .99;
  letter-spacing: -.045em;
}

.company-hero .hero-intro {
  max-width: 690px;
  margin: 1.25rem 0 0;
  color: rgba(255,255,255,.70);
  font-size: clamp(1rem,1.2vw,1.16rem);
  line-height: 1.62;
}

.company-intro {
  padding: 96px 0;
  background: #fff;
}

.company-visual {
  position: relative;
  min-height: 540px;
  overflow: hidden;
  background: #e7eaed;
}

.company-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.company-visual-note {
  position: absolute;
  left: 0;
  bottom: 0;
  width: min(440px,92%);
  padding: 1.5rem 1.65rem;
  color: #fff;
  background: rgba(7,27,51,.96);
  border-top: 4px solid var(--st-red);
}

.company-visual-note strong {
  display: block;
  font-size: 1.2rem;
  font-weight: 800;
}

.company-visual-note span {
  display: block;
  margin-top: .45rem;
  color: rgba(255,255,255,.68);
  font-size: .92rem;
  line-height: 1.45;
}

.company-points {
  margin-top: 2.15rem;
  border-top: 1px solid var(--st-line);
}

.company-point {
  padding: 1rem 0;
  display: grid;
  grid-template-columns: 28px minmax(0,1fr);
  gap: .9rem;
  border-bottom: 1px solid var(--st-line);
}

.company-point i {
  margin-top: .2rem;
  color: var(--st-red);
  text-align: center;
}

.company-point strong {
  display: block;
  color: var(--st-blue-dark);
  font-size: 1rem;
  font-weight: 800;
}

.company-point span {
  display: block;
  margin-top: .18rem;
  color: var(--st-copy);
  font-size: .94rem;
  line-height: 1.5;
}

/* Historie */

.company-history {
  position: relative;
  padding: 96px 0 104px;
  overflow: hidden;
  color: #fff;
  background: var(--st-blue-dark);
}

.company-history .section-title {
  max-width: 790px;
  color: #fff;
}

.company-history .section-copy {
  max-width: 690px;
  color: rgba(255,255,255,.66);
}

.history-timeline {
  position: relative;
  max-width: 1180px;
  margin: 4rem auto 0;
  padding: .5rem 0;
}

.history-axis {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  overflow: visible;
  background: rgba(255,255,255,.16);
  transform: translateX(-50%);
}

.history-axis-progress {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: var(--st-red);
}

.history-timeline.is-visible .history-axis-progress {
  animation: historyLineProgress var(--history-duration,12s) cubic-bezier(.45,0,.2,1) .35s forwards;
}

.history-runner {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 5;
  width: 18px;
  height: 18px;
  margin-left: -9px;
  border-radius: 50%;
  background: var(--st-red);
  border: 4px solid var(--st-blue-dark);
  box-shadow:
    0 0 0 1px rgba(255,255,255,.38),
    0 0 0 8px rgba(238,23,53,.08);
  opacity: 0;
  transform: translateY(-2px);
}

.history-timeline.is-visible .history-runner {
  opacity: 1;
  animation: historyRunnerMove var(--history-duration,12s) cubic-bezier(.45,0,.2,1) .35s forwards;
}

@keyframes historyLineProgress {
  from { height: 0; }
  to { height: 100%; }
}

@keyframes historyRunnerMove {
  0% { top: 0; transform: translateY(-2px); }
  100% { top: calc(100% - 18px); transform: translateY(0); }
}

.history-item {
  position: relative;
  width: 50%;
  min-height: 150px;
  padding: 0 4.7rem 3.3rem 0;
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity .9s ease var(--history-delay,0s),
    transform 1.15s cubic-bezier(.22,1,.36,1) var(--history-delay,0s);
}

.history-item:nth-child(even) {
  margin-left: 50%;
  padding: 0 0 3.3rem 4.7rem;
}

.history-timeline.is-visible .history-item {
  opacity: 1;
  transform: translateY(0);
}

.history-dot {
  position: absolute;
  top: .4rem;
  right: -9px;
  width: 18px;
  height: 18px;
  background: var(--st-blue-dark);
  border: 4px solid var(--st-red);
  box-shadow: 0 0 0 7px rgba(238,23,53,.08);
}

.history-item:nth-child(even) .history-dot {
  right: auto;
  left: -9px;
}

.history-step {
  display: block;
  margin-bottom: .8rem;
  color: var(--st-red);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.history-item h3 {
  max-width: 440px;
  margin: 0 0 .75rem;
  color: #fff;
  font-size: clamp(1.25rem,1.8vw,1.65rem);
  font-weight: 800;
  line-height: 1.18;
}

.history-item p {
  max-width: 470px;
  margin: 0;
  color: rgba(255,255,255,.62);
  font-size: .95rem;
  line-height: 1.62;
}

.history-item:not(:nth-child(even)) .history-step,
.history-item:not(:nth-child(even)) h3,
.history-item:not(:nth-child(even)) p {
  margin-left: auto;
  text-align: right;
}

/* Fakten */

.company-facts {
  padding: 88px 0;
  background: #f3f5f6;
  border-top: 1px solid var(--st-line);
  border-bottom: 1px solid var(--st-line);
}

.company-facts-copy {
  max-width: 690px;
  margin-bottom: 2.4rem;
}

.company-facts-grid {
  display: grid;
  grid-template-columns: repeat(4,minmax(0,1fr));
  border-top: 1px solid var(--st-line-strong);
  border-left: 1px solid var(--st-line-strong);
}

.company-fact {
  min-height: 190px;
  padding: 1.7rem 1.55rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid var(--st-line-strong);
  border-bottom: 1px solid var(--st-line-strong);
  background: rgba(255,255,255,.36);
}

.company-fact strong {
  color: var(--st-blue-dark);
  font-size: clamp(2rem,3vw,3.25rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.05em;
}

.company-fact span {
  max-width: 240px;
  color: #667482;
  font-size: .9rem;
  line-height: 1.5;
}

/* Kontakt */

.company-contact {
  padding: 78px 0;
  background: #eef1f3;
}

.company-contact .section-copy {
  max-width: 650px;
}

.company-contact-actions {
  margin-top: 1.8rem;
  display: flex;
  flex-wrap: wrap;
  gap: .9rem;
}

.company-contact-meta {
  padding-left: 2rem;
  border-left: 1px solid #cfd7df;
}

.company-contact-meta a,
.company-contact-meta > span {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  margin-top: .8rem;
  color: var(--st-blue-dark);
  font-weight: 700;
  text-decoration: none;
}

.company-contact-meta i {
  width: 18px;
  margin-top: .18rem;
  color: var(--st-red);
  text-align: center;
}

@media (max-width: 991.98px) {
  .company-visual {
    min-height: 430px;
  }

  .history-axis {
    left: 18px;
    transform: none;
  }

  .history-runner {
    left: 18px;
  }

  .history-item,
  .history-item:nth-child(even) {
    width: 100%;
    min-height: 0;
    margin-left: 0;
    padding: 0 0 2.8rem 4.1rem;
  }

  .history-dot,
  .history-item:nth-child(even) .history-dot {
    left: 9px;
    right: auto;
  }

  .history-item:not(:nth-child(even)) .history-step,
  .history-item:not(:nth-child(even)) h3,
  .history-item:not(:nth-child(even)) p {
    margin-left: 0;
    text-align: left;
  }

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

  .company-contact-meta {
    margin-top: 2rem;
    padding-top: 1.7rem;
    padding-left: 0;
    border-top: 1px solid #cfd7df;
    border-left: 0;
  }
}

@media (max-width: 575.98px) {
  .company-hero {
    min-height: 325px;
  }

  .company-hero::before {
    width: 68%;
    opacity: .28;
  }

  .company-intro,
  .company-history {
    padding-top: 64px;
    padding-bottom: 70px;
  }

  .company-visual {
    min-height: 330px;
  }

  .company-visual-note {
    width: 100%;
  }

  .history-axis {
    left: 12px;
  }

  .history-runner {
    left: 12px;
    width: 16px;
    height: 16px;
    margin-left: -8px;
    border-width: 3px;
  }

  .history-item,
  .history-item:nth-child(even) {
    padding-left: 3rem;
    padding-bottom: 2.35rem;
  }

  .history-dot,
  .history-item:nth-child(even) .history-dot {
    left: 3px;
  }

  .company-facts {
    padding: 64px 0;
  }

  .company-facts-grid {
    grid-template-columns: 1fr;
  }

  .company-fact {
    min-height: 150px;
  }

  .company-contact {
    padding: 60px 0;
  }

  .company-contact-actions {
    display: grid;
  }

  .company-contact-actions .btn {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .history-axis-progress,
  .history-runner,
  .history-item {
    animation: none !important;
    transition: none !important;
  }

  .history-axis-progress {
    height: 100%;
  }

  .history-runner {
    opacity: 1;
    top: calc(100% - 18px);
    transform: none;
  }

  .history-item {
    opacity: 1;
    transform: none;
  }
}
/* =========================================================
   SYSTEM TRAILERS – LEISTUNGS-RSCEs
   Für:
   - Leistung Hero
   - Leistung Inhalt
   - Leistung Prozess

   Voraussetzung:
   Bootstrap 5 + Font Awesome
   Die vorhandenen globalen Klassen wie .eyebrow, .section-kicker,
   .section-title, .section-copy, .btn-st-primary und
   .btn-st-outline-light können weiterverwendet werden.
   ========================================================= */


/* ---------------------------------------------------------
   1. HERO
   --------------------------------------------------------- */

.service-hero {
  position: relative;
  min-height: 610px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: #fff;

  background-image:
    linear-gradient(
      90deg,
      rgba(4, 18, 35, .97) 0%,
      rgba(4, 18, 35, .92) 35%,
      rgba(4, 18, 35, .61) 58%,
      rgba(4, 18, 35, .16) 84%,
      rgba(4, 18, 35, .08) 100%
    ),
    var(
      --service-hero-image,
      url("https://system-trailers.de/wp-content/uploads/2025/06/thumbnail_582.jpg")
    );

  background-position: center, 62% center;
  background-size: cover, cover;
  background-repeat: no-repeat;
}

.service-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;

  background:
    linear-gradient(
      116deg,
      transparent 0 70%,
      rgba(255, 255, 255, .07) 70.04%,
      transparent 70.18%
    ),
    linear-gradient(
      116deg,
      transparent 0 78%,
      rgba(238, 23, 53, .20) 78.04%,
      transparent 78.18%
    );
}

.service-hero::after {
  content: "";
  position: absolute;
  right: clamp(2rem, 6vw, 7rem);
  bottom: 0;
  z-index: 0;
  width: 1px;
  height: 58%;
  pointer-events: none;
  background: linear-gradient(
    to top,
    rgba(255, 255, 255, .28),
    transparent
  );
}

.service-hero > .container-xxl {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-top: 8rem;
  padding-bottom: 5.3rem;
}

.service-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .65rem;
  margin-bottom: 2rem;

  color: rgba(255, 255, 255, .55);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .04em;
}

.service-breadcrumb a {
  color: rgba(255, 255, 255, .82);
  text-decoration: none;
  transition: color .15s ease;
}

.service-breadcrumb a:hover,
.service-breadcrumb a:focus-visible {
  color: #fff;
}

.service-breadcrumb i {
  color: rgba(255, 255, 255, .32);
  font-size: .58rem;
}

.service-hero h1 {
  max-width: 1000px;
  margin: 0;

  color: #fff;
  font-size: clamp(3.4rem, 6vw, 6.45rem);
  font-weight: 800;
  line-height: .95;
  letter-spacing: -.05em;
}

.service-hero .hero-intro {
  max-width: 760px;
  margin: 1.55rem 0 0;

  color: rgba(255, 255, 255, .78);
  font-size: clamp(1.08rem, 1.45vw, 1.3rem);
  line-height: 1.62;
}

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


/* ---------------------------------------------------------
   2. LEISTUNGS-INHALT
   --------------------------------------------------------- */

.service-overview {
  padding: 108px 0;
  background: #fff;
}

.service-copy {
  max-width: 690px;
}

.service-copy .lead-copy {
  margin: 1.45rem 0 1rem;

  color: #263343;
  font-size: 1.24rem;
  font-weight: 500;
  line-height: 1.65;
}

.service-copy p:not(.lead-copy) {
  color: var(--st-copy, #5d6977);
  font-size: 1.03rem;
  line-height: 1.75;
}

.service-copy p:last-child {
  margin-bottom: 0;
}


/* Schwerpunkt-Box */

.service-focus-box {
  position: relative;
  max-width: 590px;
  margin-left: auto;
  padding: 2.55rem 2.6rem 2.45rem;

  background: var(--st-soft, #f4f6f8);
  border-top: 4px solid var(--st-red, #ee1735);
}

.service-focus-box::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 86px;
  height: 86px;
  pointer-events: none;

  background:
    linear-gradient(
      135deg,
      transparent 49%,
      rgba(7, 27, 51, .07) 49.5%,
      rgba(7, 27, 51, .07) 50.5%,
      transparent 51%
    );
}

.service-focus-label {
  display: block;
  margin-bottom: 1.35rem;

  color: #788494;
  font-size: .74rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .16em;
}

.service-focus-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid #d6dde4;
}

.service-focus-list li {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: .85rem;
  align-items: start;

  padding: 1rem 0;
  border-bottom: 1px solid #d6dde4;

  color: #273546;
  font-weight: 600;
  line-height: 1.5;
}

.service-focus-list i {
  margin-top: .2rem;
  color: var(--st-red, #ee1735);
  font-size: .9rem;
}

.service-focus-note {
  margin: 1.35rem 0 0;

  color: #667382;
  font-size: .92rem;
  line-height: 1.6;
}


/* ---------------------------------------------------------
   3. PROZESS
   --------------------------------------------------------- */

.service-process {
  position: relative;
  overflow: hidden;
  padding: 108px 0;

  color: #fff;
  background: var(--st-blue-dark, #071b33);
}

.service-process::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;

  background:
    linear-gradient(
      116deg,
      transparent 0 70%,
      rgba(255, 255, 255, .045) 70.04%,
      transparent 70.16%
    ),
    linear-gradient(
      116deg,
      transparent 0 79%,
      rgba(238, 23, 53, .12) 79.04%,
      transparent 79.16%
    );
}

.service-process > .container-xxl {
  position: relative;
  z-index: 1;
}

.service-process .section-kicker {
  color: var(--st-red, #ee1735);
}

.service-process .section-title {
  color: #fff;
}

.service-process .section-copy {
  color: rgba(255, 255, 255, .67);
}

.service-steps {
  margin-top: 3.2rem;
  border-top: 1px solid rgba(255, 255, 255, .17);
}

.service-step {
  display: grid;
  grid-template-columns: 120px minmax(220px, .7fr) 1.35fr 38px;
  gap: 2rem;
  align-items: center;

  min-height: 118px;
  padding: 1.35rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, .17);
}

.service-step-no {
  color: var(--st-red, #ee1735);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .16em;
}

.service-step h3 {
  margin: 0;

  color: #fff;
  font-size: 1.45rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -.02em;
}

.service-step p {
  max-width: 650px;
  margin: 0;

  color: rgba(255, 255, 255, .64);
  line-height: 1.65;
}

.service-step-icon {
  display: grid;
  place-items: center;

  width: 38px;
  height: 38px;

  color: rgba(255, 255, 255, .74);
  border: 1px solid rgba(255, 255, 255, .22);
}


/* ---------------------------------------------------------
   RESPONSIVE
   --------------------------------------------------------- */

@media (max-width: 1199.98px) {
  .service-hero {
    min-height: 570px;
  }

  .service-overview,
  .service-process {
    padding: 90px 0;
  }

  .service-step {
    grid-template-columns: 100px minmax(190px, .7fr) 1.3fr 38px;
    gap: 1.5rem;
  }
}


@media (max-width: 991.98px) {
  .service-overview,
  .service-process {
    padding: 76px 0;
  }

  .service-focus-box {
    max-width: none;
    margin-top: 1rem;
  }

  .service-step {
    grid-template-columns: 90px 1fr 38px;
  }

  .service-step p {
    grid-column: 2 / 4;
    padding-bottom: .25rem;
  }
}


@media (max-width: 767.98px) {
  .service-hero {
    min-height: 540px;
    background-position: center, 72% center;
  }

  .service-hero h1 {
    font-size: clamp(3rem, 12vw, 4.7rem);
  }

  .service-step {
    grid-template-columns: 1fr 38px;
    gap: .65rem 1rem;
    padding: 1.6rem 0;
  }

  .service-step-no {
    grid-column: 1;
  }

  .service-step h3 {
    grid-column: 1;
  }

  .service-step p {
    grid-column: 1 / 3;
  }

  .service-step-icon {
    grid-column: 2;
    grid-row: 1 / 3;
    align-self: center;
  }
}


@media (max-width: 575.98px) {
  .service-hero {
    min-height: 510px;
  }

  .service-hero > .container-xxl {
    padding-top: 5.5rem;
    padding-bottom: 3.5rem;
  }

  .service-overview,
  .service-process {
    padding: 64px 0;
  }

  .service-focus-box {
    padding: 2rem 1.5rem;
  }
}

/* =========================================================
   SYSTEM TRAILERS – KARRIERE BENEFITS RSCE
   Für:
   - Hero
   - Benefits-Grid
   - Bereich "Arbeiten bei System Trailers"

   Voraussetzung:
   Bootstrap 5 + Font Awesome
   Vorhandene globale Klassen wie .eyebrow, .section-kicker,
   .section-title, .section-copy, .btn-st-primary und
   .btn-st-outline-light können weiterverwendet werden.
   ========================================================= */


/* ---------------------------------------------------------
   HERO
   --------------------------------------------------------- */

.benefits-hero {
  position: relative;
  min-height: 590px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: #fff;

  background-image:
    linear-gradient(
      90deg,
      rgba(4, 18, 35, .97) 0%,
      rgba(4, 18, 35, .91) 36%,
      rgba(4, 18, 35, .58) 61%,
      rgba(4, 18, 35, .15) 84%,
      rgba(4, 18, 35, .08) 100%
    ),
    url("https://system-trailers.de/wp-content/uploads/2025/06/thumbnail_573.jpg");

  background-position: center, 62% center;
  background-size: cover, cover;
  background-repeat: no-repeat;
}

.benefits-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;

  background:
    linear-gradient(
      116deg,
      transparent 0 71%,
      rgba(255, 255, 255, .07) 71.04%,
      transparent 71.18%
    ),
    linear-gradient(
      116deg,
      transparent 0 79%,
      rgba(238, 23, 53, .18) 79.04%,
      transparent 79.18%
    );
}

.benefits-hero > .container-xxl {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-top: 8rem;
  padding-bottom: 5rem;
}

.benefits-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .65rem;
  margin-bottom: 2rem;

  color: rgba(255, 255, 255, .56);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .04em;
}

.benefits-breadcrumb a {
  color: rgba(255, 255, 255, .82);
  text-decoration: none;
  transition: color .15s ease;
}

.benefits-breadcrumb a:hover,
.benefits-breadcrumb a:focus-visible {
  color: #fff;
}

.benefits-breadcrumb i {
  color: rgba(255, 255, 255, .32);
  font-size: .58rem;
}

.benefits-hero h1 {
  max-width: 970px;
  margin: 0;

  color: #fff;
  font-size: clamp(3.4rem, 6vw, 6.4rem);
  font-weight: 800;
  line-height: .95;
  letter-spacing: -.05em;
}

.benefits-hero .hero-intro {
  max-width: 760px;
  margin: 1.55rem 0 0;

  color: rgba(255, 255, 255, .78);
  font-size: clamp(1.08rem, 1.45vw, 1.3rem);
  line-height: 1.62;
}


/* ---------------------------------------------------------
   BENEFITS GRID
   --------------------------------------------------------- */

.benefits-grid-section {
  padding: 105px 0;
  background: #fff;
}

.benefits-intro {
  max-width: 760px;
}

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

  margin-top: 3.4rem;

  border-top: 1px solid var(--st-line, #d9e1e8);
  border-left: 1px solid var(--st-line, #d9e1e8);
}

.benefit-card {
  position: relative;
  min-height: 250px;
  padding: 2rem 1.8rem 2.1rem;

  background: #fff;

  border-right: 1px solid var(--st-line, #d9e1e8);
  border-bottom: 1px solid var(--st-line, #d9e1e8);

  transition:
    background .18s ease,
    transform .18s ease;
}

.benefit-card:hover {
  background: var(--st-soft, #f5f7f9);
}

.benefit-icon {
  width: 48px;
  height: 48px;

  display: grid;
  place-items: center;

  margin-bottom: 1.6rem;

  color: var(--st-red, #ee1735);
  border: 1px solid #d9e1e8;

  font-size: 1.05rem;
}

.benefit-card h3 {
  margin: 0 0 .7rem;

  color: #10253e;
  font-size: 1.28rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -.02em;
}

.benefit-card p {
  margin: 0;

  color: var(--st-copy, #5d6977);
  font-size: .96rem;
  line-height: 1.6;
}


/* ---------------------------------------------------------
   ARBEITEN BEI SYSTEM TRAILERS
   --------------------------------------------------------- */

.benefits-work {
  position: relative;
  overflow: hidden;

  padding: 105px 0;

  color: #fff;
  background: var(--st-blue-dark, #071b33);
}

.benefits-work::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;

  background:
    linear-gradient(
      118deg,
      transparent 0 69%,
      rgba(255, 255, 255, .045) 69.04%,
      transparent 69.16%
    ),
    linear-gradient(
      118deg,
      transparent 0 78%,
      rgba(238, 23, 53, .12) 78.03%,
      transparent 78.16%
    );
}

.benefits-work > .container-xxl {
  position: relative;
  z-index: 1;
}

.benefits-work .section-kicker {
  color: var(--st-red, #ee1735);
}

.benefits-work .section-title {
  color: #fff;
}

.benefits-work .section-copy {
  color: rgba(255, 255, 255, .68);
}

.benefits-work-list {
  margin-top: 2.2rem;
  border-top: 1px solid rgba(255, 255, 255, .16);
}

.benefits-work-item {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 1rem;
  align-items: start;

  padding: 1.05rem 0;

  border-bottom: 1px solid rgba(255, 255, 255, .16);
}

.benefits-work-item > i {
  margin-top: .2rem;
  color: var(--st-red, #ee1735);
}

.benefits-work-item strong {
  display: block;

  color: #fff;
  font-size: 1rem;
  font-weight: 800;
}

.benefits-work-item span {
  display: block;
  margin-top: .2rem;

  color: rgba(255, 255, 255, .62);
  font-size: .93rem;
  line-height: 1.5;
}


/* Bildbereich */

.benefits-work-visual {
  position: relative;
  min-height: 560px;
  overflow: hidden;

  background: #15283e;
}

.benefits-work-visual img {
  width: 100%;
  height: 100%;
  min-height: 560px;

  display: block;
  object-fit: cover;
}

.benefits-work-badge {
  position: absolute;
  left: 0;
  bottom: 0;

  width: min(420px, 92%);
  padding: 1.55rem 1.7rem;

  color: #fff;
  background: rgba(7, 27, 51, .95);

  border-top: 4px solid var(--st-red, #ee1735);
}

.benefits-work-badge strong {
  display: block;

  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1.2;
}

.benefits-work-badge span {
  display: block;
  margin-top: .45rem;

  color: rgba(255, 255, 255, .66);
  font-size: .9rem;
  line-height: 1.45;
}


/* Buttons */

.benefits-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .9rem;
  margin-top: 2rem;
}


/* ---------------------------------------------------------
   RESPONSIVE
   --------------------------------------------------------- */

@media (max-width: 1199.98px) {
  .benefits-grid-section,
  .benefits-work {
    padding: 88px 0;
  }

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

  .benefits-work-visual,
  .benefits-work-visual img {
    min-height: 500px;
  }
}


@media (max-width: 991.98px) {
  .benefits-grid-section,
  .benefits-work {
    padding: 76px 0;
  }

  .benefits-work-visual {
    margin-top: 1.2rem;
  }
}


@media (max-width: 767.98px) {
  .benefits-hero {
    min-height: 535px;
    background-position: center, 72% center;
  }

  .benefits-hero h1 {
    font-size: clamp(3rem, 12vw, 4.7rem);
  }

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

  .benefit-card {
    min-height: auto;
  }

  .benefits-work-visual,
  .benefits-work-visual img {
    min-height: 380px;
  }
}


@media (max-width: 575.98px) {
  .benefits-grid-section,
  .benefits-work {
    padding: 64px 0;
  }

  .benefits-hero {
    min-height: 505px;
  }

  .benefits-hero > .container-xxl {
    padding-top: 5.5rem;
    padding-bottom: 3.5rem;
  }

  .benefits-work-badge {
    width: 100%;
  }
}
