:root {
  --ink: #111827;
  --navy: #073b83;
  --navy-2: #052c63;
  --deep: #06162d;
  --slate: #334155;
  --muted: #64748b;
  --line: #d7dde7;
  --soft: #f5f7fa;
  --white: #ffffff;
  --accent: #f97316;
  --accent-dark: #c2410c;
  --shadow: 0 18px 40px rgba(15, 23, 42, 0.14);
  font-family: Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

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

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

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 84px;
  gap: 30px;
}

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

.brand-logo {
  width: 158px;
  height: auto;
  object-fit: contain;
  flex: 0 0 auto;
}

.brand-copy {
  display: grid;
  gap: 0;
  min-width: 0;
}

.brand-copy strong {
  color: var(--navy);
  font-size: 1.08rem;
  letter-spacing: 0;
}

.brand-copy span {
  color: var(--muted);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--slate);
  font-size: 0.96rem;
  font-weight: 800;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--accent-dark);
}

.nav-brand-word {
  color: var(--navy);
  font-weight: 900;
}

.nav-muted-word {
  color: var(--slate);
  font-weight: 800;
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--navy);
}

.menu-icon,
.menu-icon::before,
.menu-icon::after {
  display: block;
  width: 19px;
  height: 2px;
  background: var(--navy);
}

.menu-icon {
  position: relative;
}

.menu-icon::before,
.menu-icon::after {
  content: "";
  position: absolute;
  left: 0;
}

.menu-icon::before {
  top: -6px;
}

.menu-icon::after {
  top: 6px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid transparent;
  background: var(--accent);
  color: var(--white);
  font-weight: 700;
  box-shadow: 0 10px 20px rgba(249, 115, 22, 0.22);
}

.button:hover {
  background: var(--accent-dark);
}

.button.secondary {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.35);
  box-shadow: none;
}

.button.secondary:hover {
  background: rgba(255, 255, 255, 0.1);
}

.hero {
  background:
    linear-gradient(120deg, rgba(6, 22, 45, 0.74), rgba(5, 44, 99, 0.68)),
    url("hero-hrl.png") center center / cover no-repeat;
  color: var(--white);
  padding: 92px 0 70px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.75fr);
  gap: 46px;
  align-items: center;
}

.hero-grid-simple {
  grid-template-columns: minmax(0, 0.72fr);
}

.eyebrow {
  color: #fed7aa;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.12;
  color: inherit;
}

h1 {
  max-width: 760px;
  margin-top: 14px;
  font-size: clamp(2.3rem, 5vw, 4.6rem);
}

h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
}

h3 {
  font-size: 1.22rem;
}

.lead {
  max-width: 720px;
  margin: 22px 0 0;
  color: #dbe4ef;
  font-size: 1.14rem;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.check-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 24px;
  margin: 10px 0;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 9px;
  height: 9px;
  background: var(--accent);
}

.section {
  padding: 78px 0;
}

.section.soft {
  background: var(--soft);
}

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

.why-section {
  padding: 86px 0;
}

.why-head {
  max-width: 820px;
  margin-bottom: 34px;
}

.why-head h2 {
  color: var(--navy);
}

.why-head p {
  margin: 18px 0 0;
  color: var(--slate);
  font-size: 1.08rem;
}

.why-card {
  padding: 34px;
  background: var(--white);
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.08);
}

.why-card h3 {
  color: var(--navy);
}

.why-card p {
  margin-bottom: 0;
}

.why-image-block {
  margin: 26px 0 24px;
}

.why-image-block h3 {
  margin-bottom: 14px;
  color: var(--navy);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
}

.section-head p {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
}

.dark .section-head p,
.dark .muted {
  color: #cbd5e1;
}

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

.card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  background: var(--white);
  border: 1px solid var(--line);
  padding: 26px;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.06);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  background: var(--accent);
}

.card p {
  color: var(--muted);
}

.service-card {
  padding: 30px;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(7, 59, 131, 0.24);
  box-shadow: 0 22px 44px rgba(15, 23, 42, 0.13);
}

