@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:ital,wght@0,400;0,600;0,700;0,800;0,900;1,800;1,900&display=swap");

/* Shared Direct Barcode header. Source markup mirrors solutions.html. */
:root {
  --site-max-width: 1680px;
  --site-padding-desktop: 48px;
  --site-padding-tablet: 28px;
  --site-padding-mobile: 18px;
}

.site-container,
.page-container,
.nav-container,
.secondary-nav-container,
.section-container {
  width: 100%;
  max-width: var(--site-max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--site-padding-desktop);
  padding-right: var(--site-padding-desktop);
}

@media (max-width: 1024px) {
  .site-container,
  .page-container,
  .nav-container,
  .secondary-nav-container,
  .section-container {
    padding-left: var(--site-padding-tablet);
    padding-right: var(--site-padding-tablet);
  }

  .solutions-header .solutions-shell,
  .solutions-utility .solutions-shell {
    padding-left: var(--site-padding-tablet);
    padding-right: var(--site-padding-tablet);
  }
}

@media (max-width: 640px) {
  .site-container,
  .page-container,
  .nav-container,
  .secondary-nav-container,
  .section-container {
    padding-left: var(--site-padding-mobile);
    padding-right: var(--site-padding-mobile);
  }

  .solutions-header .solutions-shell,
  .solutions-utility .solutions-shell {
    padding-left: var(--site-padding-mobile);
    padding-right: var(--site-padding-mobile);
  }
}

