:root {
  --red: #e30613; /* nah an RAL 3020 Verkehrsrot */
  --turquoise: #00a6a6; /* dezent, nur als Restakzent */
  --black: #050607;
  --black-2: #101214;
  --white: #ffffff;
  --light: #f4f4f2;
  --text: #101214;
  --muted: #6b6f76;
  --line: rgba(255,255,255,.16);
  --font-display: "Arial Narrow", "Roboto Condensed", "Helvetica Neue Condensed", Impact, sans-serif;
  --font-body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --container: min(1180px, calc(100vw - 48px));
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--black);
}

body {
  margin: 0;
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.5;
  overflow-x: hidden;
}

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

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

.container {
  width: var(--container);
  margin-inline: auto;
}

.section-dark {
  color: var(--white);
  background: var(--black);
}

.section-light {
  background:
    linear-gradient(180deg, rgba(255,255,255,.88), rgba(255,255,255,.96)),
    url("assets/contour-lines.svg");
  background-size: cover;
  color: var(--text);
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: max(24px, calc((100vw - 1180px) / 2));
  background: linear-gradient(180deg, rgba(5,6,7,.86), rgba(5,6,7,.38), rgba(5,6,7,0));
  backdrop-filter: blur(10px);
  transition: background .25s ease, height .25s ease, border .25s ease;
}

.site-header.is-scrolled {
  height: 66px;
  background: rgba(5,6,7,.92);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--white);
  min-width: max-content;
}

.brand-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  background: var(--red);
  color: #fff;
  font: 900 31px/1 var(--font-body);
  letter-spacing: -0.08em;
}

.brand-text {
  display: grid;
  line-height: 1;
}

.brand-text strong {
  font-size: 24px;
  letter-spacing: .02em;
  font-weight: 900;
  font-style: italic;
}

.brand-text small {
  margin-top: 3px;
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: .22em;
  opacity: .75;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}

.site-nav a {
  opacity: .86;
  transition: opacity .2s ease, color .2s ease;
}

.site-nav a:hover {
  opacity: 1;
  color: var(--red);
}

.nav-cta {
  padding: 14px 22px;
  background: var(--red);
  color: #fff !important;
  opacity: 1 !important;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,.24);
  background: transparent;
  color: white;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: white;
}

.hero {
  position: relative;
  min-height: 760px;
  display: grid;
  align-items: end;
  padding: 132px 0 72px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% center;
  filter: contrast(1.12) saturate(.95) brightness(.58);
  transform: scale(1.03);
  transition: transform .2s linear;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 74% 48%, rgba(227,6,19,.10), transparent 31%),
    linear-gradient(90deg, rgba(5,6,7,.96) 0%, rgba(5,6,7,.78) 31%, rgba(5,6,7,.22) 62%, rgba(5,6,7,.64) 100%),
    linear-gradient(180deg, rgba(5,6,7,.4), rgba(5,6,7,.98));
}

.hero::before,
.band::before,
.contact-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("assets/contour-lines.svg");
  background-size: cover;
  opacity: .18;
  mix-blend-mode: screen;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--red);
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: .16em;
  font-size: 13px;
}

.eyebrow.red {
  color: var(--red);
}

h1,
h2,
h3 {
  margin: 0;
  line-height: .95;
}

h1,
h2 {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: .035em;
}

h1 {
  max-width: 620px;
  font-size: clamp(68px, 9vw, 136px);
  text-shadow: 0 10px 30px rgba(0,0,0,.32);
}

h1 span,
.contact-cta h2 span,
.jobs h2 span {
  color: var(--red);
}

h2 {
  font-size: clamp(42px, 5.3vw, 78px);
}

h3 {
  font-size: 19px;
  text-transform: uppercase;
  letter-spacing: .03em;
}

.hero-copy {
  max-width: 520px;
  margin: 26px 0 28px;
  font-size: 17px;
  color: rgba(255,255,255,.84);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 25px;
  font-weight: 900;
  letter-spacing: .02em;
  border: 1px solid transparent;
  transition: transform .2s ease, background .2s ease, border .2s ease;
}

.btn::after {
  content: "→";
  margin-left: 16px;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-red {
  background: var(--red);
  color: var(--white);
}

.btn-red:hover {
  background: #c9000b;
}

.btn-ghost {
  border-color: rgba(255,255,255,.34);
  color: var(--white);
  background: rgba(255,255,255,.04);
}

.btn-ghost:hover {
  border-color: rgba(255,255,255,.68);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  max-width: 1050px;
  margin-top: 54px;
  border-top: 1px solid rgba(255,255,255,.14);
  border-bottom: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.12);
}

.hero-stats article {
  padding: 25px 28px;
  background: rgba(5,6,7,.68);
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 98px;
}

.stat-number,
.plus,
.unit,
.stat-icon {
  color: var(--red);
  font-size: clamp(42px, 5vw, 72px);
  font-family: var(--font-display);
  font-weight: 900;
  line-height: .8;
}

.hero-stats small {
  max-width: 116px;
  text-transform: uppercase;
  letter-spacing: .05em;
  font-weight: 900;
  color: #fff;
}


.split-head {
  display: grid;
  grid-template-columns: 1.25fr .9fr;
  gap: 70px;
  padding: 88px 0 32px;
  align-items: end;
}

.split-head p:last-child {
  max-width: 500px;
  font-size: 18px;
  font-weight: 650;
}

.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  padding-bottom: 78px;
}

.card {
  min-height: 242px;
  padding: 30px 28px;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(0,0,0,.10);
  box-shadow: 0 22px 60px rgba(0,0,0,.06);
  transition: transform .25s ease, border .25s ease, box-shadow .25s ease;
}

.card:hover {
  transform: translateY(-6px);
  border-color: rgba(227,6,19,.32);
  box-shadow: 0 28px 90px rgba(0,0,0,.12);
}

.card p {
  color: #50555b;
  margin: 16px 0 0;
}

.line-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 22px;
  border: 2px solid var(--red);
  position: relative;
}

.line-icon.material {
  clip-path: polygon(50% 0, 100% 90%, 0 90%);
}

.line-icon.truck::before {
  content: "";
  position: absolute;
  left: 8px; top: 18px;
  width: 24px; height: 16px;
  border: 2px solid var(--red);
}

.line-icon.truck::after {
  content: "";
  position: absolute;
  left: 9px; bottom: 6px;
  width: 8px; height: 8px;
  border-radius: 50%;
  border: 2px solid var(--red);
  box-shadow: 25px 0 0 -2px #fff, 25px 0 0 0 var(--red);
}

.line-icon.recycle {
  border-radius: 50%;
  clip-path: polygon(50% 0, 100% 35%, 88% 100%, 12% 100%, 0 35%);
}

.line-icon.storage::before {
  content:"";
  position:absolute;
  inset:12px 10px 8px;
  border:2px solid var(--red);
}

.band {
  position: relative;
  overflow: hidden;
  padding: 74px 0;
}

.verbund-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: .9fr 1.25fr;
  gap: 70px;
  align-items: center;
}

.verbund-grid p {
  color: rgba(255,255,255,.78);
  max-width: 480px;
}

.flow {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 16px;
  align-items: center;
}

.flow article {
  min-height: 128px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.25);
  background: rgba(255,255,255,.05);
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: .08em;
}

.flow span {
  color: var(--white);
  font-size: 36px;
  opacity: .72;
}

.jobs {
  padding: 0 0 0;
}

.jobs-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 420px;
  align-items: stretch;
  background: #fff;
  border-top: 1px solid rgba(0,0,0,.08);
  border-bottom: 1px solid rgba(0,0,0,.08);
  overflow: hidden;
}

.jobs-text {
  padding: clamp(42px, 6vw, 78px) clamp(28px, 5vw, 66px);
}

.jobs-text p {
  max-width: 540px;
  font-size: 17px;
  color: #41464d;
}

.jobs-image {
  position: relative;
  min-height: 370px;
  background: #eee;
  overflow: hidden;
}

.jobs-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,.98), rgba(255,255,255,.72), rgba(255,255,255,.10)),
    url("assets/contour-lines.svg");
  background-size: cover;
  z-index: 1;
  pointer-events: none;
}

.jobs-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 64% center;
  filter: saturate(.95) contrast(1.07) brightness(1.05);
}

.benefits {
  display: grid;
  grid-template-columns: repeat(4, minmax(100px, 1fr));
  gap: 0;
  margin: 26px 0 28px;
  border-top: 1px solid rgba(0,0,0,.14);
  border-bottom: 1px solid rgba(0,0,0,.14);
}

.benefits span {
  min-height: 70px;
  display: flex;
  align-items: center;
  padding: 14px 16px;
  border-right: 1px solid rgba(0,0,0,.14);
  font-size: 13px;
  line-height: 1.15;
  font-weight: 900;
  text-transform: uppercase;
}

.benefits span:last-child {
  border-right: 0;
}

.contact-cta {
  position: relative;
  overflow: hidden;
  padding: 70px 0;
  background:
    linear-gradient(90deg, rgba(5,6,7,.98), rgba(5,6,7,.80)),
    url("assets/lkw-hero-alt.jpg");
  background-size: cover;
  background-position: center;
}

.contact-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: 60px;
  align-items: center;
}

.contact-grid p {
  color: rgba(255,255,255,.75);
  max-width: 540px;
}

.contact-actions {
  justify-content: flex-end;
}

.contact-box {
  min-width: 250px;
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid rgba(255,255,255,.28);
  background: rgba(5,6,7,.44);
  color: #fff;
  font-weight: 900;
}

.site-footer {
  padding: 54px 0 24px;
  border-top: 1px solid rgba(255,255,255,.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr .8fr .8fr .9fr;
  gap: 44px;
}

.footer-grid h4 {
  margin: 0 0 16px;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 13px;
}

.footer-grid a,
.footer-grid p {
  display: block;
  color: rgba(255,255,255,.72);
  margin: 8px 0;
  font-size: 14px;
}

.footer-brand {
  margin-bottom: 18px;
}

.legal {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 44px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.08);
  color: rgba(255,255,255,.58);
  font-size: 13px;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .menu-toggle { display: block; position: relative; z-index: 60; }
  .site-nav {
    position: fixed;
    inset: 0 0 auto 0;
    height: 100vh;
    padding: 110px 28px 28px;
    background: rgba(5,6,7,.97);
    display: grid;
    align-content: start;
    gap: 22px;
    transform: translateX(100%);
    transition: transform .25s ease;
  }
  .site-nav.is-open { transform: translateX(0); }
  .site-nav a { font-size: 22px; }
  .nav-cta { width: fit-content; font-size: 16px !important; }
  .hero { min-height: 720px; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .split-head,
  .verbund-grid,
  .jobs-card,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .cards { grid-template-columns: 1fr; }
  .flow { grid-template-columns: 1fr; }
  .flow span { transform: rotate(90deg); justify-self: center; }
  .contact-actions { justify-content: flex-start; }
}

@media (max-width: 640px) {
  :root { --container: min(100vw - 28px, 1180px); }
  .site-header { padding-inline: 14px; }
  .brand-text strong { font-size: 19px; }
  .hero {
    min-height: 760px;
    padding-bottom: 44px;
  }
  .hero-bg img { object-position: 66% center; }
  h1 { font-size: 58px; }
  h2 { font-size: 42px; }
  .hero-stats,
  .cards,
  .benefits {
    grid-template-columns: 1fr;
  }
  .hero-stats article { padding: 20px; }
  .split-head { gap: 24px; padding-top: 70px; }
  .cards { padding-bottom: 60px; }
  .jobs-text { padding: 42px 22px; }
  .jobs-image { min-height: 260px; }
  .contact-box { width: 100%; }
  .btn { width: 100%; }
  .legal { flex-direction: column; }
}


/* Legal pages */
.legal-hero {
  min-height: 340px;
  padding: 132px 0 70px;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(5,6,7,.97), rgba(5,6,7,.84)),
    url("assets/contour-lines.svg");
  background-size: cover;
}