.service-card:hover .service-tag {
  background: linear-gradient(135deg, #052c63, #0b63ce);
  transform: scale(1.04);
}

.service-kicker {
  margin: 0 0 8px;
  color: var(--navy) !important;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.card-link {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-top: auto;
  color: var(--navy);
  font-weight: 900;
}

.card-link:hover {
  color: var(--accent-dark);
}

.service-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 68px;
  margin-bottom: 18px;
  background: linear-gradient(135deg, var(--navy), #0b63ce);
  color: var(--white);
  font-size: 2rem;
  font-weight: 900;
  box-shadow: 0 10px 20px rgba(7, 59, 131, 0.18);
  transition: transform 180ms ease, background 180ms ease;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 52px;
  align-items: center;
}

.facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  margin-top: 36px;
}

.fact {
  background: var(--white);
  padding: 22px;
}

.fact strong {
  display: block;
  color: var(--navy);
  font-size: 1.5rem;
}

.page-hero {
  background: linear-gradient(120deg, var(--navy), #111827);
  color: var(--white);
  padding: 78px 0 64px;
}

.service-hero {
  background: linear-gradient(120deg, rgba(6, 22, 45, 0.98), rgba(5, 44, 99, 0.94)), url("hrl-mark.svg") center right / contain no-repeat;
}

.road-hero {
  background:
    linear-gradient(120deg, rgba(6, 22, 45, 0.92), rgba(5, 44, 99, 0.72)),
    url("road/hero_scania.jpg") center / cover no-repeat;
}

.human-hero {
  background:
    linear-gradient(120deg, rgba(6, 22, 45, 0.92), rgba(5, 44, 99, 0.74)),
    url("human/AdobeStock_118484936.jpeg") center / cover no-repeat;
}

.logistics-hero {
  background:
    linear-gradient(120deg, rgba(6, 22, 45, 0.93), rgba(5, 44, 99, 0.76)),
    url("logistics/shutterstock_1848610828.jpg") center / cover no-repeat;
}

.career-hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 700px;
  overflow: hidden;
  background: #06162d;
  padding: 96px 0;
}

.career-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("karriere-team.png");
  background-position: center right;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  transform: scale(1.05);
  transform-origin: center right;
}

.career-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.55) 0%,
    rgba(0, 0, 0, 0.35) 35%,
    rgba(0, 0, 0, 0.05) 100%
  );
}

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

.career-hero h1,
.career-hero p {
  max-width: 620px;
  color: var(--white);
}

.page-hero p {
  max-width: 760px;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.74fr) minmax(260px, 0.26fr);
  gap: 38px;
  align-items: start;
}

.content h2 {
  margin-top: 34px;
  color: var(--navy);
}

.content h2:first-child {
  margin-top: 0;
}

.content p {
  color: var(--slate);
}

.detail-content {
  display: grid;
  gap: 34px;
}

.content-block h2 {
  margin-bottom: 14px;
}

.image-placeholder {
  display: grid;
  align-content: end;
  min-height: 260px;
  padding: 28px;
  background:
    linear-gradient(135deg, rgba(6, 22, 45, 0.88), rgba(7, 59, 131, 0.78)),
    url("hrl-mark.svg") center / cover no-repeat;
  color: var(--white);
  box-shadow: var(--shadow);
}

.image-placeholder-tall {
  min-height: 340px;
}

.image-placeholder span {
  color: #fed7aa;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.image-placeholder p {
  max-width: 620px;
  margin: 8px 0 0;
  color: #eef4fb;
  font-size: 1.2rem;
  font-weight: 800;
}

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

.image-mosaic {
  grid-template-columns: minmax(0, 1.18fr) minmax(220px, 0.82fr);
  grid-template-rows: repeat(3, 150px);
}

.image-tile {
  position: relative;
  min-height: 0;
  height: 260px;
  margin: 0;
  overflow: hidden;
  background: var(--navy);
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.11);
}

.image-mosaic .image-tile {
  height: 100%;
}

.image-tile-featured {
  grid-row: 1 / span 3;
}

.image-tile img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  transform: scale(1);
  transition: transform 240ms ease;
}

.image-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 22, 45, 0.05), rgba(6, 22, 45, 0.68));
}

.image-tile figcaption {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 18px;
  z-index: 1;
  color: var(--white);
  font-size: 1.08rem;
  font-weight: 900;
}

.image-tile:hover img {
  transform: scale(1.055);
}

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

.feature-card {
  position: relative;
  min-height: 100%;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
}

.feature-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 4px;
  background: var(--accent);
}

.feature-card h3 {
  color: var(--navy);
}

