:root {
  --accent: #d9f43d;
  --content-width: 1120px;
  --page-gutter: clamp(16px, 4vw, 28px);
}
* {
  box-sizing: border-box;
}
html,body {
  margin: 0;
  min-height: 100%;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #101511;
  color: #fff;
}
body {
  min-height: 100vh;
}
.logistics-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: clamp(68px, 6vw, 82px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 max(var(--page-gutter), calc((100% - var(--content-width))/2));
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  background: #101511;
}
.logistics-brand {
  display: flex;
  align-items: center;
  gap: clamp(8px, 1vw, 11px);
  font-weight: 800;
  letter-spacing: -.04em;
  font-size: clamp(17px, 1.7vw, 20px);
  color: #fff;
  text-decoration: none;
}
 .logistics-brand-mark img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: inherit;
}
.logistics-brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent);
  color: #111;
  display: grid;
  place-items: center;
  font-size: 18px;
  font-weight: 900;
}
.logistics-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.5vw, 34px);
}
.logistics-nav a {
  position: relative;
  color: rgba(255, 255, 255, .72);
  text-decoration: none;
  font-size: clamp(11px, 1.2vw, 14px);
  font-weight: 650;
  white-space: nowrap;
  transition: color .18s ease, opacity .18s ease;
}
.logistics-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  border-radius: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .18s ease;
}
.logistics-nav a:not(.contact):hover,.logistics-nav a:not(.contact).active {
  color: #fff;
}
.logistics-nav a:not(.contact):hover::after,.logistics-nav a:not(.contact).active::after {
  transform: scaleX(1);
}
.logistics-nav .contact {
  padding: 10px 17px;
  border-radius: 999px;
  background: var(--accent);
  color: #111;
  font-weight: 800;
}
.logistics-nav .contact::after {
  display: none;
}
@media(min-width:821px) {
  :root {
    --page-gutter: clamp(22px, 5vw, 72px);
  }
}
@media(max-width:820px) {
  .logistics-header {
    height: auto;
    min-height: 68px;
    padding: 12px var(--page-gutter);
    gap: 14px;
  }
  .logistics-nav {
    gap: clamp(10px, 3vw, 18px);
    overflow-x: auto;
    scrollbar-width: none;
  }
  .logistics-nav::-webkit-scrollbar {
    display: none;
  }
  .logistics-nav a {
    font-size: clamp(10px, 2vw, 13px);
  }
  .logistics-nav .contact {
    padding: 8px 13px;
  }
}
@media(max-width:600px) {
  .logistics-brand {
    font-size: clamp(16px, 4.5vw, 18px);
  }
  .logistics-brand-mark {
    width: 32px;
    height: 32px;
    font-size: 16px;
  }
}