.legal-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 4px;
  background: var(--red);
}

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

.legal-hero h1 {
  max-width: 900px;
  font-size: clamp(52px, 7vw, 96px);
}

.legal-hero p {
  max-width: 680px;
  margin: 22px 0 0;
  color: rgba(255,255,255,.75);
  font-size: 17px;
}

.legal-page {
  background:
    linear-gradient(180deg, rgba(255,255,255,.96), rgba(255,255,255,.98)),
    url("assets/contour-lines.svg");
  background-size: cover;
  padding: 72px 0 92px;
}

.legal-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 56px;
  align-items: start;
}

.legal-sidebar {
  position: sticky;
  top: 92px;
  padding: 24px;
  background: #fff;
  border: 1px solid rgba(0,0,0,.10);
  box-shadow: 0 22px 60px rgba(0,0,0,.06);
}

.legal-sidebar strong {
  display: block;
  margin-bottom: 14px;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 12px;
}

.legal-sidebar a {
  display: block;
  padding: 9px 0;
  color: #202327;
  font-weight: 800;
  border-bottom: 1px solid rgba(0,0,0,.08);
}

.legal-sidebar a:last-child {
  border-bottom: 0;
}

.legal-content {
  background: #fff;
  border: 1px solid rgba(0,0,0,.10);
  box-shadow: 0 22px 70px rgba(0,0,0,.07);
  padding: clamp(28px, 5vw, 58px);
}

.legal-content h2 {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1;
  margin: 0 0 18px;
  text-transform: uppercase;
}

.legal-content h3 {
  margin: 34px 0 10px;
  font-size: 20px;
  line-height: 1.2;
  text-transform: none;
  letter-spacing: 0;
}

.legal-content p,
.legal-content li {
  color: #3f444a;
  font-size: 16px;
}

.legal-content p {
  margin: 0 0 16px;
}

.legal-content ul {
  margin: 0 0 18px;
  padding-left: 22px;
}

.placeholder-box {
  margin: 24px 0;
  padding: 22px;
  border-left: 4px solid var(--red);
  background: #f6f6f4;
  color: #222;
}

.placeholder-box strong {
  color: var(--red);
}

@media (max-width: 860px) {
  .legal-layout {
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .legal-sidebar {
    position: static;
  }
}


/* --- v2 adjustments --- */
.cards-three {
  grid-template-columns: repeat(3, 1fr);
}

.hero-stats article:last-child .stat-number {
  color: var(--red);
}

.hero-stats article:last-child small {
  max-width: 150px;
}

.triangle-loop {
  position: relative;
  min-height: 360px;
  display: grid;
  place-items: center;
}

.triangle-shape {
  width: min(420px, 100%);
  opacity: .9;
}

.triangle-shape svg {
  width: 100%;
  height: auto;
  display: block;
}

.triangle-node {
  position: absolute;
  width: 190px;
  padding: 18px 18px 16px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(8px);
  box-shadow: 0 18px 40px rgba(0,0,0,.16);
}

.triangle-node strong {
  display: block;
  margin-bottom: 8px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 14px;
}

.triangle-node span {
  display: block;
  color: rgba(255,255,255,.72);
  font-size: 14px;
  line-height: 1.4;
}

.node-top {
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
}

.node-left {
  left: 0;
  bottom: 4px;
}

.node-right {
  right: 0;
  bottom: 4px;
}

.benefits-eight {
  grid-template-columns: repeat(4, minmax(120px, 1fr));
}

.benefits-eight span {
  min-height: 78px;
}

@media (max-width: 1100px) {
  .cards-three {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 980px) {
  .triangle-loop {
    min-height: auto;
    padding: 16px 0 4px;
    display: block;
  }

  .triangle-shape {
    width: 100%;
    max-width: 420px;
    margin: 0 auto 24px;
  }

  .triangle-node {
    position: static;
    width: 100%;
    margin: 0 0 14px;
    transform: none;
  }

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

@media (max-width: 640px) {
  .benefits-eight {
    grid-template-columns: 1fr;
  }
}


/* --- v3 fixes --- */

/* Hero now has three clean stats, no broken fourth card */
.hero-stats {
  grid-template-columns: repeat(3, 1fr);
  max-width: 880px;
}

.hero-stats article {
  background: rgba(5,6,7,.72);
}

/* Better job image: full-bleed, wider, smoother fade into white */
.jobs-card {
  grid-template-columns: 0.95fr 1.25fr;
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 28px 80px rgba(0,0,0,.08);
}

.jobs-image {
  min-height: 470px;
  background: #f4f4f2;
}

.jobs-image::before {
  background:
    linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(255,255,255,.92) 17%, rgba(255,255,255,.42) 43%, rgba(255,255,255,.06) 72%),
    linear-gradient(180deg, rgba(255,255,255,.18), rgba(255,255,255,.34)),
    url("assets/contour-lines.svg");
  background-size: cover;
  opacity: 1;
}

.jobs-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
  filter: saturate(.94) contrast(1.03) brightness(1.05);
  transform: scale(1.04);
}

/* Replace grid-table benefits with modern pills */
.benefits,
.benefits-eight {
  display: none;
}

.benefit-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 30px;
  max-width: 620px;
}

.benefit-pills span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 14px 10px 12px;
  border: 1px solid rgba(0,0,0,.11);
  background: rgba(255,255,255,.82);
  box-shadow: 0 10px 30px rgba(0,0,0,.045);
  color: #111418;
  font-size: 13px;
  line-height: 1.05;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .02em;
  white-space: normal;
}

.benefit-pills span::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-right: 10px;
  background: var(--red);
  flex: 0 0 auto;
}

/* Override old v2 media rules where needed */
@media (max-width: 980px) {
  .hero-stats {
    grid-template-columns: 1fr;
    max-width: 100%;
  }

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

  .jobs-image {
    min-height: 320px;
  }

  .jobs-image::before {
    background:
      linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(255,255,255,.44) 36%, rgba(255,255,255,.08) 100%),
      url("assets/contour-lines.svg");
  }
}

@media (max-width: 640px) {
  .benefit-pills {
    gap: 8px;
  }

  .benefit-pills span {
    width: 100%;
    min-height: 40px;
  }
}


/* --- v4 refinements --- */

/* Hero: use more of the image, keep truck more visible */
.hero-bg img {
  object-position: center center;
  filter: contrast(1.06) saturate(1.0) brightness(.68);
}

.hero-overlay {
  background:
    radial-gradient(circle at 74% 48%, rgba(227,6,19,.08), transparent 34%),
    linear-gradient(90deg, rgba(5,6,7,.94) 0%, rgba(5,6,7,.68) 34%, rgba(5,6,7,.22) 62%, rgba(5,6,7,.48) 100%),
    linear-gradient(180deg, rgba(5,6,7,.30), rgba(5,6,7,.90));
}

/* Fix stat layout so text never breaks onto odd dark fragments */
.hero-stats {
  grid-template-columns: repeat(3, 1fr);
  max-width: 930px;
  gap: 1px;
}

.hero-stats article {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 10px;
  min-height: 122px;
  padding: 24px 26px;
  overflow: hidden;
}

.hero-stats article small {
  max-width: none;
  display: block;
  line-height: 1.12;
  word-break: keep-all;
}

.stat-main {
  display: flex;
  align-items: flex-end;
  gap: 2px;
}

.hero-stats .unit {
  font-size: clamp(34px, 4vw, 56px);
  line-height: .95;
  white-space: nowrap;
}

/* Verbund headline text */
#verbund h2 {
  max-width: 520px;
}

/* White job section with small integrated image card instead of cropped center strip */
.jobs-card-clean {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 34px;
  align-items: center;
  background:
    linear-gradient(180deg, rgba(255,255,255,.98), rgba(255,255,255,.98)),
    url("assets/contour-lines.svg");
  background-size: cover;
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 28px 80px rgba(0,0,0,.08);
}

.jobs-text {
  position: relative;
  z-index: 2;
}

.jobs-visual {
  position: relative;
  min-height: 420px;
  display: grid;
  place-items: center;
  padding: 24px 18px 24px 0;
}

.jobs-visual::before {
  content: "";
  position: absolute;
  inset: 18px 0 18px 30px;
  background: linear-gradient(135deg, rgba(0,166,166,.06), rgba(227,6,19,.06));
  border-radius: 28px;
}

.jobs-visual-card {
  position: relative;
  width: min(100%, 560px);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 26px 60px rgba(0,0,0,.14);
  background: #e9ecee;
}

.jobs-visual-card img {
  width: 100%;
  height: auto;
  display: block;
}

/* More robust benefit pills */
.benefit-pills {
  display: grid;
  grid-template-columns: repeat(2, minmax(180px, 1fr));
  gap: 10px;
  margin: 28px 0 30px;
  max-width: 620px;
}

.benefit-pills span {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 10px 14px 10px 12px;
  border: 1px solid rgba(0,0,0,.11);
  border-radius: 12px;
  background: rgba(255,255,255,.90);
  box-shadow: 0 10px 30px rgba(0,0,0,.045);
  color: #111418;
  font-size: 13px;
  line-height: 1.1;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .02em;
}

/* New contact image section */
.contact-cta-image {
  position: relative;
  overflow: hidden;
  padding: 72px 0;
  background: var(--black);
}

.contact-bg,
.contact-overlay {
  position: absolute;
  inset: 0;
}

.contact-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: brightness(.42) contrast(1.06) saturate(.95);
}

.contact-overlay {
  background:
    linear-gradient(90deg, rgba(5,6,7,.92) 0%, rgba(5,6,7,.70) 40%, rgba(5,6,7,.62) 100%),
    url("assets/contour-lines.svg");
  background-size: cover;
  opacity: .88;
}

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

/* Footer lines more visible */
.footer-lines {
  position: relative;
  overflow: hidden;
}

.footer-lines::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("assets/contour-lines.svg");
  background-size: cover;
  opacity: .28;
  mix-blend-mode: screen;
  pointer-events: none;
}

.footer-lines::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5,6,7,.84), rgba(5,6,7,.96));
  pointer-events: none;
}

