:root {
  --ink: #0b0b0d;
  --muted: #676b7d;
  --gold: #fff2b5;
  --gold-2: #fff7c9;
  --brown: #855604;
  --line: #e0d29f;
  --paper: #fffdf4;
  --shadow: 0 8px 22px rgba(97, 66, 8, 0.12);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--gold);
  line-height: 1.5;
  padding-top: 92px;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.skip-link {
  position: fixed;
  left: 1rem;
  top: -5rem;
  z-index: 100;
  padding: 0.7rem 1rem;
  background: #111;
  color: #fff;
}

.skip-link:focus { top: 1rem; }

.topbar,
.site-header { display: none; }

.nav,
.footer,
.site-footer,
.page-hero,
.article-layout {
  width: min(1080px, calc(100% - 32px));
  margin-inline: auto;
}

.nav {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo,
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 900;
}

.logo-badge,
.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 2px solid #111;
  border-radius: 8px;
  background: #ffc94b;
  box-shadow: 3px 3px 0 #111;
  font-size: 0.75rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.95rem;
  color: #5e5e68;
  font-weight: 700;
}

.header-link,
.nav-cta,
.button {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #111;
  border-radius: 8px;
  background: #fff;
  color: #111 !important;
  padding: 0.55rem 0.85rem;
  font-weight: 900;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid #111;
  border-radius: 8px;
  background: #fff;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: #111;
}

.hero-lite {
  min-height: 684px;
  padding: 2.7rem 0 0;
  background:
    linear-gradient(rgba(255, 224, 105, 0.18), rgba(255, 245, 188, 0.52)),
    url("assets/hero-logistics.png");
  background-size: cover;
  background-position: center top;
  border-bottom: 1px solid #d9c582;
}

.hero-card {
  width: min(1120px, calc(100% - 32px));
  margin-inline: auto;
  text-align: center;
}

h1,
h2,
h3,
p { margin-top: 0; }

h1 {
  margin: 0 0 0.65rem;
  font-size: clamp(3.2rem, 5.4vw, 5.05rem);
  line-height: 1.06;
  font-weight: 900;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0.45rem;
  font-size: clamp(2rem, 3.7vw, 3.3rem);
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: 0;
}

.tagline {
  margin: 0 auto 1.45rem;
  color: var(--muted);
  font-size: clamp(1.8rem, 3vw, 2.35rem);
  line-height: 1.2;
}

.finds-search {
  width: min(1120px, 100%);
  margin-inline: auto;
}

.finds-search label { display: none; }

.finds-search > div {
  min-height: 91px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 58px 58px 58px auto;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem;
  border: 3px solid #111;
  border-radius: 9px;
  background: #fff;
  box-shadow: 0 3px 10px rgba(78, 52, 0, 0.16);
}

.finds-search input {
  width: 100%;
  min-height: 72px;
  border: 0;
  outline: 0;
  background: #fff;
  color: #111;
  padding: 0 1.15rem;
  font: inherit;
  font-size: 1.55rem;
}

#finds-query { scroll-margin-top: 112px; }

.finds-search input::placeholder { color: #9ea1a8; }

.search-chip {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  justify-self: center;
  border-radius: 50%;
  background: #d9dadd;
  color: #111;
  font-weight: 900;
}

.finds-search button {
  min-height: 72px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  border: 0;
  border-radius: 9px;
  background: #101014;
  color: #fff;
  padding: 0 1.85rem;
  font: inherit;
  font-size: 1.55rem;
  font-weight: 900;
  cursor: pointer;
}

.search-icon {
  width: 32px;
  height: 32px;
  display: inline-block;
  position: relative;
  border: 5px solid currentColor;
  border-radius: 50%;
}

.search-icon::after {
  content: "";
  position: absolute;
  right: -13px;
  bottom: -8px;
  width: 16px;
  height: 5px;
  border-radius: 999px;
  background: currentColor;
  transform: rotate(45deg);
}

.process-row {
  width: min(1120px, 100%);
  margin: 2rem auto 0;
  display: grid;
  grid-template-columns: 260px 320px 260px;
  justify-content: space-between;
  gap: 0;
  color: var(--brown);
  position: relative;
}

.process-row::before {
  display: none;
}

.process-row::after {
  display: none;
}

.connector {
  position: absolute;
  top: 104px;
  height: 3px;
  background: #c89142;
  opacity: 0.82;
}

.connector::before,
.connector::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #c89142;
  transform: translateY(-50%);
}

