:root {
  --ink: #101820;
  --muted: #62707d;
  --line: #dbe4e8;
  --paper: #f7faf9;
  --panel: #ffffff;
  --brand: #ffd338;
  --brand-dark: #e4b918;
  --steel: #13232d;
  --teal: #0f766e;
  --teal-dark: #0b4f4a;
  --mint: #dff7ef;
  --green: #0f766e;
  --shadow: 0 20px 60px rgba(16, 24, 32, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 130px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

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

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 8px max(18px, calc((100vw - 1180px) / 2));
  background: #0d1b23;
  color: #fff;
  font-size: 14px;
}

.topbar p {
  margin: 0;
}

.topbar a {
  font-weight: 700;
}

.topbar div {
  display: flex;
  gap: 18px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 26px;
  padding: 14px max(18px, calc((100vw - 1180px) / 2));
  background: rgba(247, 250, 249, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.brand img {
  width: 190px;
  height: auto;
}

.menu-toggle {
  display: none;
}

.primary-nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 14px;
  color: #32424d;
  font-size: 15px;
}

.primary-nav > a,
.nav-trigger {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 4px;
  font-weight: 700;
  white-space: nowrap;
}

.nav-item {
  position: relative;
}

.nav-trigger::after {
  content: "";
  display: block;
  flex: 0 0 auto;
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
}

.nav-item::after {
  content: "";
  position: absolute;
  right: -18px;
  bottom: -18px;
  left: -18px;
  height: 24px;
}

.mega-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 50%;
  z-index: 30;
  display: grid;
  grid-template-columns: 260px minmax(460px, 1fr);
  gap: 18px;
  width: min(860px, calc(100vw - 36px));
  padding: 18px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translate(50%, 8px);
  transition: opacity 220ms ease, transform 220ms ease, visibility 220ms ease;
  visibility: hidden;
}

.nav-item:hover .mega-menu,
.nav-item:focus-within .mega-menu,
.nav-item[data-open] .mega-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(50%, 0);
  visibility: visible;
}

.compact-menu {
  grid-template-columns: 250px minmax(360px, 1fr);
  width: min(680px, calc(100vw - 36px));
}

.industries-menu {
  grid-template-columns: 250px minmax(520px, 1fr);
  width: min(820px, calc(100vw - 36px));
}

.insights-menu {
  grid-template-columns: 250px minmax(560px, 1fr);
  width: min(860px, calc(100vw - 36px));
}

.mega-media {
  overflow: hidden;
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 12px;
  background: linear-gradient(180deg, #eef8f5, #fff);
  border: 1px solid var(--line);
  border-radius: 14px;
}

.mega-media img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 10px;
}

.mega-media strong {
  color: var(--ink);
  font-size: 1.1rem;
}

.mega-media span {
  color: var(--muted);
  font-size: 14px;
}

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

.mega-links.two-col {
  align-content: start;
}

.mega-links a {
  display: grid;
  gap: 3px;
  padding: 12px;
  background: #f8fcfb;
  border: 1px solid var(--line);
  border-radius: 12px;
}

.mega-links a:hover,
.mega-links a:focus-visible {
  background: var(--mint);
  color: var(--teal-dark);
}

.mega-links span {
  color: var(--teal);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.mega-links strong {
  color: var(--ink);
  line-height: 1.18;
}

.primary-nav a:hover,
.topbar a:hover {
  color: var(--teal);
}

.header-cta,
.button,
button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 20px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand), #ffe680);
  color: #151719;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(255, 211, 56, 0.22);
}

.header-cta:hover,
.button.primary:hover,
button:hover {
  background: var(--brand-dark);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: none;
}

.button.dark {
  background: var(--teal-dark);
  color: #fff;
  box-shadow: none;
}

.button.ghost {
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: none;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) 420px;
  gap: 44px;
  min-height: 700px;
  padding: 82px max(18px, calc((100vw - 1180px) / 2));
  background:
    linear-gradient(105deg, rgba(13, 27, 35, 0.92), rgba(15, 118, 110, 0.74) 56%, rgba(255, 211, 56, 0.2)),
    url("assets/hero-warehouse-service.jpg") center / cover;
  color: #fff;
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 44px;
  min-height: 640px;
  padding: 82px max(18px, calc((100vw - 1180px) / 2));
  color: #fff;
}