.footer-lines > * {
  position: relative;
  z-index: 1;
}

/* Mobile refinements */
@media (max-width: 980px) {
  .hero-stats {
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  .jobs-card-clean {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .jobs-visual {
    min-height: auto;
    padding: 0 22px 28px;
  }

  .jobs-visual::before {
    inset: 0 22px 0 22px;
  }

  .benefit-pills {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .benefit-pills {
    grid-template-columns: 1fr;
  }

  .jobs-visual {
    padding: 0 16px 22px;
  }

  .hero-bg img {
    object-position: 62% center;
  }
}


/* --- v5 logo + refined CSS icons --- */

/* Original-Logo im Header/Footer */
.brand-logo {
  display: inline-flex;
  align-items: center;
  max-width: 294px;
  min-width: 0;
}

.brand-logo img {
  display: block;
  width: min(294px, 27vw);
  height: auto;
  filter: drop-shadow(0 8px 18px rgba(0,0,0,.35));
}

.site-header.is-scrolled .brand-logo img {
  width: min(260px, 25vw);
}

.footer-brand.brand-logo img {
  width: min(270px, 100%);
  background: rgba(255,255,255,.94);
  padding: 8px 9px;
}

/* Neue CSS-Service-Icons */
.line-icon {
  width: 112px;
  height: 82px;
  margin-bottom: 22px;
  border: 0 !important;
  position: relative;
}

/* Schüttgüter: mehrere Materialhaufen */
.icon-aggregate {
  border-bottom: 3px solid #111418 !important;
  background:
    radial-gradient(circle, #111418 0 1.5px, transparent 1.8px) 14px 45px / 17px 14px,
    radial-gradient(circle, var(--red) 0 1.4px, transparent 1.7px) 52px 34px / 19px 16px;
}

.icon-aggregate::before,
.icon-aggregate::after {
  content: "";
  position: absolute;
  bottom: 7px;
  background: transparent;
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
}

.icon-aggregate::before {
  left: 4px;
  width: 68px;
  height: 52px;
  border: 3px solid #111418;
}

.icon-aggregate::after {
  right: 2px;
  width: 58px;
  height: 58px;
  border: 3px solid var(--red);
}

/* Fuhrleistung: stilisierter Kipper */
.icon-kipper {
  width: 126px;
  height: 82px;
  border-bottom: 3px solid #111418 !important;
  background:
    linear-gradient(160deg, transparent 0 42px, var(--red) 43px 49px, transparent 50px) 8px 30px / 48px 18px no-repeat;
}

.icon-kipper::before {
  content: "";
  position: absolute;
  left: 5px;
  bottom: 19px;
  width: 44px;
  height: 38px;
  background: #fff;
  border: 3px solid #111418;
  border-radius: 6px 4px 2px 2px;
  box-shadow:
    48px 7px 0 0 #00a6a6,
    48px 7px 0 3px #111418,
    74px 7px 0 0 #00a6a6,
    74px 7px 0 3px #111418;
}

.icon-kipper::after {
  content: "";
  position: absolute;
  left: 16px;
  bottom: 4px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid #111418;
  box-shadow:
    58px 0 0 -3px #fff,
    58px 0 0 0 #111418,
    86px 0 0 -3px #fff,
    86px 0 0 0 #111418,
    5px -36px 0 -6px var(--red);
}

/* Recycling: Kreislauf + Haufen + Blatt-Anmutung */
.icon-recycling {
  width: 116px;
  height: 86px;
  background:
    radial-gradient(ellipse at 45% 33%, transparent 0 10px, #00a6a6 11px 13px, transparent 14px),
    radial-gradient(ellipse at 61% 29%, transparent 0 12px, #00a6a6 13px 15px, transparent 16px),
    linear-gradient(55deg, transparent 0 54px, #00a6a6 55px 58px, transparent 59px);
}

.icon-recycling::before {
  content: "";
  position: absolute;
  inset: 4px 9px 9px 9px;
  border: 4px solid #111418;
  border-top-color: var(--red);
  border-right-color: var(--red);
  border-radius: 50%;
  transform: rotate(-18deg);
}

.icon-recycling::after {
  content: "";
  position: absolute;
  left: 32px;
  bottom: 8px;
  width: 52px;
  height: 31px;
  border: 2px solid #111418;
  background:
    radial-gradient(circle, #111418 0 1.3px, transparent 1.6px) 7px 10px / 13px 12px,
    #fff;
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
}

@media (max-width: 780px) {
  .brand-logo img,
  .site-header.is-scrolled .brand-logo img {
    width: min(214px, 58vw);
  }

  .site-header {
    height: 84px;
  }

  .site-header.is-scrolled {
    height: 74px;
  }
}

@media (max-width: 420px) {
  .brand-logo img,
  .site-header.is-scrolled .brand-logo img {
    width: 190px;
  }
}


/* --- v6 brand + verbund refinements --- */

/* compact brand with small image + wordmark */
.brand-compact {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
  max-width: none;
}

.brand-symbol {
  width: 36px;
  height: 36px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 5px 12px rgba(0,0,0,.28));
}

.brand-compact .brand-text strong {
  font-size: 28px;
  line-height: .9;
  font-weight: 900;
  font-style: italic;
  letter-spacing: .02em;
}

.brand-compact .brand-text small {
  font-size: 10px;
  letter-spacing: .20em;
  margin-top: 2px;
}

.site-header {
  align-items: center;
}

.footer-brand.brand-compact {
  gap: 8px;
}

.footer-brand .brand-symbol {
  width: 28px;
  height: 28px;
}

.footer-brand .brand-text strong {
  font-size: 22px;
}

.footer-brand .brand-text small {
  font-size: 9px;
}

/* deactivate oversized full logo styles when not used */
.brand-logo img {
  width: 1px;
  height: 1px;
}

/* new verbund layout */
.verbund-modern {
  display: grid;
  gap: 38px;
}

.verbund-head {
  max-width: 920px;
}

.verbund-head p:last-child {
  max-width: 920px;
  color: rgba(255,255,255,.78);
  font-size: 17px;
}

.verbund-flow {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 22px;
  align-items: stretch;
}

.verbund-card {
  min-height: 210px;
  padding: 28px 26px;
  border: 1px solid rgba(255,255,255,.16);
  background:
    linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03)),
    url("assets/contour-lines.svg");
  background-size: cover;
  box-shadow: 0 22px 60px rgba(0,0,0,.16);
}

.verbund-card h3 {
  color: #fff;
  margin: 0 0 14px;
  font-size: 24px;
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.verbund-card p {
  color: rgba(255,255,255,.76);
  margin: 0;
  font-size: 16px;
}

.verbund-center {
  display: grid;
  grid-template-columns: auto minmax(280px, 360px) auto;
  gap: 14px;
  align-items: center;
}

.center-card {
  min-height: 240px;
  border-color: rgba(227,6,19,.38);
  background:
    linear-gradient(180deg, rgba(227,6,19,.08), rgba(255,255,255,.05)),
    url("assets/contour-lines.svg");
  background-size: cover;
}

.verbund-arrow {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.06);
  color: var(--red);
  font-size: 28px;
  font-weight: 900;
}

/* header mobile */
@media (max-width: 980px) {
  .brand-symbol {
    width: 30px;
    height: 30px;
  }

  .brand-compact .brand-text strong {
    font-size: 22px;
  }

  .verbund-flow {
    grid-template-columns: 1fr;
  }

  .verbund-center {
    grid-template-columns: 1fr;
  }

  .verbund-arrow.left,
  .verbund-arrow.right {
    justify-self: center;
    transform: rotate(90deg);
  }
}

@media (max-width: 640px) {
  .brand-compact {
    gap: 8px;
  }

  .brand-symbol {
    width: 28px;
    height: 28px;
  }

  .brand-compact .brand-text strong {
    font-size: 20px;
  }

  .brand-compact .brand-text small {
    font-size: 9px;
    letter-spacing: .15em;
  }
}


/* --- v7 fixes: logo, image icons, stronger verbund --- */

/* Small full logo, no clipping */
.brand-logo-small {
  display: inline-flex;
  align-items: center;
  max-width: 210px;
  height: auto;
  overflow: visible;
  line-height: 0;
}

.brand-logo-small img {
  display: block;
  width: 180px;
  max-width: 20vw;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(0,0,0,.38));
}

.site-header.is-scrolled .brand-logo-small img {
  width: 168px;
}

.footer-brand.brand-logo-small img {
  width: 145px;
  max-width: 100%;
  background: rgba(255,255,255,.96);
  padding: 5px 6px;
  filter: none;
}

/* Disable previous bad crop styles */
.brand-symbol,
.brand-compact {
  display: none !important;
}

/* Real image icons instead of CSS drawings */
.line-icon,
.icon-aggregate,
.icon-kipper,
.icon-recycling {
  display: none !important;
}

.service-icon-img {
  display: block;
  width: 150px;
  max-width: 100%;
  height: auto;
  margin: 0 0 22px;
  border-radius: 18px;
  box-shadow: 0 18px 50px rgba(0,0,0,.13);
}

/* Make white service cards work with black image icons */
.card {
  overflow: hidden;
}

.card h3 {
  margin-top: 4px;
}

/* Verbund as exchange/cycle around transport */
.verbund-flow,
.verbund-center,
.triangle-loop,
.triangle-shape,
.triangle-node {
  display: none !important;
}

.verbund-flow-cycle {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.08fr 1fr;
  gap: 22px;
  align-items: stretch;
}

.verbund-flow-cycle::before,
.verbund-flow-cycle::after {
  content: "";
  position: absolute;
  top: 50%;
  width: calc(50% - 175px);
  height: 2px;
  background: linear-gradient(90deg, var(--red), rgba(0,166,166,.72));
  transform: translateY(-50%);
  pointer-events: none;
}

.verbund-flow-cycle::before {
  left: calc(33.333% - 5px);
}

.verbund-flow-cycle::after {
  right: calc(33.333% - 5px);
}

.verbund-card {
  position: relative;
  z-index: 1;
  min-height: 286px;
  padding: 30px 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.transport-card {
  transform: translateY(-12px);
  border-color: rgba(227,6,19,.48);
}

.card-number {
  color: var(--red);
  font-family: var(--font-display);
  font-size: 46px;
  line-height: .8;
  font-weight: 900;
  margin-bottom: 24px;
}

.partner-logos {
  margin-top: auto;
  padding-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.partner-logo {
  display: block;
  max-width: 190px;
  max-height: 64px;
  width: auto;
  height: auto;
  background: rgba(255,255,255,.94);
  padding: 8px 10px;
  border-radius: 10px;
}

/* Mobile */
@media (max-width: 980px) {
  .brand-logo-small img,
  .site-header.is-scrolled .brand-logo-small img {
    width: 150px;
    max-width: 42vw;
  }

  .verbund-flow-cycle {
    grid-template-columns: 1fr;
  }

  .verbund-flow-cycle::before,
  .verbund-flow-cycle::after {
    display: none;
  }

  .transport-card {
    transform: none;
  }

  .service-icon-img {
    width: 132px;
  }
}

@media (max-width: 640px) {
  .brand-logo-small img,
  .site-header.is-scrolled .brand-logo-small img {
    width: 136px;
    max-width: 50vw;
  }

  .site-header {
    height: 76px;
  }

  .site-header.is-scrolled {
    height: 66px;
  }

  .service-icon-img {
    width: 120px;
  }
}


/* --- v8 refinements: cleaner logo + photo service cards --- */

/* Header/Footer logo: constrain by height, not by aggressive width */
.brand-logo-small {
  display: inline-flex;
  align-items: center;
  overflow: visible;
  line-height: 0;
  max-width: none;
}

.brand-logo-small img {
  display: block;
  width: auto;
  height: 56px;
  max-width: none;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(0,0,0,.30));
}

.site-header.is-scrolled .brand-logo-small img {
  height: 50px;
  width: auto;
}

.footer-brand.brand-logo-small img {
  width: auto;
  height: 40px;
  background: rgba(255,255,255,.96);
  padding: 4px 5px;
  filter: none;
}

/* Nicer photo-based service images */
.service-icon-img {
  display: block;
  width: 100%;
  max-width: 220px;
  aspect-ratio: 320 / 220;
  object-fit: cover;
  height: auto;
  margin: 0 0 22px;
  border-radius: 20px;
  box-shadow: 0 18px 45px rgba(0,0,0,.14);
}

@media (max-width: 980px) {
  .brand-logo-small img,
  .site-header.is-scrolled .brand-logo-small img {
    height: 46px;
  }

  .footer-brand.brand-logo-small img {
    height: 36px;
  }
}

@media (max-width: 640px) {
  .brand-logo-small img,
  .site-header.is-scrolled .brand-logo-small img {
    height: 38px;
  }

  .footer-brand.brand-logo-small img {
    height: 32px;
  }

  .service-icon-img {
    max-width: 180px;
  }
}


/* --- v9 polishing: dark service cards, cleaner verbund, improved mobile hero --- */

/* Darker service cards with inserted images */
.cards.cards-three {
  align-items: stretch;
}

.card {
  background: #0d1013;
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 22px 60px rgba(0,0,0,.14);
  color: #fff;
  border-radius: 22px;
}

.card p {
  color: rgba(255,255,255,.76);
}

.card h3 {
  color: #fff;
}

.service-icon-img {
  display: block;
  width: 100%;
  max-width: none;
  margin: -2px -2px 20px -2px;
  border-radius: 18px;
  box-shadow: 0 14px 34px rgba(0,0,0,.22);
}

/* Equal-size verbund boxes and remove center line / special emphasis */
.verbund-flow-cycle::before,
.verbund-flow-cycle::after {
  display: none !important;
}

.transport-card {
  transform: none !important;
  border-color: rgba(255,255,255,.16) !important;
}

.verbund-card,
.transport-card,
.center-card,
.source-card,
.site-card {
  min-height: 286px;
  height: 100%;
}

.verbund-card {
  background:
    linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.03)),
    url("assets/contour-lines.svg");
  background-size: cover;
}

.card-number {
  margin-bottom: 18px;
}

/* Tidy logo placement a little more */
.brand-logo-small img {
  height: 52px;
}

.site-header.is-scrolled .brand-logo-small img {
  height: 46px;
}

/* Mobile hero cleanup */
@media (max-width: 640px) {
  .hero {
    min-height: 700px;
    padding: 112px 0 28px;
  }

  .hero-copy {
    margin: 18px 0 20px;
    font-size: 15px;
    max-width: 92%;
  }

  .hero-actions {
    gap: 10px;
    margin-bottom: 18px;
  }

  .hero-actions .btn {
    width: auto;
    min-height: 44px;
    padding: 0 16px;
    font-size: 13px;
  }

  .hero-stats {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 10px;
    margin-top: 24px;
    border: 0;
    background: transparent;
  }

  .hero-stats article {
    min-height: 92px;
    padding: 14px 10px;
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(5,6,7,.62);
    gap: 6px;
  }

  .hero-stats .stat-number,
  .hero-stats .plus,
  .hero-stats .unit {
    font-size: 30px;
  }

  .hero-stats .unit {
    font-size: 20px;
  }

  .hero-stats article small {
    font-size: 10px;
    letter-spacing: .03em;
    max-width: none;
    line-height: 1.15;
  }

  h1 {
    font-size: 48px;
    line-height: .92;
  }
}

@media (max-width: 420px) {
  .brand-logo-small img,
  .site-header.is-scrolled .brand-logo-small img {
    height: 34px;
  }

  .hero {
    min-height: 680px;
    padding-top: 106px;
  }

  .hero-actions {
    flex-wrap: wrap;
  }

  .hero-actions .btn {
    flex: 1 1 auto;
    justify-content: center;
  }

  .hero-stats .stat-number,
  .hero-stats .plus,
  .hero-stats .unit {
    font-size: 26px;
  }

  .hero-stats article small {
    font-size: 9px;
  }
}


/* --- v10 header wordmark --- */

/* Header: small logo + expressive Bill Baustoffe wordmark */
.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  overflow: visible;
  min-width: max-content;
}

.brand-small-logo {
  display: block;
  width: auto;
  height: 38px;
  object-fit: contain;
  background: rgba(255,255,255,.96);
  padding: 3px 4px;
  border-radius: 2px;
  filter: drop-shadow(0 8px 18px rgba(0,0,0,.28));
}

.brand-wordmark {
  display: grid;
  line-height: 1;
  transform: translateY(1px);
}

.brand-wordmark strong {
  font-family: "Arial Narrow", "Roboto Condensed", "Helvetica Neue Condensed", Impact, sans-serif;
  font-size: 31px;
  font-weight: 900;
  font-style: italic;
  letter-spacing: .015em;
  text-transform: none;
  color: #fff;
  text-shadow: 0 8px 18px rgba(0,0,0,.35);
}

.brand-wordmark small {
  margin-top: 4px;
  color: rgba(255,255,255,.74);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

/* Override old image-only header logo sizing for lockup */
.site-header.is-scrolled .brand-lockup .brand-small-logo {
  height: 34px;
}

.site-header.is-scrolled .brand-lockup .brand-wordmark strong {
  font-size: 28px;
}

/* Keep footer image-only logo as before */
.footer-brand.brand-logo-small img {
  width: auto;
  height: 40px;
}

@media (max-width: 980px) {
  .brand-small-logo {
    height: 32px;
  }

  .brand-wordmark strong {
    font-size: 25px;
  }

  .brand-wordmark small {
    font-size: 8px;
    letter-spacing: .12em;
  }

  .site-header.is-scrolled .brand-lockup .brand-small-logo {
    height: 30px;
  }

  .site-header.is-scrolled .brand-lockup .brand-wordmark strong {
    font-size: 23px;
  }
}

@media (max-width: 640px) {
  .brand-lockup {
    gap: 8px;
  }

  .brand-small-logo {
    height: 28px;
    padding: 2px 3px;
  }

  .brand-wordmark strong {
    font-size: 21px;
  }

  .brand-wordmark small {
    display: none;
  }

  .site-header.is-scrolled .brand-lockup .brand-small-logo {
    height: 26px;
  }

  .site-header.is-scrolled .brand-lockup .brand-wordmark strong {
    font-size: 20px;
  }
}

@media (max-width: 390px) {
  .brand-small-logo {
    height: 24px;
  }

  .brand-wordmark strong {
    font-size: 18px;
  }
}


/* --- v11 header logo based on official wordmark --- */

/* Header now uses the actual official logo instead of the improvised font */
.brand-lockup,
.brand-small-logo,
.brand-wordmark {
  display: none !important;
}

.brand-header-logo {
  display: inline-flex;
  align-items: center;
  overflow: visible;
  line-height: 0;
  max-width: none;
}

.brand-header-logo img {
  display: block;
  width: auto;
  height: 48px;
  object-fit: contain;
  background: rgba(255,255,255,.98);
  padding: 4px 6px;
  border-radius: 2px;
  filter: drop-shadow(0 8px 18px rgba(0,0,0,.28));
}

.site-header.is-scrolled .brand-header-logo img {
  height: 44px;
}

@media (max-width: 980px) {
  .brand-header-logo img,
  .site-header.is-scrolled .brand-header-logo img {
    height: 40px;
  }
}

@media (max-width: 640px) {
  .brand-header-logo img,
  .site-header.is-scrolled .brand-header-logo img {
    height: 34px;
    padding: 3px 4px;
  }
}

@media (max-width: 390px) {
  .brand-header-logo img,
  .site-header.is-scrolled .brand-header-logo img {
    height: 30px;
  }
}


/* --- v12 inquiry tool --- */
.inquiry {
  padding-bottom: 82px;
}

.inquiry-shell {
  background: #0d1013;
  color: #fff;
  border-radius: 28px;
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 30px 90px rgba(0,0,0,.16);
  overflow: hidden;
  position: relative;
}

.inquiry-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("assets/contour-lines.svg");
  background-size: cover;
  opacity: .18;
  mix-blend-mode: screen;
  pointer-events: none;
}

.inquiry-form {
  position: relative;
  z-index: 1;
  padding: clamp(24px, 4vw, 48px);
}

.inquiry-step {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr);
  gap: 26px;
  padding: 30px 0;
  border-bottom: 1px solid rgba(255,255,255,.10);
}

.inquiry-step:first-child {
  padding-top: 0;
}

.inquiry-step:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.step-number {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.05);
  color: var(--red);
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
}