.connector::before {
  left: -5px;
}

.connector::after {
  right: -5px;
}

.connector-left {
  left: 230px;
  width: 185px;
}

.connector-right {
  right: 235px;
  width: 185px;
}

.process-row article {
  position: relative;
  z-index: 1;
  text-align: center;
}

.step-icon {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  margin: 0 auto 0.55rem;
  color: #865706;
}

.step-icon svg {
  width: 64px;
  height: 64px;
}

.step-icon path,
.step-icon circle {
  fill: none;
  stroke: currentColor;
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.globe-icon svg {
  width: 72px;
  height: 72px;
}

.process-row strong {
  display: block;
  font-size: 1.33rem;
  line-height: 1.12;
  font-weight: 900;
  white-space: nowrap;
}

.process-row small {
  display: block;
  color: var(--brown);
  font-size: 1rem;
}

.hub-section,
.text-block,
.table-section,
.faq-section,
.faq-preview,
.related-section,
.trust-section {
  width: min(1080px, calc(100% - 32px));
  margin: 1.2rem auto;
  padding: 1.35rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 253, 244, 0.92);
  box-shadow: var(--shadow);
}

.hub-section:first-of-type {
  width: 100%;
  margin: 0;
  padding: 3.1rem max(16px, calc((100vw - 1080px) / 2)) 2.8rem;
  border-width: 1px 0;
  border-radius: 0;
  background: #fff2b5;
  box-shadow: none;
  text-align: center;
}

.section-title { margin-bottom: 1rem; }

.section-title p,
.text-block p,
.table-section p,
.compare-row span,
.faq-section p,
.faq-preview p,
.related-section li,
.trust-section li,
.trust-section p,
.topic-cards small {
  color: var(--muted);
}

.pill-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.7rem;
}

.pill-grid a,
.phrase-row a,
.topic-cards a em {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #d4c895;
  border-radius: 9px;
  background: #fff;
  padding: 0.65rem 1rem;
  font-weight: 800;
}

.phrase-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.topic-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
}

.topic-cards a {
  min-height: 190px;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
}