.equipment-hero {
  background:
    linear-gradient(105deg, rgba(13, 27, 35, 0.9), rgba(15, 118, 110, 0.72) 56%, rgba(255, 211, 56, 0.16)),
    url("https://cdn.durable.co/blocks/37Kizxds8LXkrEaeeSKqH62PVrcSNqwv9l3r23FYiF9yWOdJFy5mnfc16Y9lolRU.jpg") center / cover;
}

.contact-hero {
  background:
    linear-gradient(105deg, rgba(13, 27, 35, 0.92), rgba(15, 118, 110, 0.68) 58%, rgba(255, 211, 56, 0.18)),
    url("assets/sector-engineering-manufacturing.jpg") center / cover;
}

.training-hero {
  background:
    linear-gradient(105deg, rgba(13, 27, 35, 0.92), rgba(15, 118, 110, 0.72) 58%, rgba(255, 211, 56, 0.18)),
    url("https://cdn.durable.co/getty/bvZEioiGPNgbYHbBXeXQKqkngWEabxkhDO6TcdK0ugHie3qEJCuvL1TbeGhbSAXS.jpeg") center / cover;
}

.sectors-landing-hero {
  background:
    linear-gradient(105deg, rgba(13, 27, 35, 0.92), rgba(15, 118, 110, 0.72) 58%, rgba(255, 211, 56, 0.18)),
    url("assets/sector-logistics-warehousing.jpg") center / cover;
}

.sectors-landing-hero .breadcrumb,
.sectors-landing-hero .breadcrumb a,
.sectors-landing-hero .breadcrumb span {
  color: rgba(255, 255, 255, 0.86);
}

.page-hero-copy {
  align-self: center;
  max-width: 820px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 800;
}

.breadcrumb a {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: rgba(255, 211, 56, 0.7);
  text-underline-offset: 4px;
}

.breadcrumb a::after {
  content: "/";
  margin-left: 8px;
  color: rgba(255, 255, 255, 0.48);
  text-decoration: none;
}

.course-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.78fr);
  gap: 44px;
  align-items: center;
  padding: 58px max(18px, calc((100vw - 1180px) / 2)) 72px;
  background: linear-gradient(135deg, #10252d, #0f766e);
  color: #fff;
}

.course-hero-copy {
  max-width: 760px;
}

.course-hero-image {
  overflow: hidden;
  min-height: 430px;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.course-hero-image img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
}

.course-category {
  margin-top: 44px;
}

.course-category:first-of-type {
  margin-top: 0;
}

.category-heading {
  max-width: 720px;
  margin-bottom: 18px;
}

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

.training-grid {
  margin-bottom: 34px;
}

.course-detail-section {
  background: #fff;
}

.course-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 46px;
}

.course-detail-grid article {
  display: grid;
  gap: 6px;
  padding: 22px;
  background: #f8fcfb;
  border: 1px solid var(--line);
  border-radius: 16px;
}

.course-detail-grid span {
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.course-detail-grid strong {
  font-size: 20px;
}

.equipment-validation {
  margin-bottom: 46px;
  padding: 30px;
  background: linear-gradient(135deg, var(--mint), #fff7ca);
  border: 1px solid var(--line);
  border-radius: 20px;
}

.equipment-validation h2 {
  max-width: 900px;
  margin-bottom: 12px;
}

.equipment-validation p:last-child {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
}

.equipment-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px;
  align-items: start;
}

.equipment-detail-hero .breadcrumb {
  color: rgba(255, 255, 255, 0.78);
}

.equipment-detail-hero .breadcrumb a {
  color: inherit;
}

.hero-copy {
  align-self: center;
  max-width: 760px;
}

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

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(42px, 6.4vw, 76px);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin: 0 0 16px;
  font-size: clamp(30px, 3.7vw, 46px);
  line-height: 1.08;
}

h3 {
  margin: 0 0 10px;
  font-size: 23px;
  line-height: 1.15;
}

.hero-lede {
  max-width: 690px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 20px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 760px;
  margin: 40px 0 0;
  background: transparent;
  border: 0;
}