.inquiry-step h3 {
  margin: 0 0 18px;
  color: #fff;
  font-size: clamp(22px, 3vw, 34px);
  font-family: var(--font-display);
  letter-spacing: .04em;
}

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

.choice-card {
  display: grid;
  gap: 6px;
  min-height: 130px;
  padding: 22px;
  cursor: pointer;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.05);
  transition: border .2s ease, background .2s ease, transform .2s ease;
}

.choice-card:hover {
  transform: translateY(-2px);
  border-color: rgba(227,6,19,.45);
}

.choice-card input {
  accent-color: var(--red);
}

.choice-card span {
  font-size: 18px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.choice-card small {
  color: rgba(255,255,255,.66);
  line-height: 1.35;
}

.choice-card:has(input:checked) {
  border-color: var(--red);
  background: rgba(227,6,19,.10);
}

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

.form-grid label {
  display: grid;
  gap: 8px;
  color: rgba(255,255,255,.72);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.form-grid label.wide {
  grid-column: 1 / -1;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.06);
  color: #fff;
  padding: 14px 15px;
  border-radius: 0;
  font: inherit;
  outline: none;
}

.form-grid select option {
  color: #111;
}

.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus {
  border-color: var(--red);
  background: rgba(255,255,255,.09);
}

.form-grid input::placeholder,
.form-grid textarea::placeholder {
  color: rgba(255,255,255,.42);
}

.form-note {
  color: rgba(255,255,255,.70);
  margin: 22px 0 0;
  max-width: 760px;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.btn-ghost.dark {
  border-color: rgba(255,255,255,.26);
  color: #fff;
}

.is-hidden {
  display: none !important;
}

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

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

@media (max-width: 640px) {
  .inquiry-step {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .step-number {
    width: 46px;
    height: 46px;
    font-size: 24px;
  }

  .inquiry-form {
    padding: 22px;
  }
}


/* --- v13 inquiry refinements --- */
.customer-type {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0 0 22px;
}

.customer-type label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.05);
  cursor: pointer;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.customer-type input {
  accent-color: var(--red);
}

.customer-type label:has(input:checked) {
  border-color: var(--red);
  background: rgba(227,6,19,.12);
}

.btn-submit-strong {
  font-weight: 950;
  font-size: 16px;
  min-width: 210px;
}

.btn-call-small {
  min-height: 44px;
  padding: 0 18px;
  font-size: 13px;
  opacity: .86;
}

.btn-call-small::after {
  margin-left: 10px;
}

@media (max-width: 640px) {
  .customer-type {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .customer-type label {
    justify-content: center;
    padding: 0 12px;
  }

  .btn-submit-strong {
    width: 100%;
  }

  .btn-call-small {
    width: auto;
  }
}


/* --- v14 main page + request page changes --- */

/* Header lockup: red B + Heinz Bill GmbH */
.brand-heinz-lockup {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: #fff;
  min-width: max-content;
  overflow: visible;
}

.brand-heinz-lockup .brand-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  background: var(--red);
  color: #fff;
  font: 900 31px/1 var(--font-body);
  letter-spacing: -0.08em;
  flex: 0 0 auto;
}

.brand-heinz-lockup .brand-text {
  display: grid;
  line-height: 1;
}

.brand-heinz-lockup .brand-text strong {
  font-size: 23px;
  letter-spacing: .01em;
  font-weight: 900;
  font-style: italic;
  color: #fff;
}

.brand-heinz-lockup .brand-text small {
  margin-top: 4px;
  text-transform: uppercase;
  font-size: 9px;
  letter-spacing: .14em;
  opacity: .72;
}

/* overwrite previous header image wordmark variants */
.brand-header-logo,
.brand-lockup,
.brand-logo-small:not(.footer-brand) {
  display: none !important;
}

/* Partner logos in verbund */
.partner-logos {
  margin-top: auto;
  padding-top: 18px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  align-items: start;
}

.partner-logo {
  display: block;
  max-width: 220px;
  max-height: 58px;
  width: auto;
  height: auto;
  background: rgba(255,255,255,.96);
  padding: 8px 10px;
  border-radius: 10px;
  object-fit: contain;
}

/* Separate inquiry page */
.inquiry-hero {
  min-height: 360px;
}

.inquiry-hero h1 {
  max-width: 960px;
}

/* Material anfragen on anfrage page should not feel duplicated with too much top spacing */
.inquiry .split-head {
  padding-top: 64px;
}

@media (max-width: 980px) {
  .brand-heinz-lockup .brand-mark {
    width: 30px;
    height: 30px;
    font-size: 28px;
  }

  .brand-heinz-lockup .brand-text strong {
    font-size: 20px;
  }

  .brand-heinz-lockup .brand-text small {
    display: none;
  }
}

@media (max-width: 640px) {
  .brand-heinz-lockup {
    gap: 8px;
  }

  .brand-heinz-lockup .brand-mark {
    width: 28px;
    height: 28px;
    font-size: 26px;
  }

  .brand-heinz-lockup .brand-text strong {
    font-size: 17px;
  }

  .partner-logo {
    max-width: 190px;
  }
}


/* --- v16 logo + partner logo refinement + new service image --- */

/* Header: use the real Bill logo from the footer plus Heinz Bill GmbH text */
.brand-heinz-logo-image {
  display: inline-flex !important;
  align-items: center;
  gap: 12px;
  color: #fff;
  overflow: visible;
  min-width: max-content;
}

.brand-heinz-logo-image .brand-bill-logo {
  display: block;
  width: auto;
  height: 36px;
  object-fit: contain;
  background: rgba(255,255,255,.98);
  padding: 3px 4px;
  border-radius: 2px;
  filter: drop-shadow(0 8px 18px rgba(0,0,0,.22));
  flex: 0 0 auto;
}

.brand-heinz-logo-image .brand-text {
  display: grid;
  line-height: 1;
}

.brand-heinz-logo-image .brand-text strong {
  font-size: 23px;
  letter-spacing: .01em;
  font-weight: 900;
  font-style: italic;
  color: #fff;
}

.brand-heinz-logo-image .brand-text small {
  margin-top: 4px;
  text-transform: uppercase;
  font-size: 9px;
  letter-spacing: .14em;
  opacity: .72;
}

.brand-mark {
  display: none !important;
}

/* Partner logos: equal size, horizontal, clean */
.partner-logos {
  margin-top: 20px;
  padding-top: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
}

.partner-logo {
  width: 100%;
  height: 72px;
  max-width: none;
  max-height: none;
  object-fit: contain;
  background: rgba(255,255,255,.96);
  padding: 10px 12px;
  border-radius: 12px;
  display: block;
}

@media (max-width: 980px) {
  .brand-heinz-logo-image .brand-bill-logo {
    height: 32px;
  }

  .brand-heinz-logo-image .brand-text strong {
    font-size: 20px;
  }

  .brand-heinz-logo-image .brand-text small {
    display: none;
  }

  .partner-logos {
    grid-template-columns: 1fr;
  }

  .partner-logo {
    height: 64px;
  }
}

@media (max-width: 640px) {
  .brand-heinz-logo-image {
    gap: 9px;
  }

  .brand-heinz-logo-image .brand-bill-logo {
    height: 28px;
    padding: 2px 3px;
  }

  .brand-heinz-logo-image .brand-text strong {
    font-size: 17px;
  }
}


/* --- v17 privacy checkbox for inquiry form --- */
.privacy-check {
  display: flex !important;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.78) !important;
  font-size: 13px !important;
  line-height: 1.45;
  text-transform: none !important;
  letter-spacing: 0 !important;
  font-weight: 650 !important;
}

.privacy-check input {
  width: 18px !important;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--red);
  flex: 0 0 auto;
}