.topic-cards span {
  width: fit-content;
  border-radius: 999px;
  background: #f4e8bd;
  color: var(--brown);
  padding: 0.25rem 0.55rem;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.topic-cards strong {
  font-size: 1.1rem;
  line-height: 1.2;
}

.topic-cards em {
  width: fit-content;
  margin-top: auto;
  min-height: 34px;
  font-style: normal;
  color: #111;
}

.compare-table {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
}

.compare-row {
  display: grid;
  grid-template-columns: 0.85fr 1.2fr 1.1fr;
}

.compare-row + .compare-row { border-top: 1px solid var(--line); }
.compare-row span { padding: 0.85rem; }
.compare-row span + span { border-left: 1px solid var(--line); }
.compare-head { background: #f4e8bd; }
.compare-head span,
.compare-row span:first-child { color: #111; font-weight: 900; }

.mistakes ul,
.related-section ul,
.trust-section ul {
  margin: 0;
  padding-left: 1.2rem;
}

.mistakes li + li,
.related-section li + li,
.trust-section li + li { margin-top: 0.5rem; }

.faq-section details,
.faq-preview details {
  border-top: 1px solid var(--line);
  padding: 0.85rem 0;
}

.faq-section details:first-child,
.faq-preview details:first-child {
  border-top: 0;
}

.faq-section summary,
.faq-preview summary {
  cursor: pointer;
  font-weight: 900;
}

.faq-section a,
.faq-preview a,
.related-section a,
.footer a,
.site-footer a {
  color: #111;
  font-weight: 900;
}

.footer,
.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 2rem 0 3rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.footer nav,
.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.footer p,
.site-footer p { margin: 0; }

.page-hero {
  padding: 2.25rem 0 1.25rem;
}

.page-hero h1 {
  max-width: 920px;
  font-size: clamp(3rem, 5.2vw, 5.4rem);
}

.page-hero .hero-copy {
  max-width: 860px;
  font-size: 1.08rem;
}

.article-layout { padding: 1rem 0 3rem; }

.article-card {
  margin: 1rem 0;
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 253, 244, 0.92);
  box-shadow: var(--shadow);
}

.article-card p,
.article-card li { color: var(--muted); }

.taskbar {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 80;
  width: 100%;
  min-height: 88px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 0 7vw;
  border-bottom: 1px solid #dfe6de;
  background: rgba(251, 253, 248, 0.97);
  box-shadow: 0 1px 0 rgba(15, 37, 22, 0.04);
  backdrop-filter: blur(10px);
}

.taskbar-brand {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: #142219;
  font-size: 1.12rem;
  font-weight: 900;
  white-space: nowrap;
}

.taskbar-logo {
  width: 54px;
  min-height: 64px;
  flex: 0 0 auto;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.18rem;
  color: #142219;
  font-size: 0.68rem;
  font-weight: 900;
  line-height: 1;
}

.taskbar-logo img {
  width: 42px;
  height: 42px;
  display: block;
  border-radius: 10px;
  box-shadow: 0 0 0 1px rgba(20, 34, 25, 0.18);
}

.taskbar-title {
  overflow: hidden;
  text-overflow: ellipsis;
}

.taskbar-links {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1.1rem;
  flex: 1 1 auto;
  color: #667165;
  font-size: 0.98rem;
  font-weight: 900;
}

.taskbar-links a {
  white-space: nowrap;
}

.taskbar-links .is-active {
  color: #07963c;
}

.taskbar-actions {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.taskbar-actions select {
  min-height: 54px;
  border: 1px solid #111;
  border-color: #dbe5da;
  border-radius: 12px;
  background: #fff;
  color: #142219;
  padding: 0 1.05rem;
  font: inherit;
  font-size: 1rem;
  font-weight: 900;
}

.taskbar-actions select {
  min-width: 142px;
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid #111;
  outline-offset: 3px;
}

@media (max-width: 1100px) {
  .taskbar {
    gap: 1rem;
    padding-inline: 1.5rem;
  }

  .taskbar-links {
    gap: 1rem;
  }

  .taskbar-title {
    max-width: 230px;
  }

  .taskbar-actions select {
    min-width: 118px;
  }

}

@media (max-width: 860px) {
  .nav-toggle { display: inline-block; }

  .nav-links {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 68px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: var(--paper);
    box-shadow: var(--shadow);
  }

  .nav-links.is-open { display: flex; }

  .finds-search > div {
    grid-template-columns: 1fr;
  }

  .search-chip {
    display: none;
  }

  .process-row,
  .topic-cards,
  .pill-grid {
    grid-template-columns: 1fr;
  }

  .process-row::before { display: none; }

  .process-row article { text-align: center; }

  .compare-row { grid-template-columns: 1fr; }
  .compare-row span + span {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  body { padding-top: 136px; }

  .taskbar {
    min-height: 128px;
    display: grid;
    grid-template-columns: 1fr auto;
    align-content: center;
    gap: 0.65rem 1rem;
    padding: 0.7rem 1rem;
  }

  .taskbar-brand {
    max-width: 100%;
    font-size: 1rem;
  }

  .taskbar-links {
    grid-column: 1 / -1;
    justify-content: flex-start;
    gap: 1rem;
    overflow-x: auto;
    padding-bottom: 0.15rem;
    scrollbar-width: none;
  }

  .taskbar-links::-webkit-scrollbar {
    display: none;
  }

  .taskbar-actions {
    justify-content: flex-end;
  }

  .taskbar-actions select {
    min-height: 42px;
    min-width: auto;
    padding-inline: 0.75rem;
    font-size: 0.86rem;
  }

  .footer,
  .site-footer {
    display: grid;
    align-items: start;
  }
}

@media (max-width: 560px) {
  .hero-lite {
    min-height: auto;
    padding: 2rem 0 2.4rem;
  }

  h1 { font-size: clamp(2.4rem, 12vw, 3.6rem); }
  .tagline { font-size: 1.35rem; }

  .finds-search input,
  .finds-search button {
    min-height: 58px;
    font-size: 1.1rem;
  }

  body { padding-top: 154px; }

  .taskbar {
    min-height: 144px;
    grid-template-columns: 1fr;
  }

  .taskbar-actions {
    justify-content: flex-start;
  }

  .taskbar-actions select {
    min-height: 40px;
    font-size: 0.82rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
