.logistics-hero {
  background:
    radial-gradient(circle at 88% 12%, rgba(237, 139, 250, 0.2), transparent 24%),
    radial-gradient(circle at 8% 88%, rgba(255, 237, 2, 0.22), transparent 28%),
    linear-gradient(115deg, #fff 0%, #fff8e7 52%, #fff 100%);
}

.logistics-hero h1 {
  font-size: clamp(42px, 4.75vw, 68px);
}

.logistics-demand-visual .signal-chip,
.logistics-demand-visual .flow-pill,
.logistics-demand-visual .sales-card {
  min-height: 76px;
}

.logistics-demand-visual .pink {
  color: #000;
  background: var(--bno-soft-pink);
}

.logistics-demand-visual .signal-card:nth-child(3) {
  border-left-color: var(--bno-lively-pink);
}

.logistics-logo-strip {
  padding: 32px max(20px, calc((100vw - var(--page-max)) / 2));
  color: var(--bno-paper);
  background: #000;
  border-top: 1.5px solid var(--bno-slack-black);
  border-bottom: 1.5px solid var(--bno-slack-black);
}

.logistics-logo-strip p {
  max-width: none;
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  font-weight: 780;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
}

.logistics-logo-strip .logo-cloud {
  display: grid;
  grid-template-columns: repeat(7, minmax(86px, 1fr));
  align-items: center;
  gap: 14px;
}

.logistics-logo-strip .logo-cloud img {
  width: 100%;
  height: 74px;
  padding: 14px;
  border: 1.5px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: var(--bno-paper);
  object-fit: contain;
}

.logistics-logo-strip .logo-cloud img:nth-child(1),
.logistics-logo-strip .logo-cloud img:nth-child(4),
.logistics-logo-strip .logo-cloud img:nth-child(5),
.logistics-logo-strip .logo-cloud img:nth-child(6),
.logistics-logo-strip .logo-cloud img:nth-child(7) {
  padding: 10px;
}

.logistics-pain-grid,
.logistics-system-grid,
.logistics-flow,
.logistics-services {
  display: grid;
  gap: 16px;
}

.logistics-pain-grid,
.logistics-system-grid,
.logistics-flow {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.logistics-pain-grid article,
.logistics-system-grid article,
.logistics-flow article {
  min-height: 250px;
  padding: 24px;
  border: 1.5px solid rgba(0, 0, 0, 0.16);
  border-radius: var(--radius);
  background: #fff;
}

.logistics-pain-grid article:nth-child(2),
.logistics-system-grid article:nth-child(2) {
  background: var(--bno-soft-yellow);
}

.logistics-pain-grid article:nth-child(3),
.logistics-system-grid article:nth-child(3) {
  background: var(--bno-soft-orange);
}

.logistics-pain-grid article:nth-child(4),
.logistics-system-grid article:nth-child(4) {
  color: #fff;
  background: #000;
}

.logistics-pain-grid article:nth-child(4) h3,
.logistics-system-grid article:nth-child(4) h3 {
  color: #fff;
}

.logistics-pain-grid article:nth-child(4) p,
.logistics-system-grid article:nth-child(4) p {
  color: rgba(255, 255, 255, 0.74);
}

.logistics-pain-grid span,
.logistics-system-grid span,
.logistics-services span {
  color: var(--bno-fiery-orange);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: var(--tracking-caps);
  text-transform: uppercase;
}

.logistics-pain-grid h3,
.logistics-system-grid h3,
.logistics-flow b {
  display: block;
  margin: 28px 0 12px;
  font-family: var(--font-display);
  font-size: clamp(27px, 2.55vw, 36px);
  line-height: 0.98;
  font-weight: 520;
}

.logistics-pain-grid p,
.logistics-system-grid p,
.logistics-flow span {
  margin: 0;
  color: rgba(0, 0, 0, 0.68);
  font-size: 16px;
  line-height: 1.45;
  font-weight: 650;
}

.logistics-trust-model {
  background: var(--bno-cool-gray);
}

.logistics-flow {
  counter-reset: logistics-flow;
}

.logistics-flow article {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  background: #fff;
}

.logistics-flow article::before {
  counter-increment: logistics-flow;
  content: "0" counter(logistics-flow);
  color: var(--bno-mellow-yellow);
  font-family: var(--font-display);
  font-size: 84px;
  line-height: 0.8;
  font-weight: 540;
}

.logistics-flow article:nth-child(2)::before { color: var(--bno-fiery-orange); }
.logistics-flow article:nth-child(3)::before { color: var(--bno-lively-pink); }
.logistics-flow article:nth-child(4)::before { color: #000; }

.logistics-flow b {
  margin-top: 34px;
  font-size: clamp(24px, 2vw, 32px);
  overflow-wrap: normal;
}

.logistics-method h3,
.logistics-services h3 {
  font-size: clamp(24px, 2.1vw, 30px);
}

.logistics-services article {
  background: #fff;
}

.logistics-services article:nth-child(3n) {
  background: var(--bno-cool-gray);
}

.logistics-services article:nth-child(4n) {
  background: var(--bno-soft-yellow);
}

.logistics-compare .fit-grid article:last-child {
  background: #000;
}

.logistics-compare .fit-grid article:last-child h3 {
  color: var(--bno-paper);
}

.logistics-compare .fit-grid article:last-child p {
  color: rgba(255, 255, 255, 0.74);
}

@media (max-width: 1120px) {
  .logistics-pain-grid,
  .logistics-system-grid,
  .logistics-flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .logistics-logo-strip .logo-cloud {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .logistics-hero h1 {
    font-size: clamp(38px, 10.2vw, 50px);
  }

  .logistics-pain-grid,
  .logistics-system-grid,
  .logistics-flow {
    grid-template-columns: 1fr;
  }

  .logistics-demand-visual .signal-row,
  .logistics-demand-visual .signal-flow {
    grid-template-columns: 1fr;
  }

  .logistics-demand-visual .arrow {
    transform: rotate(90deg);
    line-height: 1;
  }

  .logistics-pain-grid article,
  .logistics-system-grid article,
  .logistics-flow article {
    min-height: auto;
  }

  .logistics-logo-strip .logo-cloud {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