.privacy-check a {
  color: #fff;
  text-decoration: underline;
  text-decoration-color: var(--red);
  text-underline-offset: 3px;
}


/* --- v18 mobile hero + logo cleanup --- */
.brand-heinz-logo-image .brand-bill-logo,
.footer-brand .brand-bill-logo {
  background: transparent !important;
  padding: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  filter: none !important;
}

@media (max-width: 640px) {
  .hero {
    min-height: 720px;
    padding: 104px 0 34px;
  }

  .hero-content {
    transform: translateY(-26px);
  }

  .hero-bg img {
    object-position: 70% center;
  }

  h1 {
    max-width: 360px;
    font-size: 50px;
    line-height: 1.04;
    letter-spacing: .02em;
  }

  .hero-copy {
    max-width: 360px;
    margin: 18px 0 22px;
    font-size: 16px;
    line-height: 1.45;
  }

  .hero-actions {
    gap: 12px;
    margin-bottom: 8px;
  }

  .hero-stats {
    margin-top: 26px;
  }

  .brand-heinz-logo-image .brand-bill-logo {
    height: 26px;
  }

  .brand-heinz-logo-image .brand-text strong {
    font-size: 17px;
  }
}


/* --- v19 footer cleanup --- */
.footer-grid {
  grid-template-columns: 1.3fr .9fr .9fr;
}

.footer-brand.brand-logo-small img,
.footer-brand .brand-bill-logo,
.site-footer .brand-logo-small img {
  background: transparent !important;
  padding: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  filter: none !important;
}


/* --- v22 hero visibility, partner logos, mobile footer --- */

/* Hero: LKW/Bild sichtbarer machen, ohne die Lesbarkeit zu verlieren */
.hero-bg img {
  filter: contrast(1.10) saturate(1.02) brightness(.70);
}

.hero-overlay {
  background:
    radial-gradient(circle at 74% 48%, rgba(227,6,19,.08), transparent 31%),
    linear-gradient(90deg, rgba(5,6,7,.88) 0%, rgba(5,6,7,.62) 31%, rgba(5,6,7,.12) 62%, rgba(5,6,7,.46) 100%),
    linear-gradient(180deg, rgba(5,6,7,.28), rgba(5,6,7,.90));
}

/* Partnerlogos im Verbund größer und einheitlicher */
.partner-logos {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  align-items: stretch;
}

.partner-logo {
  height: 92px;
  width: 100%;
  max-width: none;
  max-height: none;
  padding: 8px 10px;
  object-fit: contain;
  object-position: center;
}

/* Footer: keine hässlichen Umbrüche bei Mail/Uhrzeit */
.footer-grid > div {
  min-width: 0;
}