.proof-strip div {
  padding: 18px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 12px;
  backdrop-filter: blur(10px);
}

.proof-strip dt {
  font-size: 24px;
  font-weight: 900;
}

.proof-strip dd {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.76);
}

.hero-panel,
.quote-form {
  align-self: center;
  padding: 28px;
  background: #fff;
  color: var(--ink);
  border: 1px solid rgba(219, 228, 232, 0.8);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.hero-panel h2 {
  font-size: 30px;
}

.hero-panel p,
.quote-copy p,
.section-heading p,
.split-copy p,
.training-layout p,
.conversion-band p {
  color: var(--muted);
}

.lead-form,
.quote-form {
  display: grid;
  gap: 14px;
}

.compact-list {
  margin: 0 0 22px;
  padding-left: 20px;
  color: var(--muted);
}

.compact-list li {
  margin-bottom: 8px;
}

address {
  font-style: normal;
}

.contact-panel {
  display: grid;
  gap: 18px;
}

.contact-panel address,
.location-card address {
  color: var(--muted);
}

label {
  display: grid;
  gap: 7px;
  color: #263640;
  font-size: 14px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #d5e0e5;
  border-radius: 12px;
  padding: 13px 14px;
  background: #fbfdfc;
  color: var(--ink);
  font: inherit;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(15, 118, 110, 0.16);
  border-color: var(--teal);
}

textarea {
  resize: vertical;
}

.intent-bar {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #eef8f5;
}

.intent-bar a {
  display: grid;
  gap: 6px;
  padding: 22px;
  border-right: 1px solid var(--line);
  font-weight: 900;
  transition: background 160ms ease, transform 160ms ease;
}

.intent-bar a:hover {
  background: var(--mint);
  transform: translateY(-2px);
}

.intent-bar span {
  color: var(--muted);
  font-size: 13px;
}

.section,
.split-section,
.conversion-band {
  padding: 78px max(18px, calc((100vw - 1180px) / 2));
  scroll-margin-top: 130px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading p {
  margin: 0;
  font-size: 18px;
}

.service-grid,
.industry-grid,
.problem-grid,
.package-grid,
.ease-grid,
.equipment-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.service-card,
.industry-grid article,
.problem-grid article,
.package-grid article,
.ease-grid article,
.equipment-grid article,
.feature-list article,
.contact-card {
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 12px 34px rgba(16, 24, 32, 0.05);
}

.service-card span {
  display: inline-block;
  margin-bottom: 18px;
  padding: 6px 10px;
  background: var(--mint);
  border-radius: 999px;
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.problem-section {
  background:
    radial-gradient(circle at top right, rgba(15, 118, 110, 0.12), transparent 34%),
    var(--paper);
}

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

.problem-grid article {
  display: grid;
  gap: 12px;
  align-content: start;
}

.problem-grid span {
  color: var(--teal);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.problem-grid p,
.problem-grid strong,
.package-grid p,
.package-grid li,
.ease-grid p {
  color: var(--muted);
}

.problem-grid strong {
  display: block;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  color: var(--teal-dark);
  font-size: 15px;
}

.problem-grid a,
.package-grid a,
.industry-grid a,
.equipment-grid a,
.quote-form .form-note a {
  color: var(--teal-dark);
  font-weight: 900;
  text-decoration: underline;
  text-decoration-color: var(--brand);
  text-decoration-thickness: 3px;
  text-underline-offset: 4px;
}

.service-card p,
.industry-grid p,
.industry-grid li,
.feature-list span {
  color: var(--muted);
}

.service-card a {
  display: inline-block;
  margin-top: 12px;
  font-weight: 900;
  text-decoration: underline;
  text-decoration-color: var(--teal);
  text-decoration-thickness: 3px;
  text-underline-offset: 4px;
}

.section-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.8fr);
  gap: 42px;
  align-items: center;
  background: #fff;
}

.packages-section {
  background: #fff;
}

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

.package-grid article {
  display: grid;
  gap: 14px;
  background: linear-gradient(180deg, #ffffff, #f8fcfb);
}

.package-top {
  display: grid;
  gap: 14px;
}

.package-top span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: var(--mint);
  color: var(--teal-dark);
  font-weight: 900;
}

.package-grid ul {
  margin: 0;
  padding-left: 20px;
}

.package-grid li {
  margin-bottom: 8px;
}

.jungheinrich-callout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 28px 36px;
  align-items: center;
  width: 100vw;
  margin: 40px calc(50% - 50vw) 0;
  padding: 54px max(20px, calc((100vw - 1180px) / 2));
  overflow: hidden;
  background: linear-gradient(135deg, var(--brand), #ffe680);
  color: #151719;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5), 0 18px 42px rgba(228, 185, 24, 0.18);
}

.jungheinrich-callout .eyebrow {
  color: var(--teal-dark);
}

.jungheinrich-callout h2,
.jungheinrich-callout h3 {
  max-width: 780px;
  margin: 0 0 12px;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1.08;
}

.jungheinrich-callout p {
  margin: 0;
  color: rgba(16, 24, 32, 0.82);
}

.jungheinrich-cta {
  display: grid;
  gap: 10px;
  padding: 24px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.72);
}

.jungheinrich-cta strong {
  display: block;
  color: var(--teal-dark);
  font-size: 1.4rem;
  line-height: 1.12;
}

.jungheinrich-cta .button {
  margin-top: 8px;
  width: 100%;
}

.image-block {
  overflow: hidden;
  border-radius: 20px;
  min-height: 440px;
  box-shadow: var(--shadow);
}

.image-block img {
  width: 100%;
  height: 100%;
  min-height: 440px;
  object-fit: cover;
}

.worksafe-sector-block {
  display: grid;
  align-items: center;
  min-height: 620px;
  padding: 76px max(18px, calc((100vw - 1180px) / 2));
  background:
    linear-gradient(90deg, rgba(13, 27, 35, 0.9), rgba(15, 118, 110, 0.66) 48%, rgba(248, 196, 40, 0.14)),
    url("assets/worksafe-office-team.png") center / cover;
  color: #fff;
}

.worksafe-sector-block .eyebrow {
  color: #f8c428;
}

.worksafe-copy {
  display: grid;
  gap: 18px;
  max-width: 860px;
  padding: 34px;
  background: rgba(13, 27, 35, 0.54);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  backdrop-filter: blur(10px);
}

.worksafe-copy h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1;
}