.audience-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.audience-list li {
  padding: 13px 16px;
  background: var(--soft);
  border: 1px solid var(--line);
  color: var(--slate);
  font-weight: 700;
}

.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.stats-strip div {
  min-height: 132px;
  padding: 24px;
  background: var(--soft);
}

.stats-strip strong {
  display: block;
  color: var(--navy);
  font-size: 1.35rem;
  line-height: 1.2;
}

.stats-strip span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-weight: 700;
}

.detail-cta {
  padding: 34px;
  background: var(--navy);
  color: var(--white);
}

.image-cta {
  position: relative;
  overflow: hidden;
  padding: 54px 40px;
  background-position: center;
  background-size: cover;
}

.image-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(6, 22, 45, 0.92), rgba(5, 44, 99, 0.72));
}

.image-cta > * {
  position: relative;
  z-index: 1;
}

.logistics-cta {
  background-image: url("logistics/AdobeStock_76647462 Bild Folie 3.jpeg");
}

.detail-cta h2,
.detail-cta p {
  color: var(--white);
}

.detail-cta p {
  max-width: 760px;
  color: #dbe4ef;
}

.sidebar {
  background: var(--soft);
  border: 1px solid var(--line);
  padding: 24px;
}

.sticky-sidebar {
  position: sticky;
  top: 112px;
}

.sidebar-title {
  display: block;
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.sidebar a {
  display: block;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  color: var(--navy);
  font-weight: 700;
}

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

.contact-box {
  background: var(--navy);
  color: var(--white);
  padding: 30px;
}

.contact-box p {
  color: #dbe4ef;
}

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

.form-grid label {
  display: grid;
  gap: 7px;
  color: var(--slate);
  font-weight: 700;
}

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

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  padding: 13px 14px;
  font: inherit;
  background: var(--white);
}

textarea {
  min-height: 138px;
  resize: vertical;
}

.form-help {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 400;
}

.site-footer {
  background: var(--deep);
  color: #cbd5e1;
  padding: 42px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(180px, 0.7fr) minmax(160px, 0.55fr);
  gap: 64px;
  align-items: start;
}

.footer-links {
  display: grid;
  gap: 10px;
  justify-content: start;
  text-align: left;
}

.footer-brand,
.footer-company-block {
  display: grid;
  gap: 14px;
}

.footer-company {
  color: var(--white);
  font-size: 1.18rem;
  font-weight: 900;
}

.footer-contact {
  color: #aebbd0;
}

.footer-contact p {
  margin: 0 0 12px;
}

.footer-contact a {
  color: #dbe4ef;
}

.footer-nav-title {
  color: var(--white);
  font-size: 0.86rem;
  font-weight: 900;
  text-transform: uppercase;
}

.footer-links a {
  color: #cbd5e1;
}

.footer-links a:hover {
  color: var(--white);
}

.muted {
  color: var(--muted);
}

@media (max-width: 900px) {
  .menu-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: absolute;
    left: 0;
    right: 0;
    top: 84px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px 20px 24px;
    background: var(--white);
    border-bottom: 1px solid var(--line);
  }

  .nav-links.is-open {
    display: flex;
  }

  .hero-grid,
  .split,
  .content-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .cards,
  .facts,
  .feature-grid,
  .audience-list,
  .stats-strip,
  .image-tile-grid {
    grid-template-columns: 1fr;
  }

  .image-mosaic {
    grid-template-rows: none;
  }

  .image-tile,
  .image-mosaic .image-tile {
    height: 240px;
  }

  .image-tile-featured {
    grid-row: auto;
  }

  .sticky-sidebar {
    position: static;
  }

  .hero {
    padding: 74px 0 56px;
    background-size: cover;
  }

  .section-head {
    display: grid;
  }

  .footer-links {
    justify-content: start;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 28px, 1120px);
  }

  .nav {
    min-height: 68px;
  }

  .brand {
    gap: 10px;
  }

  .brand-logo {
    width: 118px;
  }

  .nav-links {
    top: 68px;
  }

  .section,
  .page-hero {
    padding: 56px 0;
  }

  .career-hero {
    min-height: 520px;
    padding: 72px 0;
  }

  .career-hero::before {
    background-attachment: scroll;
    background-position: center right;
  }

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

@media (prefers-reduced-motion: reduce) {
  .career-hero::before {
    background-attachment: scroll;
    transform: none;
  }
}
