
    :root {
      --navy: #050B4F;
      --navy-2: #081164;
      --gold: #F2B632;
      --orange: #E76F00;
      --steel: #5E6472;
      --ink: #111827;
      --muted: #6B7280;
      --line: #D9DEE8;
      --white: #FFFFFF;
      --soft: #F4F6FA;
      --shadow: 0 22px 55px rgba(5, 11, 79, .18);
      --radius: 8px;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      background: var(--white);
      color: var(--ink);
      font-family: Inter, Arial, sans-serif;
      line-height: 1.5;
    }

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

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

    .site-shell {
      overflow: hidden;
    }

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

    .top-strip {
      background: #030735;
      color: rgba(255, 255, 255, .82);
      font-size: 13px;
      font-weight: 700;
      letter-spacing: .02em;
    }

    .top-strip .container {
      min-height: 38px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 50;
      background: rgba(5, 11, 79, .96);
      color: var(--white);
      border-bottom: 1px solid rgba(255, 255, 255, .12);
      backdrop-filter: blur(14px);
    }

    .nav {
      position: relative;
      min-height: 78px;
      display: flex;
      align-items: center;
      gap: 28px;
    }

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

    .brand-logo {
      width: 323px;
      height: auto;
      display: block;
      padding: 5px 7px;
      background: var(--white);
      border-radius: 4px;
    }

    .footer .brand-logo {
      width: 214px;
      padding: 7px 10px;
    }

    .nav-links {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 18px;
      margin-left: auto;
      color: rgba(255, 255, 255, .84);
      font-size: 14px;
      font-weight: 800;
    }

    .nav-links a {
      padding: 28px 0;
      position: relative;
    }

    .nav-links a::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: 19px;
      width: 0;
      height: 2px;
      background: var(--gold);
      transition: width .2s ease;
    }

    .nav-links a:hover::after {
      width: 100%;
    }

    .header-actions {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .search {
      width: 42px;
      height: 42px;
      display: grid;
      place-items: center;
      border: 1px solid rgba(255, 255, 255, .25);
      color: var(--white);
      background: transparent;
    }

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

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 46px;
      padding: 0 20px;
      border: 0;
      border-radius: 4px;
      font-size: 14px;
      font-weight: 900;
      letter-spacing: .02em;
      text-transform: uppercase;
      cursor: pointer;
      transition: transform .2s ease, background .2s ease, color .2s ease, box-shadow .2s ease;
    }

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

    .btn-primary {
      background: var(--gold);
      color: var(--navy);
      box-shadow: 0 14px 30px rgba(242, 182, 50, .26);
    }

    .btn-primary:hover {
      background: var(--orange);
      color: var(--white);
    }

    .btn-outline {
      background: rgba(255, 255, 255, .08);
      color: var(--white);
      border: 1px solid rgba(255, 255, 255, .36);
    }

    .hero {
      position: relative;
      min-height: 720px;
      padding: 38px 0 0;
      color: var(--white);
      background:
        linear-gradient(90deg, rgba(5, 11, 79, .72) 0%, rgba(5, 11, 79, .48) 42%, rgba(5, 11, 79, .08) 100%),
        radial-gradient(circle at 78% 18%, rgba(242, 182, 50, .1), transparent 28%),
        url("../images/hero-warehouse.png") center / cover no-repeat,
        linear-gradient(135deg, #0B123F 0%, #0E184F 38%, #222C37 100%);
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(255, 255, 255, .06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .05) 1px, transparent 1px);
      background-size: 64px 64px;
      mask-image: linear-gradient(90deg, transparent, #000 25%, #000 100%);
      opacity: .2;
    }

    .hero .container {
      position: relative;
      min-height: 640px;
      display: grid;
      grid-template-columns: minmax(0, .82fr) minmax(430px, .78fr);
      align-items: center;
      gap: 42px;
      padding: 44px 62px 54px;
      border: 14px solid var(--white);
      border-bottom-width: 18px;
      background:
        linear-gradient(90deg, rgba(5, 11, 79, .72) 0%, rgba(5, 11, 79, .5) 44%, rgba(5, 11, 79, .1) 100%);
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      color: var(--gold);
      font-size: 13px;
      font-weight: 900;
      letter-spacing: .16em;
      text-transform: uppercase;
    }

    .hero .eyebrow {
      position: relative;
      padding-left: 24px;
      color: var(--gold);
    }

    .eyebrow::before {
      content: "";
      width: 34px;
      height: 3px;
      background: currentColor;
    }

    .hero .eyebrow::before {
      position: absolute;
      left: 0;
      top: 50%;
      width: 4px;
      height: 66px;
      background: var(--white);
      transform: translateY(-50%);
    }

    h1,
    h2,
    h3 {
      margin: 0;
      font-family: Oswald, Impact, sans-serif;
      font-weight: 700;
      line-height: .98;
      letter-spacing: 0;
      text-transform: uppercase;
    }

    h1 {
      max-width: 760px;
      margin-top: 18px;
      font-size: clamp(54px, 7.2vw, 94px);
    }

    .hero h1 {
      max-width: 560px;
      font-size: clamp(52px, 6.2vw, 88px);
    }

    .hero-copy {
      max-width: 560px;
      margin: 24px 0 0;
      color: rgba(255, 255, 255, .84);
      font-size: 19px;
      line-height: 1.65;
    }

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

    .trust-row {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 1px;
      max-width: 640px;
      margin-top: 46px;
      background: rgba(255, 255, 255, .16);
      border: 1px solid rgba(255, 255, 255, .16);
    }

    .trust-row div {
      padding: 18px;
      background: rgba(255, 255, 255, .08);
    }

    .trust-row strong {
      display: block;
      color: var(--gold);
      font-family: Oswald, Impact, sans-serif;
      font-size: 27px;
      line-height: 1;
    }

    .trust-row span {
      display: block;
      margin-top: 6px;
      color: rgba(255, 255, 255, .78);
      font-size: 12px;
      font-weight: 800;
      text-transform: uppercase;
    }

    .warehouse-visual {
      position: relative;
      min-height: 390px;
      align-self: end;
      border: 1px solid rgba(255, 255, 255, .36);
      background:
        linear-gradient(180deg, rgba(255, 255, 255, .22), rgba(255, 255, 255, .08)),
        url("../images/hero-warehouse.png") center / cover no-repeat;
      filter: brightness(1.22) contrast(1.08) saturate(1.06);
      box-shadow: 0 38px 80px rgba(0, 0, 0, .22);
      overflow: hidden;
    }

    .warehouse-visual::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(135deg, rgba(255,255,255,.32), transparent 46%),
        radial-gradient(circle at 50% 18%, rgba(255,255,255,.22), transparent 34%);
      opacity: .75;
    }

    .warehouse-visual > * {
      display: none;
    }

    .dock {
      position: absolute;
      left: 8%;
      right: 8%;
      bottom: 38px;
      height: 42%;
      perspective: 800px;
    }

    .floor {
      position: absolute;
      inset: 38% -12% -20% -12%;
      background:
        linear-gradient(90deg, rgba(255,255,255,.07) 1px, transparent 1px),
        linear-gradient(rgba(255,255,255,.07) 1px, transparent 1px),
        linear-gradient(135deg, rgba(255,255,255,.16), rgba(5,11,79,.12));
      background-size: 80px 80px, 80px 80px, 100% 100%;
      transform: rotateX(58deg);
      transform-origin: top;
    }

    .rack {
      position: absolute;
      top: 18px;
      bottom: 72px;
      width: 28%;
      border: 5px solid rgba(242, 182, 50, .86);
      border-top: 7px solid rgba(242, 182, 50, .92);
      opacity: .92;
    }

    .rack.left {
      left: 0;
    }

    .rack.right {
      right: 0;
    }

    .rack::before,
    .rack::after {
      content: "";
      position: absolute;
      left: -5px;
      right: -5px;
      height: 5px;
      background: rgba(242, 182, 50, .9);
    }

    .rack::before {
      top: 34%;
    }

    .rack::after {
      top: 66%;
    }

    .pallet {
      position: absolute;
      width: 86px;
      height: 68px;
      background: linear-gradient(135deg, #E8EDF6, #B5BFCD);
      border: 1px solid rgba(255,255,255,.36);
      box-shadow: inset 0 -8px rgba(5,11,79,.16);
    }

    .pallet::after {
      content: "";
      position: absolute;
      inset: 9px;
      border: 2px solid rgba(255,255,255,.42);
    }

    .p1 { left: 18px; top: 42px; }
    .p2 { left: 124px; top: 112px; }
    .p3 { right: 24px; top: 52px; }
    .p4 { right: 136px; top: 124px; }

    .wrap-machine {
      position: absolute;
      left: 50%;
      bottom: 36px;
      width: 145px;
      height: 190px;
      transform: translateX(-50%);
    }

    .machine-post {
      position: absolute;
      top: 0;
      left: 18px;
      width: 26px;
      height: 178px;
      background: linear-gradient(180deg, var(--gold), #C99019);
    }

    .machine-base {
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      height: 24px;
      background: #DDE4EE;
    }

    .film-roll {
      position: absolute;
      left: 58px;
      top: 66px;
      width: 64px;
      height: 86px;
      border-radius: 50% / 16%;
      background:
        linear-gradient(90deg, rgba(255,255,255,.32), transparent 38%),
        linear-gradient(180deg, #EAF1FA, #AEB9C8);
      border: 3px solid rgba(255,255,255,.3);
    }

    section {
      position: relative;
    }

    .stats {
      margin-top: -58px;
      z-index: 3;
    }

    .stats-card {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      background: var(--white);
      box-shadow: var(--shadow);
      border-radius: var(--radius);
      overflow: hidden;
      border: 1px solid var(--line);
    }

    .stat {
      padding: 30px 28px;
      border-right: 1px solid var(--line);
    }

    .stat:last-child {
      border-right: 0;
    }

    .stat strong {
      display: block;
      color: var(--navy);
      font-family: Oswald, Impact, sans-serif;
      font-size: clamp(42px, 5vw, 62px);
      line-height: .9;
    }

    .stat span {
      display: block;
      margin-top: 10px;
      color: var(--steel);
      font-weight: 900;
      text-transform: uppercase;
      font-size: 13px;
      letter-spacing: .06em;
    }

    .section-pad {
      padding: 108px 0;
    }

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

    .section-head h2 {
      max-width: 760px;
      margin-top: 14px;
      color: var(--navy);
      font-size: clamp(38px, 4.8vw, 64px);
    }

    .section-head p {
      max-width: 420px;
      margin: 0;
      color: var(--steel);
      font-size: 16px;
      font-weight: 600;
    }

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

    .product-card {
      --card-image: url("../images/product-stretch-wrap.png");
      min-height: 350px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      padding: 24px;
      color: var(--white);
      background: var(--navy);
      border-radius: var(--radius);
      overflow: hidden;
      position: relative;
      box-shadow: 0 14px 36px rgba(5, 11, 79, .12);
      transition: transform .2s ease, box-shadow .2s ease;
    }

    .product-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 22px 48px rgba(5, 11, 79, .22);
    }

    .product-card::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(180deg, rgba(5, 11, 79, .08), rgba(5, 11, 79, .92)),
        radial-gradient(circle at 78% 18%, rgba(242, 182, 50, .32), transparent 25%),
        var(--card-image) center / cover no-repeat,
        linear-gradient(135deg, #1B2445, #07105A);
      z-index: 0;
    }

    .product-card::after {
      content: none;
    }

    .product-card.stretch {
      --card-image: url("../images/product-stretch-wrap.png");
    }

    .product-card.tape {
      --card-image: url("../images/product-tape-adhesives.png");
    }

    .product-card.boxes {
      --card-image: url("../images/product-cartons-corrugated.png");
    }

    .product-card.cargo {
      --card-image: url("../images/product-strapping-cargo.png");
    }

    .product-card.shrink {
      --card-image: url("../images/product-shrink-equipment.png");
    }

    .product-card.handling {
      --card-image: url("../images/product-material-handling.png");
    }

    .product-card.heavy {
      --card-image: url("../images/product-heavy-equipment.png");
    }

    .product-card.masonry {
      --card-image: url("../images/product-masonry-building.png");
    }

    .product-card.logistics {
      --card-image: url("../images/distribution-logistics.png");
    }

    .product-card.facility {
      --card-image: url("../images/product-facility-supplies.png");
    }

    .product-card.labels {
      --card-image: url("../images/product-labels-identification.png");
    }

    .product-card.cushioning {
      --card-image: url("../images/product-cushioning-void-fill.png");
    }

    .product-card > * {
      position: relative;
      z-index: 1;
    }

    .product-tag {
      width: fit-content;
      padding: 6px 9px;
      background: var(--gold);
      color: var(--navy);
      font-size: 11px;
      font-weight: 900;
      letter-spacing: .12em;
      text-transform: uppercase;
    }

    .product-card h3 {
      margin-top: 118px;
      font-size: 32px;
    }

    .product-card.logistics h3 {
      font-size: 28px;
      line-height: 1.04;
    }

    .product-card p {
      min-height: 78px;
      margin: 14px 0 22px;
      color: rgba(255, 255, 255, .82);
      font-size: 14px;
      font-weight: 600;
    }

    .text-link {
      color: var(--gold);
      font-size: 13px;
      font-weight: 900;
      letter-spacing: .08em;
      text-transform: uppercase;
    }

    .distribution {
      background: var(--navy);
      color: var(--white);
      overflow: hidden;
    }

    .distribution .container {
      display: grid;
      grid-template-columns: minmax(0, .9fr) minmax(430px, 1fr);
      gap: 56px;
      align-items: center;
    }

    .distribution h2,
    .equipment h2,
    .cta h2 {
      margin-top: 14px;
      font-size: clamp(40px, 5vw, 68px);
    }

    .distribution p,
    .cta p {
      color: rgba(255, 255, 255, .78);
      font-size: 17px;
      line-height: 1.7;
    }

    .check-list {
      display: grid;
      gap: 13px;
      margin: 30px 0;
      padding: 0;
      list-style: none;
    }

    .check-list li {
      position: relative;
      padding-left: 30px;
      color: rgba(255, 255, 255, .84);
      font-weight: 700;
    }

    .check-list li::before {
      content: "";
      position: absolute;
      left: 0;
      top: 5px;
      width: 14px;
      height: 14px;
      background: var(--gold);
      clip-path: polygon(14% 52%, 36% 75%, 86% 15%, 100% 28%, 38% 96%, 0 61%);
    }

    .map-panel {
      position: relative;
      min-height: 430px;
      padding: 30px;
      background:
        linear-gradient(180deg, rgba(5, 11, 79, .1), rgba(5, 11, 79, .72)),
        url("../images/distribution-logistics.png") center / cover no-repeat,
        linear-gradient(135deg, rgba(255,255,255,.12), rgba(255,255,255,.04));
      border: 1px solid rgba(255,255,255,.16);
      box-shadow: 0 34px 70px rgba(0,0,0,.22);
      overflow: hidden;
    }

    .map-panel::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(255,255,255,.18), transparent 45%);
      pointer-events: none;
    }

    .map-shape,
    .pin {
      display: none;
    }

    .map-shape {
      position: absolute;
      inset: 70px 54px 86px;
      background: rgba(255, 255, 255, .15);
      clip-path: polygon(6% 46%, 16% 26%, 31% 17%, 48% 23%, 63% 16%, 83% 27%, 94% 48%, 84% 64%, 62% 68%, 48% 82%, 27% 73%, 16% 60%);
      border: 1px solid rgba(255,255,255,.26);
    }

    .pin {
      position: absolute;
      width: 14px;
      height: 14px;
      background: var(--gold);
      border: 3px solid var(--white);
      border-radius: 50%;
      box-shadow: 0 0 0 8px rgba(242,182,50,.18);
    }

    .pin.nj { right: 22%; top: 36%; }
    .pin.midwest { left: 47%; top: 45%; }
    .pin.south { left: 55%; bottom: 31%; }
    .pin.west { left: 22%; top: 48%; }

    .map-caption {
      position: absolute;
      left: 30px;
      right: 30px;
      bottom: 24px;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 10px;
    }

    .map-caption div {
      padding: 13px;
      background: rgba(5, 11, 79, .66);
      border: 1px solid rgba(255,255,255,.14);
    }

    .map-caption strong {
      display: block;
      color: var(--gold);
      font-family: Oswald, Impact, sans-serif;
      font-size: 28px;
      line-height: 1;
    }

    .map-caption span {
      display: block;
      margin-top: 4px;
      color: rgba(255,255,255,.76);
      font-size: 11px;
      font-weight: 900;
      text-transform: uppercase;
    }

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

    .equipment .container {
      display: grid;
      grid-template-columns: minmax(430px, 1fr) minmax(0, .9fr);
      gap: 58px;
      align-items: center;
    }

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

    .equipment p {
      color: var(--steel);
      font-size: 17px;
      line-height: 1.7;
    }

    .equipment-visual {
      min-height: 460px;
      position: relative;
      background:
        linear-gradient(180deg, rgba(5, 11, 79, .02), rgba(5, 11, 79, .2)),
        url("../images/product-shrink-equipment.png") center / cover no-repeat,
        linear-gradient(135deg, #D8DEE8, #EEF2F7);
      border: 1px solid var(--line);
      box-shadow: var(--shadow);
      overflow: hidden;
    }

    .equipment-visual::before {
      content: none;
    }

    .equipment-visual::after {
      content: none;
    }

    .equipment-visual > * {
      display: none;
    }

    .equipment-frame {
      position: absolute;
      left: 18%;
      top: 70px;
      width: 230px;
      height: 230px;
      border: 18px solid var(--gold);
      border-radius: 50%;
    }

    .equipment-frame::before {
      content: "";
      position: absolute;
      left: 50%;
      top: -50px;
      width: 28px;
      height: 280px;
      background: var(--navy);
    }

    .equipment-box {
      position: absolute;
      right: 16%;
      bottom: 116px;
      width: 180px;
      height: 150px;
      background: #C59148;
      border: 4px solid #835B24;
      box-shadow: inset 0 24px rgba(255,255,255,.14);
    }

    .equipment-box::before {
      content: "";
      position: absolute;
      left: -4px;
      right: -4px;
      top: 46px;
      height: 4px;
      background: #835B24;
    }

    .light-list {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 12px;
      margin: 28px 0 34px;
      padding: 0;
      list-style: none;
    }

    .light-list li {
      padding: 14px 14px 14px 36px;
      position: relative;
      background: var(--white);
      border: 1px solid var(--line);
      color: var(--navy);
      font-size: 14px;
      font-weight: 800;
    }

    .light-list li::before {
      content: "";
      position: absolute;
      left: 14px;
      top: 19px;
      width: 10px;
      height: 10px;
      background: var(--gold);
    }

    .industries {
      background: var(--white);
    }

    .industry-grid {
      display: grid;
      grid-template-columns: repeat(5, minmax(0, 1fr));
      border-top: 1px solid var(--line);
      border-left: 1px solid var(--line);
    }

    .industry {
      min-height: 150px;
      padding: 20px;
      border-right: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
      transition: background .2s ease, color .2s ease;
    }

    .industry:hover {
      background: var(--navy);
      color: var(--white);
    }

    .industry strong {
      display: block;
      color: var(--navy);
      font-family: Oswald, Impact, sans-serif;
      font-size: 24px;
      line-height: 1;
      text-transform: uppercase;
    }

    .industry:hover strong {
      color: var(--gold);
    }

    .industry span {
      display: block;
      margin-top: 12px;
      color: var(--steel);
      font-size: 13px;
      font-weight: 700;
    }

    .industry:hover span {
      color: rgba(255,255,255,.78);
    }

    .cta {
      background:
        linear-gradient(90deg, rgba(5, 11, 79, .98), rgba(5, 11, 79, .88)),
        linear-gradient(135deg, #050B4F, #182148);
      color: var(--white);
    }

    .cta .container {
      display: grid;
      grid-template-columns: minmax(0, 1fr) 380px;
      gap: 48px;
      align-items: center;
    }

    .quote-box {
      padding: 24px;
      background: var(--white);
      color: var(--ink);
      border-radius: var(--radius);
      box-shadow: 0 28px 60px rgba(0,0,0,.24);
    }

    .quote-box label {
      display: block;
      margin-bottom: 7px;
      color: var(--navy);
      font-size: 12px;
      font-weight: 900;
      letter-spacing: .08em;
      text-transform: uppercase;
    }

    .quote-box p {
      margin: 0;
    }

    .quote-box .wpcf7-form-control-wrap {
      display: block;
    }

    .quote-box input[type=text],
    .quote-box input[type=email],
    .quote-box textarea {
      width: 100%;
      min-height: 46px;
      margin-top: 7px;
      margin-bottom: 4px;
      padding: 11px 12px;
      border: 1px solid var(--line);
      border-radius: 4px;
      font-size: 16px;
      font-weight: 400;
      font-family: inherit;
      line-height: 1.5;
    }

    .quote-box textarea {
      height: 88px;
      resize: vertical;
    }

    .quote-box .wpcf7-not-valid-tip {
      display: block;
      margin: -7px 0 12px;
      color: #B42318;
      font-size: 12px;
      font-weight: 800;
    }

    .quote-box .wpcf7-response-output {
      margin: 14px 0 0;
      padding: 11px 12px;
      border-radius: 4px;
      color: var(--navy);
      font-size: 13px;
      font-weight: 800;
    }

    .quote-box .wpcf7-spinner {
      margin: 0 0 0 10px;
      vertical-align: middle;
    }

    .quote-box__notice {
      color: var(--navy);
      font-weight: 800;
    }

    .footer {
      background: #030735;
      color: rgba(255,255,255,.76);
      padding: 58px 0 28px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr 1fr;
      gap: 38px;
    }

    .footer h3 {
      color: var(--white);
      font-size: 22px;
      margin-bottom: 16px;
    }

    .footer p {
      margin: 14px 0 0;
      max-width: 360px;
      font-size: 14px;
    }

    .footer ul {
      display: grid;
      gap: 9px;
      margin: 0;
      padding: 0;
      list-style: none;
      font-size: 14px;
      font-weight: 700;
    }

    .footer-bottom {
      display: flex;
      justify-content: space-between;
      gap: 20px;
      margin-top: 46px;
      padding-top: 24px;
      border-top: 1px solid rgba(255,255,255,.12);
      font-size: 13px;
    }

    @media (max-width: 1080px) {
      .nav-links {
        display: none;
      }

      .site-header.is-menu-open .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        margin-left: 0;
        padding: 10px 0;
        background: rgba(5, 11, 79, .98);
        border-top: 1px solid rgba(255, 255, 255, .12);
        box-shadow: 0 22px 44px rgba(0, 0, 0, .24);
      }

      .site-header.is-menu-open .nav-links a {
        padding: 14px 20px;
      }

      .site-header.is-menu-open .nav-links a::after {
        display: none;
      }

      .menu-toggle {
        display: grid;
        place-items: center;
      }

      .hero .container,
      .distribution .container,
      .equipment .container,
      .cta .container {
        grid-template-columns: 1fr;
      }

      .hero .container {
        padding-top: 64px;
      }

      .warehouse-visual,
      .equipment-visual,
      .map-panel {
        min-height: 420px;
      }

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

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

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

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

      .top-strip .container {
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
        padding: 10px 0;
      }

      .brand {
        min-width: 0;
      }

      .brand-logo {
        width: 248px;
        padding: 4px 6px;
      }

      .header-actions .btn {
        display: none;
      }

      .hero,
      .hero .container {
        min-height: auto;
      }

      .hero .container {
        gap: 32px;
        padding: 54px 0 92px;
      }

      h1 {
        font-size: 50px;
      }

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

      .hero-actions,
      .cta-actions {
        flex-direction: column;
      }

      .btn {
        width: 100%;
      }

      .trust-row,
      .stats-card,
      .product-grid,
      .light-list,
      .map-caption,
      .footer-grid {
        grid-template-columns: 1fr;
      }

      .stats {
        margin-top: -36px;
      }

      .stat {
        border-right: 0;
        border-bottom: 1px solid var(--line);
      }

      .stat:last-child {
        border-bottom: 0;
      }

      .section-pad {
        padding: 74px 0;
      }

      .section-head {
        display: block;
      }

      .section-head p {
        margin-top: 18px;
      }

      .product-card {
        min-height: 330px;
      }

      .distribution .container,
      .equipment .container,
      .cta .container {
        gap: 32px;
      }

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

      .footer-bottom {
        flex-direction: column;
      }
    }
  

.admin-bar .site-header{top:32px}@media(max-width:782px){.admin-bar .site-header{top:46px}}
.footer a{color:inherit}