.worksafe-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

.worksafe-copy .hero-lede {
  color: #fff;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
}

.tick-list,
.industry-grid ul {
  padding-left: 20px;
}

.tick-list li,
.industry-grid li {
  margin-bottom: 8px;
}

.muted {
  background: linear-gradient(180deg, #eef8f5, #f7faf9);
}

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

.industry-grid article {
  overflow: hidden;
  padding: 0;
}

.industry-grid article h3,
.industry-grid article p,
.industry-grid article ul,
.industry-grid article a {
  margin-left: 24px;
  margin-right: 24px;
}

.industry-grid article img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  margin-bottom: 22px;
}

.industry-grid article a {
  display: inline-block;
  margin-top: 4px;
  margin-bottom: 24px;
}

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

.equipment-grid article {
  overflow: hidden;
  padding: 0;
  display: grid;
  align-content: start;
}

.equipment-grid img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.card-image-link {
  display: block;
  overflow: hidden;
}

.card-image-link img {
  transition: transform 180ms ease;
}

.card-image-link:hover img,
.card-image-link:focus-visible img {
  transform: scale(1.03);
}

.equipment-grid article div {
  display: grid;
  gap: 8px;
  padding: 22px;
}

.equipment-grid span {
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.equipment-grid p {
  margin: 0;
  color: var(--muted);
}

.equipment-grid a {
  display: inline-block;
  margin-top: 6px;
}

.ease-section {
  background: #fff;
}

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

.ease-grid article {
  box-shadow: none;
}

.training-layout,
.quote-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1fr);
  gap: 34px;
  align-items: start;
}

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

.feature-list article {
  display: grid;
  gap: 4px;
}

.conversion-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background: linear-gradient(135deg, var(--mint), #fff7ca);
}

.conversion-band .eyebrow,
.conversion-band p {
  color: #24443f;
}