.footer-grid a,
.footer-grid p {
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

.footer-grid a[href^="tel:"],
.footer-grid a[href^="mailto:"] {
  white-space: nowrap;
}

.footer-grid div:last-child p {
  white-space: nowrap;
}

/* Mobile: Hero-Text höher, kompakter und mehr LKW sichtbar */
@media (max-width: 640px) {
  .hero {
    min-height: 720px;
    padding: 86px 0 30px;
    align-items: end;
  }

  .hero-content {
    transform: translateY(-58px);
  }

  .hero-bg img {
    object-position: 68% center;
    filter: contrast(1.08) saturate(1.02) brightness(.76);
  }

  .hero-overlay {
    background:
      radial-gradient(circle at 72% 48%, rgba(227,6,19,.06), transparent 34%),
      linear-gradient(90deg, rgba(5,6,7,.82) 0%, rgba(5,6,7,.55) 36%, rgba(5,6,7,.08) 68%, rgba(5,6,7,.44) 100%),
      linear-gradient(180deg, rgba(5,6,7,.22), rgba(5,6,7,.86));
  }

  .hero-content h1 {
    max-width: 360px;
    font-size: 46px;
    line-height: 1.08;
    letter-spacing: .018em;
  }

  .hero-copy {
    max-width: 390px;
    margin: 18px 0 20px;
    font-size: 16px;
    line-height: 1.48;
  }

  .hero-actions {
    margin-bottom: 0;
  }

  .hero-stats {
    margin-top: 24px;
  }

  .partner-logos {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .partner-logo {
    height: 82px;
    padding: 8px;
  }

  .site-footer {
    padding-top: 44px;
  }

  .footer-grid {
    gap: 30px;
  }

  .footer-grid a,
  .footer-grid p {
    font-size: 15px;
    line-height: 1.55;
  }

  .footer-grid h4 {
    margin-bottom: 12px;
  }
}

@media (max-width: 390px) {
  .hero-content h1 {
    font-size: 42px;
  }

  .hero-copy {
    font-size: 15px;
  }

  .footer-grid a,
  .footer-grid p {
    font-size: 14px;
  }
}


/* --- v23 mobile hero + footer correction --- */

/* Desktop/tablet: Hero-Bild etwas klarer, LKW stärker sichtbar */
.hero-bg img {
  filter: contrast(1.08) saturate(1.03) brightness(.78);
}

.hero-overlay {
  background:
    radial-gradient(circle at 74% 48%, rgba(227,6,19,.05), transparent 32%),
    linear-gradient(90deg, rgba(5,6,7,.82) 0%, rgba(5,6,7,.54) 32%, rgba(5,6,7,.08) 64%, rgba(5,6,7,.34) 100%),
    linear-gradient(180deg, rgba(5,6,7,.18), rgba(5,6,7,.82));
}

/* Partnerlogos größer, aber sauber gleichmäßig */
.partner-logos {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 14px !important;
}

.partner-logo {
  height: 104px !important;
  width: 100% !important;
  max-width: none !important;
  max-height: none !important;
  object-fit: contain !important;
  object-position: center !important;
  padding: 10px 12px !important;
}

/* Footer-Grundlayout bleibt am Desktop 3 Spalten */
.footer-grid {
  grid-template-columns: 1.25fr 1fr 1fr !important;
  gap: 56px !important;
}

/* Mobile: Footer wieder einspaltig, damit nichts abgeschnitten wird */
@media (max-width: 980px) {
  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }

  .footer-grid > div {
    width: 100%;
    min-width: 0;
  }

  .footer-grid a,
  .footer-grid p {
    white-space: normal !important;
    overflow-wrap: normal !important;
    word-break: normal !important;
    line-height: 1.55;
  }

  .footer-grid a[href^="mailto:"],
  .footer-grid a[href^="tel:"] {
    white-space: normal !important;
  }

  .footer-grid div:last-child p {
    white-space: normal !important;
  }
}

/* Mobile Hero: Text deutlich höher, mehr sichtbarer LKW im First View */
@media (max-width: 640px) {
  .hero {
    min-height: 760px !important;
    align-items: start !important;
    padding: 118px 0 26px !important;
  }

  .hero-content {
    transform: none !important;
  }

  .hero-bg img {
    object-position: 72% center !important;
    filter: contrast(1.06) saturate(1.05) brightness(.82) !important;
  }

  .hero-overlay {
    background:
      radial-gradient(circle at 72% 46%, rgba(227,6,19,.04), transparent 35%),
      linear-gradient(90deg, rgba(5,6,7,.74) 0%, rgba(5,6,7,.46) 35%, rgba(5,6,7,.04) 70%, rgba(5,6,7,.26) 100%),
      linear-gradient(180deg, rgba(5,6,7,.10), rgba(5,6,7,.68));
  }

  .hero-content h1 {
    max-width: 365px !important;
    font-size: 42px !important;
    line-height: 1.12 !important;
    letter-spacing: .018em !important;
  }

  .hero-copy {
    max-width: 380px !important;
    margin: 16px 0 20px !important;
    font-size: 15.5px !important;
    line-height: 1.48 !important;
  }

  .hero-actions {
    gap: 12px !important;
    margin-bottom: 0 !important;
  }

  .hero-actions .btn {
    min-height: 46px !important;
    padding: 0 18px !important;
    font-size: 14px !important;
  }

  .hero-stats {
    margin-top: 24px !important;
  }

  .partner-logos {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  .partner-logo {
    height: 86px !important;
  }

  .site-footer {
    padding: 42px 0 24px !important;
  }
}

@media (max-width: 390px) {
  .hero-content h1 {
    font-size: 39px !important;
  }

  .hero-copy {
    font-size: 15px !important;
  }
}


/* --- v24 mobile hero spacing + 1 Mio alignment --- */

/* Mobile: Headline/Copy oben lassen, Buttons + Kennzahlen nach unten ziehen.
   Dadurch bleibt in der Mitte mehr sichtbares Fahrzeug/Bild. */
@media (max-width: 640px) {
  .hero {
    min-height: 760px !important;
    padding: 112px 0 24px !important;
    align-items: stretch !important;
  }

  .hero-content {
    min-height: calc(760px - 112px - 24px);
    display: flex !important;
    flex-direction: column !important;
    transform: none !important;
  }

  .hero-content h1 {
    font-size: 42px !important;
    line-height: 1.12 !important;
    max-width: 370px !important;
  }

  .hero-copy {
    max-width: 390px !important;
    margin: 16px 0 0 !important;
  }

  .hero-actions {
    margin-top: auto !important;
    margin-bottom: 22px !important;
    gap: 12px !important;
  }

  .hero-stats {
    margin-top: 0 !important;
    width: 100%;
  }

  .hero-stats article {
    align-items: center !important;
  }

  .hero-stats .stat-main {
    display: flex !important;
    align-items: baseline !important;
    gap: 2px;
    line-height: 1 !important;
  }

  .hero-stats .stat-number,
  .hero-stats .plus,
  .hero-stats .unit {
    line-height: .82 !important;
  }

  .hero-stats .unit {
    display: inline-flex !important;
    align-items: baseline !important;
    transform: translateY(-1px);
  }

  .hero-bg img {
    object-position: 72% center !important;
    filter: contrast(1.06) saturate(1.05) brightness(.84) !important;
  }

  .hero-overlay {
    background:
      radial-gradient(circle at 72% 46%, rgba(227,6,19,.04), transparent 35%),
      linear-gradient(90deg, rgba(5,6,7,.72) 0%, rgba(5,6,7,.43) 35%, rgba(5,6,7,.03) 70%, rgba(5,6,7,.24) 100%),
      linear-gradient(180deg, rgba(5,6,7,.08), rgba(5,6,7,.64));
  }
}

@media (max-width: 390px) {
  .hero-content h1 {
    font-size: 39px !important;
  }

  .hero-content {
    min-height: calc(750px - 110px - 22px);
  }

  .hero {
    min-height: 750px !important;
    padding-top: 110px !important;
  }
}


/* --- v29 Onpage SEO: regional content block --- */
.regional-seo {
  padding: 0 0 86px;
}

.regional-seo-card {
  background:
    linear-gradient(180deg, rgba(255,255,255,.96), rgba(255,255,255,.98)),
    url("assets/contour-lines.svg");
  background-size: cover;
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 28px 80px rgba(0,0,0,.10);
  padding: clamp(28px, 5vw, 56px);
}

.regional-seo h2 {
  max-width: 980px;
  color: #111;
  margin-bottom: 26px;
}

.regional-copy {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.regional-copy p {
  margin: 0;
  color: rgba(0,0,0,.72);
  font-size: 16px;
  line-height: 1.65;
}

@media (max-width: 980px) {
  .regional-copy {
    grid-template-columns: 1fr;
  }
}


/* --- v30 Bewerbungsformular --- */
.bewerbung-hero .form-hero-bg img {
  object-position: center 42%;
}

.application-section {
  padding: 76px 0 96px;
}

.application-grid {
  display: grid;
  grid-template-columns: minmax(260px, .82fr) minmax(0, 1.35fr);
  gap: 34px;
  align-items: start;
}

.application-info,
.application-form {
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 24px 70px rgba(0,0,0,.10);
}

.application-info {
  padding: clamp(24px, 4vw, 42px);
  position: sticky;
  top: 100px;
}

.application-info h2 {
  color: #111;
  margin-bottom: 18px;
}

.application-info p {
  color: rgba(0,0,0,.72);
  line-height: 1.65;
}

.benefit-list {
  list-style: none;
  padding: 0;
  margin: 24px 0;
  display: grid;
  gap: 10px;
}

.benefit-list li {
  padding-left: 26px;
  position: relative;
  font-weight: 800;
  color: #111;
}

.benefit-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: 950;
}

.gender-note {
  font-size: 13px;
  background: rgba(227,6,19,.06);
  border-left: 3px solid var(--red);
  padding: 14px 16px;
}

.application-form {
  padding: clamp(22px, 4vw, 46px);
}

.form-section-title {
  margin-bottom: 22px;
}

.form-section-title.compact {
  margin-top: 36px;
}

.form-section-title span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: var(--red);
  color: #fff;
  font-weight: 950;
  margin-bottom: 12px;
}

.form-section-title h2 {
  color: #111;
  margin: 0 0 8px;
}

.form-section-title p {
  color: rgba(0,0,0,.64);
  margin: 0;
}

.application-form label,
.application-form legend {
  color: #111;
  font-weight: 850;
  font-size: 13px;
  letter-spacing: .02em;
}

.application-form input,
.application-form select,
.application-form textarea {
  width: 100%;
  margin-top: 8px;
  border: 1px solid rgba(0,0,0,.18);
  background: #fff;
  color: #111;
  min-height: 46px;
  padding: 12px 13px;
  font: inherit;
}

.application-form textarea {
  resize: vertical;
}

.application-form small {
  display: block;
  color: rgba(0,0,0,.58);
  margin-top: 8px;
  font-size: 12px;
}

.source-fieldset {
  border: 1px solid rgba(0,0,0,.10);
  margin: 24px 0;
  padding: 18px;
}

.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px 16px;
  margin-top: 12px;
}

.checkbox-grid label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
}

.checkbox-grid input {
  width: 18px;
  min-height: auto;
  height: 18px;
  margin: 0;
  accent-color: var(--red);
}

.application-form .privacy-check {
  background: rgba(0,0,0,.035);
  border-color: rgba(0,0,0,.12);
  color: #111 !important;
}

.application-form .privacy-check a {
  color: #111;
}

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

  .application-info {
    position: static;
  }

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

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


/* --- v31 Bewerbungsformular Layout-Fix --- */

/* Bewerbungsseite bewusst ruhiger als Startseite:
   keine riesigen abgeschnittenen Headline-Blöcke im Formularbereich */
.bewerbung-hero {
  min-height: 520px;
  height: auto;
  padding: 150px 0 82px;
  position: relative;
  overflow: hidden;
  background: #050607;
}

.bewerbung-hero .form-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.bewerbung-hero .form-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
  filter: brightness(.56) contrast(1.08);
}

.bewerbung-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(5,6,7,.82), rgba(5,6,7,.48) 45%, rgba(5,6,7,.70)),
    linear-gradient(180deg, rgba(5,6,7,.35), rgba(5,6,7,.86));
}

.bewerbung-hero .form-hero-content {
  position: relative;
  z-index: 2;
  max-width: 920px;
}

.bewerbung-hero h1 {
  color: #fff;
  max-width: 760px;
  font-size: clamp(52px, 8vw, 112px);
  line-height: .92;
  letter-spacing: .015em;
  margin: 18px 0 22px;
}

.bewerbung-hero p:not(.eyebrow) {
  color: rgba(255,255,255,.88);
  max-width: 620px;
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.45;
}

.application-section {
  padding: 76px 0 96px;
}

.application-grid {
  display: grid;
  grid-template-columns: minmax(280px, 420px) minmax(0, 1fr);
  gap: 34px;
  align-items: start;
}

.application-info,
.application-form {
  max-width: 100%;
  overflow: hidden;
}

.application-info h2 {
  font-size: clamp(38px, 4.7vw, 72px);
  line-height: .96;
  letter-spacing: .015em;
  overflow-wrap: normal;
  word-break: normal;
}