.solutions-header,
.solutions-utility {
  --global-shell: var(--site-max-width);
  --global-blue: var(--blue, var(--electric-blue, #009eea));
  --global-green: var(--green, var(--bright-green, #6bd12f));
  --global-white: var(--white, #ffffff);
}

.solutions-header .solutions-shell,
.solutions-utility .solutions-shell {
  width: 100%;
  max-width: var(--site-max-width);
  margin-inline: auto;
  padding-left: var(--site-padding-desktop);
  padding-right: var(--site-padding-desktop);
}

@media (max-width: 1024px) {
  .solutions-header .solutions-shell,
  .solutions-utility .solutions-shell {
    padding-left: var(--site-padding-tablet);
    padding-right: var(--site-padding-tablet);
  }
}

@media (max-width: 640px) {
  .solutions-header .solutions-shell,
  .solutions-utility .solutions-shell {
    padding-left: var(--site-padding-mobile);
    padding-right: var(--site-padding-mobile);
  }
}

.solutions-header .sr-only,
.solutions-utility .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.solutions-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  border-bottom: 1px solid rgba(0, 158, 234, 0.22);
  background: rgba(2, 7, 13, 0.96);
  box-shadow: 0 12px 38px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(14px);
}

.global-nav,
.secondary-nav {
  z-index: 1000;
}

.solutions-nav-inner {
  min-height: 86px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 30px;
}

.solutions-logo-link {
  display: inline-flex;
  align-items: center;
}

.solutions-logo-link img {
  width: 195px; /* +25% from 156px (Entry #92) */
  height: auto;
  object-fit: contain;
}

.solutions-main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 1.35vw, 30px);
  color: rgba(255, 255, 255, 0.86);
  font-family: "Bebas Neue", Arial, sans-serif;
  font-size: clamp(18px, 1.15vw, 22px);
  letter-spacing: 0;
  text-transform: uppercase;
}

.solutions-main-nav a {
  position: relative;
  padding: 32px 0 30px;
  white-space: nowrap;
  transition: color 180ms ease, text-shadow 180ms ease;
}

.solutions-main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 22px;
  height: 2px;
  background: var(--global-green);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.solutions-main-nav a:hover,
.solutions-main-nav a:focus-visible,
.solutions-main-nav a.is-active {
  color: var(--global-green);
  text-shadow: 0 0 14px rgba(107, 209, 47, 0.25);
}

.solutions-main-nav a:hover::after,
.solutions-main-nav a:focus-visible::after,
.solutions-main-nav a.is-active::after {
  transform: scaleX(1);
}

.solutions-nav-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  white-space: nowrap;
}

.solutions-phone {
  color: var(--global-green);
  font-size: 15px;
  font-weight: 800;
  text-shadow: 0 0 18px rgba(107, 209, 47, 0.2);
}

.solutions-quote-btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 28px;
  border: 1px solid var(--global-green);
  border-radius: 4px;
  color: #02070d;
  background: var(--global-green);
  box-shadow: 0 0 18px rgba(107, 209, 47, 0.25);
  font-family: "Inter", Arial, sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.solutions-header .solutions-quote-btn {
  color: #02070d;
}

.solutions-quote-btn:hover,
.solutions-quote-btn:focus-visible {
  color: #02070d;
  background: #7ff13a;
  transform: translateY(-1px);
  box-shadow: 0 0 28px rgba(107, 209, 47, 0.42);
}

.solutions-header .solutions-quote-btn:hover,
.solutions-header .solutions-quote-btn:focus-visible {
  color: #02070d;
}

.solutions-icon-link {
  display: grid;
  justify-items: center;
  gap: 3px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 11px;
  transition: color 180ms ease, transform 180ms ease;
}

.solutions-icon-link svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.solutions-icon-link:hover,
.solutions-icon-link:focus-visible {
  color: var(--global-green);
  transform: translateY(-1px);
}

.solutions-mobile-toggle {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-direction: column;
  border: 1px solid rgba(0, 158, 234, 0.32);
  border-radius: 5px;
  background: rgba(5, 23, 42, 0.82);
  color: var(--global-white);
}

.solutions-mobile-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

@media (max-width: 1500px) and (min-width: 901px) {
  .solutions-nav-inner {
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 14px;
  }

  .solutions-logo-link img {
    width: 160px; /* +25% from 128px (Entry #92) */
  }

  .solutions-main-nav {
    min-width: 0;
    gap: clamp(10px, 0.8vw, 18px);
    font-size: clamp(15px, 1.05vw, 18px);
  }

  .solutions-nav-actions {
    gap: 10px;
  }

  .solutions-phone {
    font-size: 13px;
  }

  .solutions-quote-btn {
    min-height: 42px;
    padding: 0 18px;
    font-size: 13px;
  }

  .solutions-icon-link svg {
    width: 22px;
    height: 22px;
  }
}

.solutions-utility {
  position: relative;
  z-index: 1000;
  width: 100%;
  border-bottom: 1px solid rgba(0, 158, 234, 0.22);
  background:
    radial-gradient(circle at 78% 50%, rgba(0, 158, 234, 0.16), transparent 18rem),
    linear-gradient(180deg, rgba(4, 17, 31, 0.96), rgba(3, 12, 23, 0.96));
}

.utility-inner {
  min-height: 78px;
  display: grid;
  grid-template-columns: 250px minmax(320px, 1fr) auto;
  align-items: center;
  gap: 24px;
}

.category-select,
.solutions-search,
.utility-contact a {
  border: 1px solid rgba(0, 158, 234, 0.3);
  background: rgba(2, 12, 23, 0.72);
  box-shadow: inset 0 0 24px rgba(0, 158, 234, 0.06);
}

.category-select {
  min-height: 48px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 18px;
  border-radius: 6px;
  color: var(--global-white);
  font-family: "Inter", Arial, sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  white-space: nowrap;
}

.category-select svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.category-select .chevron {
  width: 18px;
  margin-left: auto;
  transition: transform 180ms ease;
}

.category-select.is-open {
  border-color: rgba(0, 158, 234, 0.76);
  box-shadow: 0 0 20px rgba(0, 158, 234, 0.16), inset 0 0 24px rgba(0, 158, 234, 0.08);
}

.category-select.is-open .chevron {
  transform: rotate(180deg);
}

.category-mega-menu {
  position: absolute;
  top: calc(100% + 16px);
  left: max(var(--site-padding-desktop), calc((100% - var(--site-max-width)) / 2));
  width: fit-content;
  max-width: min(calc(100vw - (var(--site-padding-desktop) * 2)), var(--site-max-width));
  min-height: 382px;
  padding: 30px 28px;
  border: 1px solid rgba(0, 158, 234, 0.72);
  border-radius: 8px;
  color: var(--global-white);
  background:
    radial-gradient(circle at 82% 28%, rgba(0, 158, 234, 0.14), transparent 24rem),
    radial-gradient(circle at 96% 82%, rgba(107, 209, 47, 0.1), transparent 22rem),
    linear-gradient(180deg, #020c17, #01080f);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.48), 0 0 38px rgba(0, 158, 234, 0.15);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  visibility: hidden;
}

.category-mega-menu::before {
  content: "";
  position: absolute;
  left: max(28px, calc((100vw - min(calc(100vw - 56px), 1920px)) / 2 + 172px));
  top: -9px;
  width: 18px;
  height: 18px;
  border-top: 1px solid rgba(0, 158, 234, 0.72);
  border-left: 1px solid rgba(0, 158, 234, 0.72);
  background: #020c17;
  transform: rotate(45deg);
}

.solutions-utility.is-category-open .category-mega-menu,
.category-mega-menu.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  visibility: visible;
}

.category-mega-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(150px, 190px)) minmax(280px, 340px);
  gap: 0;
  min-height: 320px;
}