.conversion-band div {
  max-width: 780px;
}

.sourcing-band {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(380px, 1fr);
  gap: 28px;
  align-items: stretch;
  padding: 58px max(18px, calc((100vw - 1180px) / 2));
  background: linear-gradient(135deg, var(--brand), #ffe987);
  color: #151719;
}

.sourcing-band .eyebrow {
  color: var(--teal-dark);
}

.sourcing-copy {
  display: grid;
  align-content: center;
  gap: 14px;
}

.sourcing-copy h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.7rem);
  line-height: 1.04;
}

.sourcing-copy p {
  max-width: 680px;
  margin: 0;
  color: rgba(16, 24, 32, 0.8);
  font-size: 1.05rem;
}

.sourcing-copy .button {
  justify-self: start;
  margin-top: 10px;
}

.sourcing-options {
  display: grid;
  gap: 14px;
}

.sourcing-options article {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 6px 16px;
  align-items: start;
  padding: 20px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 16px;
  box-shadow: 0 12px 28px rgba(151, 116, 0, 0.08);
}

.sourcing-options span {
  display: inline-flex;
  grid-row: span 2;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: var(--teal-dark);
  color: #fff;
  font-weight: 900;
}

.sourcing-options h3,
.sourcing-options p {
  margin: 0;
}

.sourcing-options p {
  color: rgba(16, 24, 32, 0.72);
}

.quote-section {
  background: #fff;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1fr);
  gap: 34px;
  align-items: start;
  background: #fff;
}

.map-section {
  background: linear-gradient(180deg, #eef8f5, #f7faf9);
}

.map-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 20px;
  align-items: stretch;
}