.application-info p {
  font-size: 17px;
}

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

.application-form .form-section-title h2 {
  font-size: clamp(34px, 4.2vw, 62px);
  line-height: .96;
  letter-spacing: .015em;
  max-width: 100%;
  overflow-wrap: normal;
  word-break: normal;
}

.application-form .form-section-title p {
  font-size: 16px;
  line-height: 1.5;
}

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

.application-form .wide {
  grid-column: 1 / -1;
}

.application-form input,
.application-form select,
.application-form textarea {
  box-sizing: border-box;
}

.application-form select {
  appearance: auto;
}

.source-fieldset {
  box-sizing: border-box;
}

.legal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

/* Button im Jobbereich soll klar auf das Bewerbungsformular führen */
.jobs .btn[href="bewerbung.html"],
a[href="bewerbung.html"].btn {
  text-decoration: none;
}

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

  .application-info {
    position: static;
  }

  .application-info h2 {
    max-width: 760px;
  }
}

@media (max-width: 720px) {
  .bewerbung-hero {
    min-height: 560px;
    padding: 118px 0 62px;
  }

  .bewerbung-hero .form-hero-bg img {
    object-position: center top;
  }

  .bewerbung-hero h1 {
    font-size: 54px;
    line-height: 1.02;
  }

  .bewerbung-hero p:not(.eyebrow) {
    font-size: 17px;
  }

  .application-section {
    padding: 46px 0 70px;
  }

  .application-form,
  .application-info {
    padding: 24px;
  }

  .application-form .form-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .application-form .form-section-title h2 {
    font-size: 42px;
    line-height: 1.02;
  }

  .application-info h2 {
    font-size: 44px;
    line-height: 1.02;
  }

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

@media (max-width: 420px) {
  .bewerbung-hero h1 {
    font-size: 46px;
  }

  .application-form .form-section-title h2,
  .application-info h2 {
    font-size: 38px;
  }
}


/* --- v32 Bewerbungsseite Feinschliff --- */

/* Linke Infokarte: Überschrift nicht mehr riesig/abgeschnitten */
.application-info {
  overflow: visible;
}

.application-info h2 {
  font-size: clamp(32px, 3.4vw, 48px) !important;
  line-height: 1.06 !important;
  letter-spacing: .01em !important;
  max-width: 100% !important;
  word-break: normal !important;
  overflow-wrap: normal !important;
}

/* Bewerbungsformular-Überschriften ebenfalls etwas ruhiger */
.application-form .form-section-title h2 {
  font-size: clamp(34px, 3.6vw, 54px) !important;
  line-height: 1.05 !important;
  letter-spacing: .01em !important;
  max-width: 100% !important;
  word-break: normal !important;
  overflow-wrap: normal !important;
}

/* Danke-/Fehlerseiten: Text muss auf dunklem Hero lesbar sein */
.legal-hero {
  position: relative;
  overflow: hidden;
}

.legal-hero h1 {
  color: #fff !important;
  opacity: 1 !important;
  text-shadow: 0 12px 35px rgba(0,0,0,.45);
}

.legal-hero p {
  color: rgba(255,255,255,.88) !important;
}

.legal-hero .eyebrow {
  color: var(--red) !important;
}

.legal-card h2,
.legal-card p,
.legal-card a {
  color: #111;
}

/* Bewerbung-Danke und Bewerbung-Fehler etwas kompakter/sauberer */
body.page-bewerbung-danke .legal-hero,
body.page-bewerbung-fehler .legal-hero {
  min-height: 360px;
  display: flex;
  align-items: center;
  background:
    linear-gradient(180deg, rgba(5,6,7,.88), rgba(5,6,7,.94)),
    radial-gradient(circle at 80% 20%, rgba(227,6,19,.12), transparent 35%),
    #050607;
}

body.page-bewerbung-danke .legal-hero h1,
body.page-bewerbung-fehler .legal-hero h1 {
  font-size: clamp(42px, 7vw, 92px);
  line-height: .98;
  max-width: 900px;
}

@media (max-width: 720px) {
  .application-info h2 {
    font-size: 36px !important;
    line-height: 1.08 !important;
  }

  .application-form .form-section-title h2 {
    font-size: 36px !important;
    line-height: 1.08 !important;
  }

  body.page-bewerbung-danke .legal-hero,
  body.page-bewerbung-fehler .legal-hero {
    min-height: 330px;
  }

  body.page-bewerbung-danke .legal-hero h1,
  body.page-bewerbung-fehler .legal-hero h1 {
    font-size: 42px;
  }
}


/* --- v33 Verbund-Logos + Fuhrleistungen-Text --- */
.partner-logos {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 16px !important;
  align-items: stretch !important;
}

.partner-logo-link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 128px;
  width: 100%;
  padding: 14px 16px;
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 14px 38px rgba(0,0,0,.10);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.partner-logo-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 46px rgba(0,0,0,.14);
  border-color: rgba(227,6,19,.28);
}

.partner-logo-link .partner-logo,
.partner-logo {
  height: 96px !important;
  max-height: 96px !important;
  width: 100% !important;
  max-width: 100% !important;
  object-fit: contain !important;
  padding: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  border: 0 !important;
}

/* Recycling-Lahnau-Logo optisch etwas größer ziehen, weil die Originaldatei mehr Weißraum hat */
.partner-logo[src$="partner-recycling-lahnau.png"] {
  transform: scale(1.18);
}

.service-card p,
.card p {
  line-height: 1.62;
}

@media (max-width: 980px) {
  .partner-logos {
    grid-template-columns: 1fr !important;
  }

  .partner-logo-link {
    min-height: 112px;
  }

  .partner-logo-link .partner-logo,
  .partner-logo {
    height: 82px !important;
    max-height: 82px !important;
  }
}


/* --- v34 Safari-Fix Bewerbungsseite --- */
.page-bewerbung .application-info {
  overflow: hidden !important;
}

.page-bewerbung .application-info h2 {
  font-size: clamp(30px, 3vw, 44px) !important;
  line-height: 1.12 !important;
  letter-spacing: .01em !important;
  max-width: 100% !important;
  white-space: normal !important;
  overflow-wrap: normal !important;
  word-break: normal !important;
  hyphens: none !important;
}

.page-bewerbung .application-info p {
  max-width: 100% !important;
}

.page-bewerbung .application-form .form-section-title h2 {
  font-size: clamp(30px, 3.1vw, 48px) !important;
  line-height: 1.08 !important;
  letter-spacing: .01em !important;
  max-width: 100% !important;
  white-space: normal !important;
  overflow-wrap: normal !important;
  word-break: normal !important;
  hyphens: none !important;
}

.page-bewerbung .application-form,
.page-bewerbung .application-info {
  min-width: 0 !important;
}

.page-bewerbung .application-grid {
  grid-template-columns: minmax(280px, 410px) minmax(0, 1fr) !important;
  overflow: visible !important;
}

.page-bewerbung .application-form .form-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
}

.page-bewerbung-danke .legal-hero,
.page-bewerbung-fehler .legal-hero {
  background:
    linear-gradient(180deg, rgba(5,6,7,.84), rgba(5,6,7,.94)),
    radial-gradient(circle at 82% 20%, rgba(227,6,19,.16), transparent 38%),
    #050607 !important;
}

.page-bewerbung-danke .legal-hero h1,
.page-bewerbung-fehler .legal-hero h1 {
  color: #fff !important;
  opacity: 1 !important;
  -webkit-text-fill-color: #fff !important;
  text-shadow: 0 10px 35px rgba(0,0,0,.5) !important;
}

.page-bewerbung-danke .legal-hero p,
.page-bewerbung-fehler .legal-hero p {
  color: rgba(255,255,255,.88) !important;
}

.page-bewerbung-danke .legal-content,
.page-bewerbung-fehler .legal-content {
  background: #f3f3f3 !important;
}

.page-bewerbung-danke .legal-card h2,
.page-bewerbung-fehler .legal-card h2 {
  color: #050607 !important;
  -webkit-text-fill-color: #050607 !important;
}

@media (max-width: 1100px) {
  .page-bewerbung .application-grid {
    grid-template-columns: 1fr !important;
  }

  .page-bewerbung .application-info {
    position: static !important;
  }

  .page-bewerbung .application-info h2 {
    font-size: clamp(32px, 6vw, 50px) !important;
    line-height: 1.08 !important;
  }

  .page-bewerbung .application-form .form-section-title h2 {
    font-size: clamp(32px, 6vw, 48px) !important;
    line-height: 1.08 !important;
  }
}

@media (max-width: 720px) {
  .page-bewerbung .application-form .form-grid {
    grid-template-columns: 1fr !important;
  }

  .page-bewerbung .application-info h2,
  .page-bewerbung .application-form .form-section-title h2 {
    font-size: 34px !important;
    line-height: 1.12 !important;
    letter-spacing: .005em !important;
  }

  .page-bewerbung .bewerbung-hero h1 {
    font-size: 42px !important;
    line-height: 1.08 !important;
  }
}


/* --- v35 Bewerbungsseite: Header-CTA + Hero-Bild/Text --- */

/* Auf der Bewerbungsseite ist "Material anfragen" im Header unpassend und hing optisch in der Luft. */
.page-bewerbung .site-header .nav-cta {
  display: none !important;
}

/* Teamfoto heller und weniger "zugedrückt" */
.page-bewerbung .bewerbung-hero .form-hero-bg img {
  filter: brightness(.74) contrast(1.06) saturate(1.03) !important;
  object-position: center 30% !important;
}

/* Text tiefer platzieren, damit er nicht auf den beiden Fahrern liegt */
.page-bewerbung .bewerbung-hero {
  min-height: 620px !important;
  padding: 300px 0 78px !important;
  display: flex;
  align-items: flex-end;
}

.page-bewerbung .bewerbung-hero::after {
  background:
    linear-gradient(90deg, rgba(5,6,7,.62), rgba(5,6,7,.30) 45%, rgba(5,6,7,.62)),
    linear-gradient(180deg, rgba(5,6,7,.06) 0%, rgba(5,6,7,.28) 50%, rgba(5,6,7,.92) 100%) !important;
}

.page-bewerbung .bewerbung-hero .form-hero-content {
  margin-top: auto;
}

.page-bewerbung .bewerbung-hero h1 {
  max-width: 820px !important;
  font-size: clamp(48px, 7vw, 96px) !important;
  line-height: .96 !important;
}

.page-bewerbung .bewerbung-hero p:not(.eyebrow) {
  max-width: 650px !important;
}

/* Auf kleineren Geräten: Foto bleibt sichtbar, Text sitzt unten im dunkleren Verlauf */
@media (max-width: 720px) {
  .page-bewerbung .site-header .nav-cta {
    display: none !important;
  }

  .page-bewerbung .bewerbung-hero {
    min-height: 620px !important;
    padding: 255px 0 54px !important;
  }

  .page-bewerbung .bewerbung-hero .form-hero-bg img {
    object-position: center 18% !important;
    filter: brightness(.78) contrast(1.05) saturate(1.04) !important;
  }

  .page-bewerbung .bewerbung-hero h1 {
    font-size: 42px !important;
    line-height: 1.08 !important;
  }
}