.category-mega-column {
  min-width: 0;
  display: grid;
  align-content: start;
  grid-template-rows: auto repeat(6, auto) 1fr;
  gap: 10px;
  padding: 0 clamp(13px, 1.25vw, 28px);
  border-right: 1px solid rgba(0, 158, 234, 0.24);
}

.category-mega-heading {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.category-mega-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: var(--global-green);
  filter: drop-shadow(0 0 10px rgba(107, 209, 47, 0.22));
}

.category-mega-icon svg {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.category-mega-heading h2 {
  margin: 0;
  color: var(--global-white);
  font-family: "Bebas Neue", Arial, sans-serif;
  font-size: clamp(18px, 1vw, 22px);
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
}

.category-mega-column a {
  width: fit-content;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(13px, 0.85vw, 16px);
  line-height: 1.25;
  transition: color 180ms ease, transform 180ms ease;
}

.category-mega-column a:hover,
.category-mega-column a:focus-visible {
  color: var(--global-green);
  transform: translateX(2px);
}

.category-mega-column .category-view-all {
  margin-top: 8px;
  color: var(--global-blue);
  font-weight: 700;
}

.category-mega-column img {
  width: 100%;
  max-height: 142px;
  align-self: end;
  justify-self: center;
  margin-top: 22px;
  object-fit: contain;
  object-position: bottom center;
  filter: drop-shadow(0 18px 20px rgba(0, 0, 0, 0.42));
}

.category-mega-promo {
  position: relative;
  min-height: 318px;
  display: flex;
  align-items: flex-start;
  overflow: hidden;
  padding: 22px 28px;
  border-radius: 6px;
  background:
    linear-gradient(90deg, rgba(2, 12, 23, 0.94) 0%, rgba(2, 12, 23, 0.82) 38%, rgba(2, 12, 23, 0.1) 100%),
    url("../assets/solutions/ChatGPT%20Image%20May%209,%202026,%2003_29_30%20PM.png") 60% center / cover no-repeat;
}

.category-mega-promo div {
  position: relative;
  z-index: 1;
  max-width: 260px;
}

.category-mega-promo span {
  color: var(--global-green);
  font-weight: 800;
  font-size: clamp(15px, 1vw, 20px);
  text-transform: uppercase;
}

.category-mega-promo h2 {
  margin: 8px 0 12px;
  color: var(--global-white);
  font-size: clamp(23px, 1.55vw, 31px);
  line-height: 1;
  text-transform: uppercase;
}

.category-mega-promo p {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  line-height: 1.5;
}

.category-mega-promo a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 18px;
  border: 1px solid rgba(107, 209, 47, 0.72);
  border-radius: 5px;
  color: var(--global-white);
  background: rgba(2, 12, 23, 0.58);
  font-family: "Bebas Neue", Arial, sans-serif;
  font-size: 16px;
  text-transform: uppercase;
  transition: color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.category-mega-promo a:hover,
.category-mega-promo a:focus-visible {
  color: var(--global-green);
  transform: translateY(-1px);
  box-shadow: 0 0 22px rgba(107, 209, 47, 0.2);
}

body.mobile-category-lock {
  overflow: hidden;
}

body.mobile-menu-lock {
  overflow: hidden;
}

.mobile-header-search {
  display: none;
}

.mobile-menu-overlay {
  --global-blue: var(--blue, var(--electric-blue, #009eea));
  --global-green: var(--green, var(--bright-green, #6bd12f));
  --global-white: var(--white, #ffffff);
  position: fixed;
  inset: 0;
  z-index: 130;
  display: none;
  color: var(--global-white);
  background: rgba(1, 7, 13, 0.64);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.mobile-menu-overlay .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.mobile-menu-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu-shell {
  position: absolute;
  inset: 0 0 0 auto;
  width: min(86vw, 390px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-left: 1px solid rgba(0, 158, 234, 0.34);
  background:
    linear-gradient(180deg, rgba(2, 9, 17, 0.98), rgba(2, 14, 26, 0.98)),
    url("../assets/direct-parts/Blue%20fractle%20back%20ground.png") center bottom / cover no-repeat;
  box-shadow: -24px 0 60px rgba(0, 0, 0, 0.54), inset 0 0 44px rgba(0, 158, 234, 0.08);
  transform: translateX(100%);
  transition: transform 260ms ease;
}

.mobile-menu-overlay.is-open .mobile-menu-shell {
  transform: translateX(0);
}

.mobile-menu-panel {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
  overflow-y: auto;
  padding: max(20px, env(safe-area-inset-top)) 18px 24px;
  transform: translateX(100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 240ms ease, opacity 200ms ease;
}

.mobile-menu-panel.is-active {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.mobile-menu-logo img {
  width: 142px;
  height: auto;
}

.mobile-menu-close,
.mobile-menu-back {
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 6px;
  color: var(--global-white);
  background: rgba(2, 12, 23, 0.72);
}

.mobile-menu-close {
  width: 50px;
  height: 50px;
}

.mobile-menu-close svg,
.mobile-menu-back svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mobile-menu-account {
  display: grid;
  grid-template-columns: 38px 1fr;
  align-items: center;
  column-gap: 12px;
  padding: 4px 0 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.mobile-menu-account svg,
.mobile-menu-main-row svg,
.mobile-menu-category-row svg,
.mobile-menu-support svg {
  fill: none;
  stroke: var(--global-green);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 10px rgba(107, 209, 47, 0.25));
}

.mobile-menu-account svg {
  width: 32px;
  height: 32px;
}

.mobile-menu-account strong {
  display: block;
  color: var(--global-white);
  font-size: 16px;
}

.mobile-menu-account a,
.mobile-menu-eyebrow,
.mobile-menu-search button {
  color: var(--global-blue);
  font-size: 13px;
  font-weight: 700;
}

.mobile-menu-search {
  display: grid;
  grid-template-columns: 1fr 44px;
  min-height: 48px;
  overflow: hidden;
  border: 1px solid rgba(0, 158, 234, 0.38);
  border-radius: 7px;
  background: rgba(2, 12, 23, 0.72);
}

.mobile-menu-search input {
  min-width: 0;
  border: 0;
  outline: 0;
  padding: 0 15px;
  color: var(--global-white);
  background: transparent;
}

.mobile-menu-search button {
  display: grid;
  place-items: center;
  border: 0;
  background: transparent;
}

.mobile-menu-search svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mobile-menu-list,
.mobile-menu-category-list {
  overflow: hidden;
  border: 1px solid rgba(0, 158, 234, 0.42);
  border-radius: 12px;
  background: rgba(2, 11, 21, 0.82);
  box-shadow: inset 0 0 44px rgba(0, 158, 234, 0.05);
}

.mobile-menu-eyebrow {
  display: block;
  padding: 16px 18px 8px;
  font-family: "Inter", Arial, sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: -0.015em;
  text-transform: uppercase;
}

.mobile-menu-main-row,
.mobile-menu-category-row {
  width: 100%;
  min-height: 56px;
  display: grid;
  align-items: center;
  border: 0;
  border-bottom: 1px solid rgba(0, 158, 234, 0.24);
  color: var(--global-white);
  background: transparent;
  text-align: left;
  text-decoration: none;
  transition: background 160ms ease, color 160ms ease;
}

.mobile-menu-main-row {
  grid-template-columns: 40px 1fr 22px;
  column-gap: 10px;
  padding: 12px 17px;
}

.mobile-menu-main-row.is-priority {
  color: var(--global-green);
}

.mobile-menu-main-row:last-child,
.mobile-menu-category-row:last-child {
  border-bottom: 0;
}

.mobile-menu-main-row:hover,
.mobile-menu-main-row:focus-visible,
.mobile-menu-category-row:hover,
.mobile-menu-category-row:focus-visible {
  background: rgba(0, 158, 234, 0.08);
}

.mobile-menu-main-row svg {
  width: 26px;
  height: 26px;
}

.mobile-menu-main-row strong,
.mobile-menu-category-row strong,
.mobile-menu-support strong {
  font-family: "Inter", Arial, sans-serif;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.015em;
  line-height: 1;
  text-transform: uppercase;
}

.mobile-menu-chevron {
  justify-self: end;
  color: var(--global-white);
  font-size: 28px;
  line-height: 1;
}

.mobile-menu-support {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 10px 14px;
  padding: 18px;
  border: 1px solid rgba(0, 158, 234, 0.5);
  border-radius: 10px;
  background:
    radial-gradient(circle at 12% 24%, rgba(0, 158, 234, 0.22), transparent 9rem),
    rgba(2, 12, 23, 0.78);
}

.mobile-menu-support svg {
  grid-row: span 3;
  width: 34px;
  height: 34px;
  stroke: var(--global-blue);
}

.mobile-menu-support span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}

.mobile-menu-support a:not(.mobile-menu-quote) {
  color: var(--global-white);
  font-size: 23px;
  font-weight: 800;
}

.mobile-menu-support small {
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
}

.mobile-menu-quote {
  grid-column: 1 / -1;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 8px;
  border-radius: 7px;
  color: #061109;
  background: var(--global-green);
  font-family: "Inter", Arial, sans-serif;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  box-shadow: 0 0 22px rgba(107, 209, 47, 0.24);
}

.mobile-menu-back {
  width: fit-content;
  min-height: 40px;
  grid-auto-flow: column;
  gap: 6px;
  padding: 0 12px;
  font-size: 15px;
}

.mobile-menu-back svg {
  width: 22px;
  height: 22px;
}

.mobile-menu-category-title {
  margin: -4px 0 0;
  color: var(--global-green);
  font-family: "Inter", Arial, sans-serif;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.015em;
  line-height: 1;
  text-transform: uppercase;
}

.mobile-menu-category-row {
  grid-template-columns: 42px 1fr 22px;
  column-gap: 12px;
  min-height: 66px;
  padding: 11px 16px;
}

.mobile-menu-category-row svg {
  width: 29px;
  height: 29px;
}

.mobile-menu-category-row small {
  display: block;
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.76);
  font-family: "Inter", Arial, sans-serif;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.3;
}

.mobile-menu-promo {
  position: relative;
  min-height: 164px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: 18px;
  border: 1px solid rgba(0, 158, 234, 0.48);
  border-radius: 10px;
  background:
    linear-gradient(90deg, rgba(2, 12, 23, 0.98) 0%, rgba(2, 12, 23, 0.88) 42%, rgba(2, 12, 23, 0.22) 72%, rgba(2, 12, 23, 0) 100%),
    url("../assets/solutions/ChatGPT%20Image%20May%209,%202026,%2003_29_30%20PM.png") 70% center / cover no-repeat;
}

.mobile-menu-promo div {
  max-width: 205px;
}

.mobile-menu-promo h3 {
  margin: 0 0 10px;
  color: var(--global-white);
  font-family: "Inter", Arial, sans-serif;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.015em;
  line-height: 1.04;
  text-transform: uppercase;
}

.mobile-menu-promo h3 span {
  display: block;
  color: var(--global-green);
}

.mobile-menu-promo p {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  line-height: 1.4;
}

.mobile-menu-promo a {
  color: var(--global-blue);
  font-family: "Inter", Arial, sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: -0.015em;
  text-transform: uppercase;
}

.mobile-category-overlay {
  --global-blue: var(--blue, var(--electric-blue, #009eea));
  --global-green: var(--green, var(--bright-green, #6bd12f));
  --global-white: var(--white, #ffffff);
  position: fixed;
  inset: 0;
  z-index: 120;
  display: none;
  padding: env(safe-area-inset-top) 14px 18px;
  overflow-y: auto;
  color: var(--global-white);
  background:
    radial-gradient(circle at 16% 18%, rgba(0, 158, 234, 0.16), transparent 18rem),
    radial-gradient(circle at 92% 6%, rgba(107, 209, 47, 0.1), transparent 18rem),
    linear-gradient(180deg, rgba(1, 8, 15, 0.98), rgba(2, 15, 27, 0.99));
  font-family: "Inter", Arial, sans-serif;
  opacity: 0;
  pointer-events: none;
  transform: translateX(100%);
  transition: opacity 220ms ease, transform 260ms ease;
}

.mobile-category-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

.mobile-category-panel {
  width: min(100%, 430px);
  min-height: 100%;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 16px 0 20px;
}

.mobile-category-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.mobile-category-logo img {
  width: 142px;
  height: auto;
}

.mobile-category-actions {
  display: flex;
  align-items: center;
  gap: 13px;
}

.mobile-category-icon-btn {
  position: relative;
  width: 28px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 0;
  color: var(--global-white);
  background: transparent;
}

.mobile-category-icon-btn svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mobile-category-close svg {
  width: 29px;
  height: 29px;
}

.mobile-cart-badge {
  position: absolute;
  top: 0;
  right: -4px;
  min-width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #061109;
  background: var(--global-green);
  box-shadow: 0 0 10px rgba(107, 209, 47, 0.38);
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
}

.mobile-category-list {
  overflow: hidden;
  border: 1px solid rgba(0, 158, 234, 0.48);
  border-radius: 7px;
  background:
    linear-gradient(90deg, rgba(2, 12, 23, 0.94), rgba(3, 18, 34, 0.84)),
    url("../assets/direct-parts/Blue%20fractle%20back%20ground.png") center / cover no-repeat;
  box-shadow: 0 0 28px rgba(0, 158, 234, 0.1), inset 0 0 44px rgba(0, 158, 234, 0.04);
}

.mobile-category-title,
.mobile-category-row {
  width: 100%;
  min-height: 70px;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) 26px;
  align-items: center;
  gap: 0;
  padding: 10px 17px 10px 20px;
  border: 0;
  border-bottom: 1px solid rgba(0, 158, 234, 0.34);
  color: inherit;
  background: transparent;
  text-align: left;
  text-decoration: none;
}

.mobile-category-title {
  min-height: 66px;
  color: var(--global-green);
  letter-spacing: 0;
  text-transform: uppercase;
}

.mobile-category-title span,
.mobile-category-row strong {
  font-family: "Inter", Arial, sans-serif;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.015em;
  line-height: 1;
}

.mobile-category-row:last-child {
  border-bottom: 0;
}

.mobile-category-row:hover,
.mobile-category-row:focus-visible {
  background: rgba(0, 158, 234, 0.08);
}

.mobile-category-row:active {
  background: rgba(107, 209, 47, 0.09);
}

.mobile-category-row svg,
.mobile-category-title svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: var(--global-green);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 10px rgba(107, 209, 47, 0.26));
}

.mobile-category-row div {
  min-width: 0;
}

.mobile-category-row strong {
  display: block;
  color: var(--global-white);
  text-transform: uppercase;
}

.mobile-category-row small {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.62);
  font-family: "Inter", Arial, sans-serif;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.28;
}

.mobile-category-chevron {
  justify-self: end;
  color: var(--global-white);
  font-size: 30px;
  line-height: 1;
}

.mobile-category-promo {
  position: relative;
  min-height: 206px;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 24px 20px;
  border: 1px solid rgba(0, 158, 234, 0.48);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(2, 12, 23, 0.98) 0%, rgba(2, 12, 23, 0.88) 41%, rgba(2, 12, 23, 0.32) 65%, rgba(2, 12, 23, 0.06) 100%),
    url("../assets/solutions/ChatGPT%20Image%20May%209,%202026,%2003_29_30%20PM.png") 66% center / cover no-repeat;
  box-shadow: inset 0 0 44px rgba(0, 158, 234, 0.08), 0 0 22px rgba(0, 158, 234, 0.08);
}

.mobile-category-promo-content {
  max-width: 230px;
}

.mobile-category-promo h2 {
  margin: 0 0 14px;
  font-family: "Inter", Arial, sans-serif;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.015em;
  line-height: 1.04;
  text-transform: uppercase;
}

.mobile-category-promo h2 span {
  display: block;
  color: var(--global-green);
}

.mobile-category-promo p {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 15px;
  line-height: 1.42;
}

.mobile-category-promo a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--global-white);
  font-family: "Inter", Arial, sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: -0.015em;
  text-transform: uppercase;
}

.mobile-category-promo a span {
  color: var(--global-green);
  font-family: "Inter", Arial, sans-serif;
  font-size: 25px;
}

.solutions-search {
  min-height: 52px;
  display: grid;
  grid-template-columns: 1fr 56px;
  align-items: center;
  border-radius: 6px;
  overflow: hidden;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.solutions-search:focus-within {
  border-color: var(--global-blue);
  box-shadow: 0 0 20px rgba(0, 158, 234, 0.28);
}

.solutions-search label {
  display: block;
}

.solutions-search input {
  width: 100%;
  min-height: 50px;
  padding: 0 24px;
  border: 0;
  outline: 0;
  color: var(--global-white);
  background: transparent;
  font-family: "Inter", Arial, sans-serif;
  font-size: 16px;
  font-weight: 500;
  font-style: italic;
  letter-spacing: -0.01em;
}

.solutions-search input::placeholder {
  color: rgba(255, 255, 255, 0.55);
  font-family: "Inter", Arial, sans-serif;
  font-size: 16px;
  font-weight: 500;
  font-style: italic;
  letter-spacing: -0.01em;
}

.solutions-search button {
  width: 56px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 0;
  color: var(--global-white);
  background: transparent;
  transition: color 180ms ease;
}

.solutions-search button:hover,
.solutions-search button:focus-visible {
  color: var(--global-green);
}

.solutions-search svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.utility-contact {
  display: grid;
  grid-template-columns: repeat(2, max-content);
  gap: 14px;
}

.utility-contact a {
  min-height: 52px;
  display: grid;
  grid-template-columns: 32px max-content;
  column-gap: 12px;
  align-items: center;
  padding: 9px 14px;
  border-radius: 6px;
}

.utility-contact svg {
  grid-row: span 2;
  width: 28px;
  height: 28px;
  fill: none;
  stroke: var(--global-blue);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.utility-contact span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
}

.utility-contact strong {
  color: var(--global-white);
  font-size: 14px;
}

@media (max-width: 1440px) {
  .solutions-header,
  .solutions-utility {
    --global-shell: var(--site-max-width);
  }
}

@media (max-width: 1220px) {
  .solutions-header,
  .solutions-utility {
    --global-shell: var(--site-max-width);
  }

  .solutions-nav-inner {
    grid-template-columns: auto auto 1fr;
  }

  .solutions-mobile-toggle {
    display: flex;
    order: 2;
  }

  .solutions-logo-link {
    order: 1;
  }

  .solutions-main-nav {
    position: absolute;
    top: 100%;
    left: 24px;
    right: 24px;
    display: none;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 0;
    padding: 14px;
    border: 1px solid rgba(0, 158, 234, 0.32);
    border-radius: 8px;
    background: rgba(2, 7, 13, 0.98);
  }

  .solutions-main-nav.is-open {
    display: flex;
  }

  .solutions-main-nav a {
    width: 25%;
    padding: 12px;
  }

  .solutions-main-nav a::after {
    bottom: 6px;
  }

  .solutions-nav-actions {
    justify-self: end;
    order: 3;
  }

  .solutions-phone {
    display: none;
  }

  .utility-inner {
    grid-template-columns: 220px 1fr;
  }

  .utility-contact {
    grid-column: 1 / -1;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding-bottom: 18px;
  }

  .utility-contact a {
    grid-template-columns: 32px 1fr;
  }

  .category-mega-menu {
    width: min(calc(100vw - 40px), 640px);
    padding: 22px;
  }

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

  .category-mega-column:nth-of-type(2n) {
    border-right: 0;
  }

  .category-mega-promo {
    grid-column: 1 / -1;
    min-height: 230px;
    background-position: center 62%;
  }
}

@media (max-width: 900px) {
  .solutions-header,
  .solutions-utility {
    --global-shell: var(--site-max-width);
  }

  .solutions-nav-inner {
    min-height: 72px;
    gap: 14px;
  }

  .solutions-logo-link img {
    width: 132px;
  }

  .solutions-quote-btn {
    min-height: 40px;
    padding: 0 18px;
    font-size: 13px;
  }

  .solutions-icon-link {
    display: none;
  }

  .solutions-main-nav a {
    width: 50%;
  }

  .utility-inner {
    grid-template-columns: 1fr;
    padding: 16px 0;
  }

  .category-select,
  .solutions-search {
    width: 100%;
  }

}

@media (max-width: 900px) {
  .solutions-header,
  .solutions-utility {
    --global-shell: var(--site-max-width);
  }

  .solutions-header {
    z-index: 95;
    background:
      radial-gradient(circle at 85% 0%, rgba(107, 209, 47, 0.09), transparent 13rem),
      linear-gradient(180deg, rgba(2, 8, 15, 0.98), rgba(1, 9, 17, 0.96));
  }

  .solutions-nav-inner {
    min-height: 64px;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .solutions-logo-link {
    flex: 0 0 auto;
    order: 1;
  }

  .solutions-logo-link img {
    width: 128px;
  }

  .solutions-mobile-toggle {
    width: 35px;
    height: 35px;
    flex: 0 0 auto;
    order: 2;
    margin-left: auto;
    border-color: rgba(0, 158, 234, 0.46);
    background: rgba(2, 12, 23, 0.74);
  }

  .solutions-mobile-toggle span {
    width: 17px;
    height: 2px;
  }

  .solutions-main-nav,
  .solutions-main-nav.is-open {
    display: none;
  }

  .solutions-nav-actions {
    flex: 0 0 auto;
    order: 3;
    gap: 9px;
  }

  .solutions-phone,
  .solutions-quote-btn {
    display: none;
  }

  .mobile-header-search,
  .solutions-icon-link {
    position: relative;
    width: 30px;
    height: 34px;
    display: grid;
    place-items: center;
    border: 0;
    color: var(--global-white);
    background: transparent;
  }

  .mobile-header-search svg,
  .solutions-icon-link svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .solutions-icon-link span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
  }

  .solutions-icon-link:hover,
  .solutions-icon-link:focus-visible {
    color: var(--global-green);
    transform: none;
  }

  .solutions-icon-link.cart-link::after {
    content: "2";
    position: absolute;
    top: 0;
    right: 0;
    min-width: 16px;
    height: 16px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    color: #061109;
    background: var(--global-green);
    font-size: 10px;
    font-weight: 800;
    line-height: 1;
  }

  .solutions-utility {
    display: none;
  }

  .category-mega-menu {
    display: none;
  }

  .mobile-menu-overlay,
  .mobile-category-overlay {
    display: block;
  }
}

@media (max-width: 620px) {
  .solutions-header,
  .solutions-utility {
    --global-shell: var(--site-max-width);
  }

  .solutions-nav-actions {
    gap: 7px;
  }

  .mobile-header-search,
  .solutions-icon-link {
    width: 28px;
  }

  .mobile-header-search svg,
  .solutions-icon-link svg {
    width: 23px;
    height: 23px;
  }

  .mobile-menu-shell {
    width: min(100vw, 430px);
  }

  .mobile-menu-panel {
    gap: 14px;
    padding: max(16px, env(safe-area-inset-top)) 15px 20px;
  }

  .mobile-menu-logo img {
    width: 134px;
  }

  .mobile-menu-close {
    width: 42px;
    height: 42px;
  }

  .mobile-menu-main-row {
    grid-template-columns: 35px 1fr 20px;
    min-height: 54px;
    padding: 11px 15px;
  }

  .mobile-menu-category-row {
    grid-template-columns: 38px minmax(0, 1fr) 20px;
    min-height: 60px;
    padding: 9px 14px;
  }

  .mobile-menu-main-row strong,
  .mobile-menu-category-row strong,
  .mobile-menu-support strong {
    font-size: 15px;
  }

  .mobile-menu-category-row small {
    margin-top: 3px;
    font-size: 12px;
  }

  .mobile-menu-main-row svg {
    width: 24px;
    height: 24px;
  }

  .mobile-menu-category-row svg {
    width: 25px;
    height: 25px;
  }

  .mobile-menu-support {
    padding: 15px;
  }

  .mobile-menu-support a:not(.mobile-menu-quote) {
    font-size: 21px;
  }

  .mobile-menu-quote {
    min-height: 48px;
    font-size: 13px;
  }

  .mobile-menu-promo {
    min-height: 176px;
    padding: 16px;
    background-position: 70% center;
  }

  .mobile-menu-promo div {
    max-width: 186px;
  }

  .mobile-menu-promo h3 {
    font-size: 23px;
  }

  .mobile-menu-promo p {
    font-size: 12px;
  }
}