.map-card {
  position: relative;
  overflow: hidden;
  min-height: 460px;
  background: #dfe9e7;
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.map-card iframe {
  width: 100%;
  height: 100%;
  min-height: 460px;
  border: 0;
  filter: saturate(0.72) contrast(0.98);
}

.map-location {
  position: absolute;
  z-index: 2;
  display: inline-block;
  padding: 7px 10px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(219, 228, 232, 0.85);
  border-radius: 999px;
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 8px 22px rgba(16, 24, 32, 0.08);
}

.map-location {
  left: 49.5%;
  top: 57%;
  padding: 10px 14px;
  border-radius: 14px;
  transform: translate(24px, -82px);
}

.map-pin {
  position: absolute;
  z-index: 3;
  left: 49.5%;
  top: 57%;
  width: 28px;
  height: 28px;
  background: var(--brand);
  border: 5px solid #fff;
  border-radius: 50% 50% 50% 0;
  box-shadow: 0 10px 24px rgba(16, 24, 32, 0.25);
  transform: translate(-50%, -100%) rotate(-45deg);
  pointer-events: none;
}

.map-pin::after {
  content: "";
  position: absolute;
  inset: 5px;
  background: var(--teal-dark);
  border-radius: 50%;
}

.location-card {
  display: grid;
  align-content: start;
  gap: 18px;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: 0 12px 34px rgba(16, 24, 32, 0.05);
}

.quote-form {
  box-shadow: none;
  border: 1px solid var(--line);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.contact-card {
  display: grid;
  gap: 6px;
  margin-top: 24px;
}

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

.contact-card a {
  font-weight: 900;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.success-message {
  margin: 0;
  padding: 12px 14px;
  background: rgba(15, 118, 110, 0.1);
  border: 1px solid rgba(15, 118, 110, 0.28);
  border-radius: 12px;
  color: var(--green);
  font-size: 14px;
  font-weight: 800;
}

.insights-hero {
  background:
    linear-gradient(135deg, rgba(15, 118, 110, 0.84), rgba(13, 27, 35, 0.72)),
    url("assets/hero-warehouse-service.jpg") center / cover;
}

.insights-section {
  background: #fff;
}

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

.home-insights-section {
  background:
    radial-gradient(circle at top right, rgba(248, 196, 40, 0.26), transparent 34%),
    linear-gradient(135deg, #0f766e 0%, #0d1b23 78%);
  color: #fff;
}

.home-insights-section > div:first-child {
  max-width: 760px;
  margin-bottom: 22px;
}

.home-insights-section h2 {
  margin: 0 0 10px;
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
}

.home-insights-section p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.home-insights-section .eyebrow {
  color: #f8c428;
}

.home-insights-section .footer-insight-grid a {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.14);
}

.home-insights-section .footer-insight-grid a:hover {
  background: rgba(255, 255, 255, 0.18);
}

.home-insights-section .footer-insight-grid span,
.home-insights-section .footer-insight-grid em {
  color: rgba(255, 255, 255, 0.7);
}

.home-insights-section .footer-view-more {
  color: #fff;
  text-decoration-color: #f8c428;
}

.insight-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 14px 34px rgba(16, 24, 32, 0.07);
}

.insight-card-link {
  display: grid;
  grid-template-rows: 190px minmax(0, 1fr);
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.insight-card-image {
  overflow: hidden;
  display: block;
  min-height: 0;
  background: #e8f0ee;
}

.insight-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.96) contrast(1.02);
  transition: transform 220ms ease;
}

.insight-card-link:hover img,
.insight-card-link:focus-visible img {
  transform: scale(1.035);
}

.insight-card:nth-child(4n + 1) img {
  object-position: 50% 35%;
}

.insight-card:nth-child(4n + 2) img {
  object-position: 35% 50%;
}

.insight-card:nth-child(4n + 3) img {
  object-position: 65% 50%;
}

.insight-card:nth-child(4n + 4) img {
  object-position: 50% 70%;
}

.insight-card-copy {
  display: grid;
  gap: 10px;
  align-content: start;
  padding: 22px;
  background: #fff;
}

.insight-card-meta,
.article-summary span {
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.insight-card-copy strong {
  margin: 0;
  color: var(--ink);
  font-size: 1.25rem;
  line-height: 1.18;
}

.insight-card-copy > span:not(.insight-card-meta) {
  margin: 0;
  color: var(--muted);
}

.insight-card-copy em,
.footer-view-more {
  align-self: end;
  color: var(--teal-dark);
  font-style: normal;
  font-weight: 900;
  text-decoration: underline;
  text-decoration-color: var(--brand);
  text-decoration-thickness: 3px;
  text-underline-offset: 4px;
}

.article-page {
  padding: 38px max(18px, calc((100vw - 1180px) / 2)) 80px;
  background: #fff;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 14px;
}

.breadcrumb a {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  color: var(--teal-dark);
  font-weight: 800;
}

.breadcrumb > * + *::before {
  content: "›";
  margin-right: 8px;
  color: currentColor;
  opacity: 0.65;
}

.breadcrumb span,
.breadcrumb strong {
  overflow-wrap: normal;
}

.industry-landing-hero {
  position: relative;
  overflow: hidden;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.industry-landing-hero .breadcrumb,
.industry-landing-hero .breadcrumb a,
.industry-landing-hero .breadcrumb span {
  color: rgba(255, 255, 255, 0.86);
}

.industry-focus-section {
  background: #fff;
}

.industry-offer-section {
  background: linear-gradient(180deg, #eef8f5, #f7faf9);
}

.training-advantage-section {
  background:
    radial-gradient(circle at top right, rgba(248, 196, 40, 0.34), transparent 34%),
    linear-gradient(180deg, #fff7cf, #fff2ad);
}

.training-advantage-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

.training-advantage-grid article {
  display: grid;
  gap: 10px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(151, 113, 8, 0.16);
  border-radius: 16px;
  box-shadow: 0 16px 34px rgba(151, 113, 8, 0.09);
}

.training-advantage-grid span {
  color: var(--teal);
  font-size: 13px;
  font-weight: 900;
}

.training-advantage-grid h3,
.training-advantage-grid p {
  margin: 0;
}

.training-advantage-grid p {
  color: var(--muted);
}

.article-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 34px;
  align-items: center;
  padding: 34px;
  background: linear-gradient(135deg, var(--mint), #fff7ca);
  border-radius: 22px;
}

.article-hero h1 {
  margin-bottom: 14px;
  color: var(--ink);
}

.article-hero .hero-lede {
  color: var(--teal-dark);
}

.article-hero img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.article-body {
  display: grid;
  grid-template-columns: 310px minmax(0, 720px);
  gap: 44px;
  align-items: start;
  margin-top: 42px;
}

.article-summary {
  position: sticky;
  top: 126px;
  display: grid;
  gap: 14px;
  padding: 22px;
  background: #f7faf9;
  border: 1px solid var(--line);
  border-radius: 16px;
}

.article-summary p {
  margin: 0;
  color: var(--muted);
}

.article-summary .social-links {
  margin-top: 4px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.article-summary .social-links a,
.article-summary .social-links button {
  border-color: var(--line);
  color: var(--teal-dark);
}

.article-copy {
  color: #23313b;
  font-size: 1.08rem;
}

.article-copy h2 {
  margin-top: 0;
  font-size: 1.8rem;
}

.article-copy p {
  margin: 0 0 20px;
}

.cookie-notice {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  width: min(620px, calc(100vw - 36px));
  padding: 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.cookie-notice p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.cookie-notice button {
  min-height: 40px;
  padding: 10px 16px;
}

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

footer {
  display: grid;
  gap: 28px;
  padding: 34px max(18px, calc((100vw - 1180px) / 2));
  background: #0d1b23;
  color: #fff;
}

footer p {
  margin: 5px 0 0;
  color: rgba(255, 255, 255, 0.78);
}

footer a {
  color: #fff;
  font-weight: 900;
  text-decoration: underline;
  text-decoration-color: var(--brand);
  text-decoration-thickness: 3px;
  text-underline-offset: 4px;
}

.footer-main {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: start;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.social-links a,
.social-links button {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 12px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: inherit;
  font: inherit;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
}

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

.footer-insight-grid a {
  display: grid;
  gap: 8px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  text-decoration: none;
}

.footer-insight-grid span,
.footer-insight-grid em {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-style: normal;
}

.footer-view-more {
  color: #fff;
}

.home-insights-section .footer-insight-grid a {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.22);
}

.home-insights-section .footer-insight-grid a:hover {
  background: rgba(255, 255, 255, 0.18);
}

.home-insights-section .footer-view-more {
  color: #fff;
  text-decoration-color: #f8c428;
}

.insight-footer-nav {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 14px;
  align-items: stretch;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.insight-nav-card,
.insight-nav-index {
  display: grid;
  gap: 8px;
  min-height: 118px;
  padding: 18px;
  background: rgba(15, 118, 110, 0.24);
  border: 1px solid rgba(99, 224, 201, 0.24);
  border-radius: 14px;
  text-decoration: none;
}

.insight-nav-card em {
  color: #9ff1df;
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.insight-nav-card strong {
  color: #fff;
  line-height: 1.22;
}

.insight-nav-card span {
  color: rgba(225, 255, 248, 0.72);
  font-size: 13px;
}

.insight-nav-card.is-disabled {
  opacity: 0.45;
}

.insight-nav-index {
  align-content: center;
  justify-items: center;
  min-width: 150px;
  color: #fff;
  font-weight: 900;
}

@media (max-width: 980px) {
  .topbar,
  .site-header {
    align-items: flex-start;
  }

  .site-header {
    grid-template-columns: 1fr;
  }

  .primary-nav {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .mega-menu,
  .compact-menu {
    right: auto;
    left: 0;
    width: min(720px, calc(100vw - 36px));
    transform: translate(0, 8px);
  }

  .nav-item:hover .mega-menu,
  .nav-item:focus-within .mega-menu,
  .nav-item[data-open] .mega-menu {
    transform: translate(0, 0);
  }

  .jungheinrich-callout {
    padding-top: 44px;
    padding-bottom: 44px;
  }

  .hero,
  .page-hero,
  .course-hero,
  .split-section,
  .training-layout,
  .quote-section,
  .contact-section,
  .map-layout,
  .article-hero,
  .article-body,
  .equipment-detail-grid,
  .sourcing-band,
  .jungheinrich-callout,
  .worksafe-sector-block {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 56px;
  }

  .intent-bar,
  .service-grid,
  .problem-grid,
  .package-grid,
  .ease-grid,
  .equipment-grid,
  .course-detail-grid,
  .training-advantage-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .insight-footer-nav {
    grid-template-columns: 1fr;
  }

  .insight-nav-index {
    min-width: 0;
    min-height: 60px;
  }

  .article-summary {
    position: static;
  }
}

@media (max-width: 640px) {
  .topbar {
    display: none;
  }

  .site-header {
    position: static;
    gap: 12px;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .brand img {
    width: 150px;
  }

  .header-cta {
    width: 100%;
  }

  .primary-nav {
    gap: 12px;
    font-size: 14px;
  }

  .nav-item {
    position: static;
  }

  .mega-menu {
    display: none;
  }

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

  .hero {
    padding-top: 34px;
    padding-bottom: 38px;
  }

  .page-hero {
    min-height: auto;
    padding-top: 42px;
    padding-bottom: 42px;
  }

  .course-hero {
    padding-top: 42px;
  }

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

  h1 {
    font-size: 40px;
    line-height: 1;
  }

  .hero-lede {
    font-size: 17px;
  }

  .hero-actions,
  .button,
  button {
    width: 100%;
  }

  .jungheinrich-callout {
    padding: 34px 18px;
  }

  .worksafe-sector-block {
    padding: 44px 18px;
  }

  .sourcing-band {
    padding-top: 44px;
    padding-bottom: 44px;
  }

  .sourcing-copy .button {
    justify-self: stretch;
  }

  .sourcing-options article {
    grid-template-columns: 1fr;
  }

  .sourcing-options span {
    grid-row: auto;
  }

  .proof-strip,
  .intent-bar,
  .service-grid,
  .problem-grid,
  .package-grid,
  .ease-grid,
  .equipment-grid,
  .course-detail-grid,
  .insight-grid,
  .footer-insight-grid,
  .training-advantage-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .article-page {
    padding-top: 28px;
    padding-bottom: 52px;
  }

  .article-hero {
    padding: 24px;
  }

  .article-hero img {
    height: 220px;
  }

  .footer-main {
    display: grid;
  }

  .conversion-band {
    display: grid;
  }

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

  .section,
  .split-section,
  .conversion-band {
    padding-top: 52px;
    padding-bottom: 52px;
  }
}

@media (max-width: 820px) {
  .topbar {
    display: none;
  }

  .site-header {
    position: sticky;
    grid-template-columns: auto auto;
    align-items: center;
    gap: 12px;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .brand img {
    width: 150px;
  }

  .menu-toggle {
    justify-self: end;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 44px;
    width: auto;
    padding: 10px 14px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--steel);
    font: inherit;
    font-size: 14px;
    font-weight: 900;
    box-shadow: 0 10px 24px rgba(16, 24, 32, 0.08);
    cursor: pointer;
  }

  .menu-toggle i,
  .menu-toggle i::before,
  .menu-toggle i::after {
    display: block;
    width: 18px;
    height: 2px;
    background: currentColor;
    border-radius: 999px;
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .menu-toggle i {
    position: relative;
  }

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

  .menu-toggle i::before {
    top: -6px;
  }

  .menu-toggle i::after {
    top: 6px;
  }

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

  .menu-toggle[aria-expanded="true"] i::before {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] i::after {
    top: 0;
    transform: rotate(90deg);
  }

  .primary-nav {
    grid-column: 1 / -1;
    display: none;
    width: 100%;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 10px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: var(--shadow);
    font-size: 15px;
  }

  .site-header.is-nav-open .primary-nav {
    display: flex;
  }

  .primary-nav > a,
  .nav-trigger {
    justify-content: space-between;
    width: 100%;
    padding: 13px 12px;
    border-bottom: 1px solid var(--line);
  }

  .primary-nav > a:last-child {
    border-bottom: 0;
  }

  .nav-item {
    position: static;
  }

  .nav-item::after,
  .nav-trigger::after {
    display: none;
  }

  .mega-menu,
  .compact-menu,
  .industries-menu,
  .insights-menu {
    display: none;
  }

  .header-cta {
    grid-column: 1 / -1;
    display: none;
    justify-content: center;
    width: 100%;
  }

  .site-header.is-nav-open .header-cta {
    display: inline-flex;
  }
}