@media (max-width: 420px) {
  .page-bewerbung .bewerbung-hero {
    min-height: 590px !important;
    padding-top: 230px !important;
  }
}


/* --- v36 Bewerbungsseite: Menü ausblenden + Buttons korrigieren --- */

/* Auf der Bewerbungsseite kein Hauptmenü im Header anzeigen */
.page-bewerbung .site-header .desktop-nav {
  display: none !important;
}

/* Header bleibt dadurch clean: Logo links, sonst nichts */
.page-bewerbung .site-header {
  justify-content: flex-start !important;
}

/* Bewerbung absenden: rot und fett */
.page-bewerbung .application-form .form-actions button[type="submit"],
.page-bewerbung .application-form .form-actions .btn.primary {
  background: var(--red) !important;
  border-color: var(--red) !important;
  color: #fff !important;
  font-weight: 950 !important;
  letter-spacing: .02em;
  box-shadow: 0 14px 34px rgba(227,6,19,.22);
}

/* Direkt anrufen: kleiner, ruhiger, nicht fett */
.page-bewerbung .application-form .form-actions a[href^="tel:"],
.page-bewerbung .application-form .form-actions .btn.ghost {
  font-size: 13px !important;
  font-weight: 600 !important;
  min-height: 40px !important;
  padding: 0 16px !important;
  opacity: .78;
  box-shadow: none !important;
}

.page-bewerbung .application-form .form-actions a[href^="tel:"]:hover,
.page-bewerbung .application-form .form-actions .btn.ghost:hover {
  opacity: 1;
}

@media (max-width: 720px) {
  .page-bewerbung .site-header .desktop-nav,
  .page-bewerbung .site-header .mobile-toggle {
    display: none !important;
  }

  .page-bewerbung .application-form .form-actions {
    align-items: flex-start;
  }

  .page-bewerbung .application-form .form-actions a[href^="tel:"],
  .page-bewerbung .application-form .form-actions .btn.ghost {
    width: auto;
  }
}


/* --- v37 Bewerbungsseite: m/w/d kleiner und sauber --- */
.page-bewerbung .job-gender {
  display: inline-block;
  white-space: nowrap;
  font-size: .48em;
  line-height: 1;
  letter-spacing: .02em;
  vertical-align: .28em;
  margin-left: .14em;
  opacity: .96;
}

.page-bewerbung .bewerbung-hero h1 {
  max-width: 920px !important;
  font-size: clamp(46px, 6.2vw, 86px) !important;
  line-height: .98 !important;
  letter-spacing: .012em !important;
}

@media (max-width: 720px) {
  .page-bewerbung .job-gender {
    font-size: .52em;
    vertical-align: .22em;
  }

  .page-bewerbung .bewerbung-hero h1 {
    font-size: 39px !important;
    line-height: 1.08 !important;
    max-width: 360px !important;
  }
}

@media (max-width: 420px) {
  .page-bewerbung .bewerbung-hero h1 {
    font-size: 36px !important;
  }
}


/* --- v39 Empfänger, Logos, Bildqualität, m/w/d --- */
.job-gender {
  display: inline-block;
  white-space: nowrap;
  font-size: .48em;
  line-height: 1;
  letter-spacing: .02em;
  vertical-align: .28em;
  margin-left: .14em;
}

/* Partnerlogos nicht mehr als hohe DINA4-Flächen, sondern gleichmäßige Logo-Kacheln */
.partner-logos {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 18px !important;
  align-items: stretch !important;
}

.partner-logo-link {
  min-height: 128px !important;
  padding: 18px 22px !important;
  background: rgba(255,255,255,.96) !important;
  border: 1px solid rgba(0,0,0,.08) !important;
  box-shadow: 0 16px 42px rgba(0,0,0,.10) !important;
}

.partner-logo-link .partner-logo,
.partner-logo {
  width: 100% !important;
  height: 92px !important;
  max-height: 92px !important;
  object-fit: contain !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
  transform: none !important;
}

/* Bilder etwas knackiger darstellen, ohne die Dateien extrem groß zu machen */
img {
  image-rendering: auto;
}

.hero-bg img,
.form-hero-bg img,
.service-image img,
.card img,
.jobs-media img,
.contact-image img {
  filter: saturate(1.03) contrast(1.04);
}

@media (max-width: 980px) {
  .partner-logos {
    grid-template-columns: 1fr !important;
  }
  .partner-logo-link {
    min-height: 116px !important;
  }
  .partner-logo-link .partner-logo,
  .partner-logo {
    height: 84px !important;
    max-height: 84px !important;
  }
}

@media (max-width: 720px) {
  .job-gender {
    font-size: .52em;
    vertical-align: .22em;
  }
}


/* --- v40 Partnerlogos Desktop-Fix --- */
/* Mobil war gut, Desktop war zu hoch/DIN-A4-artig. Die Logos sind jetzt normalisiert
   und die Karten auf Desktop flacher und breiter gesetzt. */
@media (min-width: 981px) {
  .partner-logos {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 22px !important;
    align-items: stretch !important;
  }

  .partner-logo-link {
    min-height: 118px !important;
    height: 118px !important;
    padding: 18px 22px !important;
    background: rgba(255,255,255,.97) !important;
    border: 1px solid rgba(255,255,255,.14) !important;
    box-shadow: 0 18px 44px rgba(0,0,0,.18) !important;
  }

  .partner-logo-link .partner-logo,
  .partner-logo {
    width: 100% !important;
    height: 82px !important;
    max-height: 82px !important;
    max-width: 100% !important;
    object-fit: contain !important;
    transform: none !important;
  }

  .partner-logo[src$="partner-recycling-lahnau.png"] {
    transform: none !important;
  }
}

@media (max-width: 980px) {
  .partner-logo-link {
    min-height: 112px !important;
    height: auto !important;
  }

  .partner-logo-link .partner-logo,
  .partner-logo {
    height: 76px !important;
    max-height: 76px !important;
    object-fit: contain !important;
    transform: none !important;
  }
}


/* --- v41 Partnerlogos wirklich kompakt + Recyclingbild --- */
/* Partnerlogos: Desktop als kompakte Logo-Leiste statt hoher weißer Karten */
@media (min-width: 981px) {
  .partner-logos {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 18px !important;
    align-items: stretch !important;
    margin-top: 28px !important;
  }

  .partner-logo-link {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    height: 96px !important;
    min-height: 96px !important;
    padding: 14px 18px !important;
    background: #fff !important;
    border: 1px solid rgba(255,255,255,.16) !important;
    box-shadow: 0 16px 34px rgba(0,0,0,.18) !important;
  }

  .partner-logo-link .partner-logo,
  .partner-logo {
    display: block !important;
    width: 92% !important;
    height: 68px !important;
    max-height: 68px !important;
    max-width: 92% !important;
    object-fit: contain !important;
    padding: 0 !important;
    margin: 0 auto !important;
    background: transparent !important;
    box-shadow: none !important;
    border: 0 !important;
    transform: none !important;
  }

  .partner-logo[src$="partner-recycling-lahnau.png"] {
    transform: none !important;
  }
}

/* Mobile bleibt ähnlich, aber ebenfalls ohne DIN-A4-Eindruck */
@media (max-width: 980px) {
  .partner-logo-link {
    height: 92px !important;
    min-height: 92px !important;
    padding: 13px 16px !important;
    background: #fff !important;
  }

  .partner-logo-link .partner-logo,
  .partner-logo {
    height: 64px !important;
    max-height: 64px !important;
    object-fit: contain !important;
    transform: none !important;
  }
}

/* Servicebilder in dunklen Karten größer und knackiger darstellen */
.service-card img,
.card img[src$="recyclingmaterialien.jpg"],
img[src$="recyclingmaterialien.jpg"] {
  image-rendering: auto;
}


/* --- v42 Partnerlogos wie Mockup --- */
/* Schwarzer Logo-Balken mit kleinen weißen Logo-Kacheln */
.partner-logos {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 14px !important;
  margin-top: 26px !important;
  padding: 18px 22px !important;
  background: #050607 !important;
  border: 0 !important;
  box-shadow: 0 18px 44px rgba(0,0,0,.28) !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

.partner-logo-link {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: auto !important;
  height: auto !important;
  min-height: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  transform: none !important;
}

.partner-logo-link:hover {
  transform: translateY(-1px) !important;
  box-shadow: none !important;
}

.partner-logo-link .partner-logo,
.partner-logo {
  display: block !important;
  width: 138px !important;
  height: auto !important;
  max-width: 138px !important;
  max-height: none !important;
  object-fit: contain !important;
  padding: 0 !important;
  margin: 0 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  transform: none !important;
}

/* vorherige Spezialskalierungen neutralisieren */
.partner-logo[src$="partner-recycling-lahnau.png"] {
  transform: none !important;
}

/* Auf breiten Monitoren etwas größer */
@media (min-width: 1200px) {
  .partner-logo-link .partner-logo,
  .partner-logo {
    width: 150px !important;
    max-width: 150px !important;
  }
}

/* Mobile: wie bisher gut, nur sauber umbrechen */
@media (max-width: 720px) {
  .partner-logos {
    flex-wrap: wrap !important;
    gap: 10px !important;
    padding: 16px !important;
  }

  .partner-logo-link .partner-logo,
  .partner-logo {
    width: 128px !important;
    max-width: 128px !important;
  }
}


/* --- v43 Partnerlogos ohne schwarzen Balken --- */
/* Größe aus v42 bleibt, aber der schwarze Kasten/Balken fällt weg. */
.partner-logos {
  background: transparent !important;
  box-shadow: none !important;
  border: 0 !important;
  padding: 18px 0 0 !important;
  margin-top: 24px !important;
  justify-content: flex-start !important;
}

.partner-logo-link {
  background: transparent !important;
  box-shadow: none !important;
  border: 0 !important;
}

.partner-logo-link .partner-logo,
.partner-logo {
  width: 150px !important;
  max-width: 150px !important;
  height: auto !important;
  object-fit: contain !important;
}

@media (min-width: 1200px) {
  .partner-logo-link .partner-logo,
  .partner-logo {
    width: 158px !important;
    max-width: 158px !important;
  }
}

@media (max-width: 720px) {
  .partner-logos {
    justify-content: center !important;
    padding-top: 14px !important;
  }

  .partner-logo-link .partner-logo,
  .partner-logo {
    width: 132px !important;
    max-width: 132px !important;
  }
}


/* --- v45 Technik/Compliance: Accessibility + Icons --- */
.job-gender {
  display: inline-block;
  white-space: nowrap;
  font-size: .46em;
  line-height: 1;
  vertical-align: .30em;
  letter-spacing: .02em;
}

@media (max-width: 720px) {
  .job-gender {
    font-size: .50em;
    vertical-align: .24em;
  }
}


/* --- v47 Accessibility/Struktur --- */
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.email-obfuscate {
  white-space: nowrap;
}
