:root {
  --orange: #f7a928;
  --orange-dark: #dc8312;
  --green: #719b35;
  --green-dark: #315a2b;
  --ink: #193226;
  --muted: #65746b;
  --cream: #fbf8f0;
  --paper: #ffffff;
  --line: #dfe7dd;
  --shadow: 0 18px 50px rgba(31, 58, 42, 0.12);
  --radius-lg: 28px;
  --radius-md: 18px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Open Sans", "Segoe UI", Arial, sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid rgba(247, 169, 40, 0.65);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 999;
  padding: 10px 14px;
  background: var(--ink);
  color: #fff;
  border-radius: 8px;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

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

.section {
  padding: 100px 0;
}

.section-sm {
  padding: 72px 0;
}

.section-soft {
  background: var(--cream);
}

.section-dark {
  color: #fff;
  background:
    radial-gradient(circle at 12% 0%, rgba(113, 155, 53, 0.35), transparent 35%),
    linear-gradient(135deg, #173627, #254b35);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 3px;
  content: "";
  background: var(--orange);
  border-radius: 99px;
}

.section-dark .eyebrow {
  color: #d8eabf;
}

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

h1,
h2,
h3 {
  line-height: 1.15;
  letter-spacing: -0.03em;
}

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(2.45rem, 5vw, 4.8rem);
  font-weight: 800;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 3.7vw, 3.4rem);
  font-weight: 800;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.22rem;
  font-weight: 800;
}

.lead {
  max-width: 680px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.22rem);
}

.section-dark .lead {
  color: #d7e1da;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 48px;
}

.section-heading.center {
  margin-inline: auto;
  text-align: center;
}

.section-heading.center .eyebrow {
  justify-content: center;
}

.section-heading.center .lead {
  margin-inline: auto;
}

.btn {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 11px;
  font-weight: 800;
  line-height: 1.2;
  transition: 180ms ease;
}

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

.btn-primary {
  color: #1e321d;
  background: var(--orange);
  box-shadow: 0 12px 28px rgba(223, 135, 17, 0.25);
}

.btn-primary:hover {
  background: #ffb63f;
}

.btn-outline {
  color: var(--ink);
  border-color: rgba(25, 50, 38, 0.3);
  background: rgba(255, 255, 255, 0.82);
}

.btn-outline:hover {
  border-color: var(--green);
}

.btn-light {
  color: var(--ink);
  background: #fff;
}

.btn-arrow::after {
  content: "→";
  font-size: 1.1em;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.topbar {
  color: #e8efe9;
  background: #193526;
  font-size: 0.82rem;
}

.topbar-inner {
  display: flex;
  min-height: 38px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.topbar-links {
  display: flex;
  gap: 22px;
}

.topbar a:hover {
  color: #fff;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(25, 50, 38, 0.08);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
}

.nav-wrap {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  flex: 0 1 330px;
}

.brand img {
  width: 100%;
  max-width: 300px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links > a:not(.btn) {
  padding: 12px 14px;
  border-radius: 8px;
  color: #405048;
  font-size: 0.94rem;
  font-weight: 700;
}

.nav-links > a:not(.btn):hover,
.nav-links > a.active {
  color: var(--green-dark);
  background: #f1f6ed;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--ink);
  background: #fff;
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  transition: 180ms ease;
}

.nav-toggle span {
  position: relative;
}

.nav-toggle span::before,
.nav-toggle span::after {
  position: absolute;
  left: 0;
  content: "";
}

.nav-toggle span::before {
  top: -7px;
}

.nav-toggle span::after {
  top: 7px;
}

.nav-toggle[aria-expanded="true"] span {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] span::before {
  top: 0;
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span::after {
  top: 0;
  transform: rotate(-45deg);
}

.hero {
  position: relative;
  display: grid;
  min-height: 690px;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background: #1e3b2b;
}

.hero-media,
.hero-media::after {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media::after {
  content: "";
  background:
    linear-gradient(90deg, rgba(17, 45, 31, 0.95) 0%, rgba(17, 45, 31, 0.78) 42%, rgba(17, 45, 31, 0.18) 74%, rgba(17, 45, 31, 0.06) 100%),
    linear-gradient(0deg, rgba(12, 31, 21, 0.35), transparent 50%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 690px;
  padding: 100px 0 110px;
}

.hero .eyebrow {
  color: #dfedca;
}

.hero h1 {
  text-wrap: balance;
}

.hero h1 span {
  color: #ffc460;
}

.hero .lead {
  max-width: 630px;
  margin-bottom: 34px;
  color: #e4ece6;
}

.hero .btn-outline {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.08);
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #f6f8f6;
  font-size: 0.9rem;
  font-weight: 700;
}

.check {
  display: inline-grid;
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  place-items: center;
  border-radius: 50%;
  color: #1d3a27;
  background: var(--orange);
  font-size: 0.74rem;
  font-weight: 900;
}

.page-hero {
  position: relative;
  padding: 105px 0 90px;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 85% 25%, rgba(247, 169, 40, 0.28), transparent 28%),
    linear-gradient(135deg, #173627, #315a2b);
}

.page-hero::after {
  position: absolute;
  top: -120px;
  right: -60px;
  width: 360px;
  height: 360px;
  content: "";
  border: 70px solid rgba(255, 255, 255, 0.04);
  border-radius: 50%;
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  max-width: 850px;
  margin-bottom: 18px;
}

.page-hero .lead {
  max-width: 720px;
  color: #dce6de;
}

.breadcrumb {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
  color: #dce6de;
  font-size: 0.86rem;
  font-weight: 700;
}

.breadcrumb span {
  color: #ffc460;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(48px, 7vw, 90px);
}

.split-media {
  position: relative;
}

.split-media img {
  width: 100%;
  min-height: 480px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.split-media.short img {
  min-height: 400px;
}

.media-badge {
  position: absolute;
  right: -24px;
  bottom: 28px;
  max-width: 210px;
  padding: 22px;
  border-radius: 16px;
  color: #fff;
  background: var(--green-dark);
  box-shadow: var(--shadow);
}

.media-badge strong {
  display: block;
  margin-bottom: 4px;
  color: #ffc460;
  font-size: 1.6rem;
}

.feature-list {
  display: grid;
  margin: 30px 0 32px;
  padding: 0;
  gap: 14px;
  list-style: none;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #415248;
  font-weight: 700;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--line);
  box-shadow: 0 12px 36px rgba(31, 58, 42, 0.07);
}

.stat {
  padding: 28px 22px;
  text-align: center;
  background: #fff;
}

.stat strong {
  display: block;
  color: var(--green-dark);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  line-height: 1.1;
}

.stat span {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  transition: 200ms ease;
}

.card:hover {
  border-color: rgba(113, 155, 53, 0.5);
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}

.card-number {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
  place-items: center;
  border-radius: 12px;
  color: var(--green-dark);
  background: #edf4e7;
  font-weight: 900;
}

.card:nth-child(3n + 2) .card-number {
  color: #8a5707;
  background: #fff2d8;
}

.card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.card-link {
  display: inline-flex;
  margin-top: 20px;
  color: var(--green-dark);
  font-size: 0.9rem;
  font-weight: 800;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.service-row {
  display: flex;
  min-height: 156px;
  gap: 22px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
}

.service-row .card-number {
  margin: 0;
  flex: 0 0 48px;
}

.service-row p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  counter-reset: steps;
}

.process-step {
  position: relative;
  padding: 28px 24px;
  border-top: 3px solid var(--orange);
  border-radius: 0 0 14px 14px;
  background: rgba(255, 255, 255, 0.08);
}

.process-step::before {
  display: block;
  margin-bottom: 18px;
  color: #ffc460;
  content: "0" counter(steps);
  counter-increment: steps;
  font-size: 1.55rem;
  font-weight: 900;
}

.process-step p {
  margin: 0;
  color: #d5e0d8;
  font-size: 0.91rem;
}

.industry-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--green-dark);
  box-shadow: var(--shadow);
}

.industry-band img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
}

.industry-band-content {
  display: grid;
  align-content: center;
  padding: clamp(38px, 6vw, 70px);
  color: #fff;
}

.industry-band-content p {
  color: #d8e3dc;
}

.industry-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 18px;
}

.industry-tags span {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 99px;
  color: #f2f6f3;
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.8rem;
  font-weight: 700;
}

.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.quote {
  position: relative;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
}

.quote::before {
  display: block;
  margin-bottom: 18px;
  color: var(--orange);
  content: "“";
  font-family: Georgia, serif;
  font-size: 4.4rem;
  line-height: 0.5;
}

.quote p {
  color: #45564d;
}

.quote strong {
  display: block;
  font-size: 0.94rem;
}

.quote span {
  color: var(--muted);
  font-size: 0.8rem;
}

.faq-list {
  max-width: 880px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-question {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 23px 0;
  border: 0;
  color: var(--ink);
  background: transparent;
  text-align: left;
  font-weight: 800;
  cursor: pointer;
}

.faq-question::after {
  display: grid;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  place-items: center;
  border-radius: 50%;
  color: var(--green-dark);
  content: "+";
  background: #edf4e7;
  font-size: 1.2rem;
}

.faq-question[aria-expanded="true"]::after {
  content: "−";
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 220ms ease;
}

.faq-answer > div {
  overflow: hidden;
}

.faq-answer p {
  max-width: 800px;
  margin-bottom: 24px;
  color: var(--muted);
}

.faq-question[aria-expanded="true"] + .faq-answer {
  grid-template-rows: 1fr;
}

.cta-panel {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: clamp(38px, 6vw, 64px);
  overflow: hidden;
  border-radius: var(--radius-lg);
  color: #fff;
  background: linear-gradient(130deg, var(--green-dark), #183929);
}

.cta-panel::after {
  position: absolute;
  right: -70px;
  bottom: -95px;
  width: 260px;
  height: 260px;
  content: "";
  border: 50px solid rgba(247, 169, 40, 0.16);
  border-radius: 50%;
}

.cta-panel > * {
  position: relative;
  z-index: 1;
}

.cta-panel h2 {
  max-width: 700px;
  margin-bottom: 12px;
}

.cta-panel p {
  max-width: 680px;
  margin-bottom: 0;
  color: #d9e4dc;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 48px;
}

.contact-stack {
  display: grid;
  gap: 14px;
  margin-top: 30px;
}

.contact-card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
}

.contact-card span {
  display: block;
  margin-bottom: 4px;
  color: var(--green);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-card strong,
.contact-card a {
  display: block;
  font-size: 0.97rem;
}

.contact-card a:hover {
  color: var(--green-dark);
}

.contact-form {
  padding: clamp(28px, 5vw, 48px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-field {
  display: grid;
  gap: 7px;
}

.form-field.full {
  grid-column: 1 / -1;
}

.form-field label {
  color: #35473e;
  font-size: 0.84rem;
  font-weight: 800;
}

.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  border: 1px solid #ced8d1;
  border-radius: 10px;
  color: var(--ink);
  background: #fbfcfb;
  outline: 0;
}

.form-field input,
.form-field select {
  height: 50px;
  padding: 0 14px;
}

.form-field textarea {
  min-height: 132px;
  padding: 13px 14px;
  resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(113, 155, 53, 0.12);
}

.form-status {
  display: none;
  margin: 16px 0 0;
  padding: 12px 14px;
  border-radius: 8px;
  color: var(--green-dark);
  background: #edf4e7;
  font-size: 0.9rem;
  font-weight: 700;
}

.map-card {
  display: grid;
  min-height: 420px;
  place-items: center;
  padding: 40px;
  border-radius: var(--radius-lg);
  color: #fff;
  background:
    linear-gradient(rgba(24, 57, 41, 0.88), rgba(24, 57, 41, 0.88)),
    url("../images/generated-logistics-image.png") center/cover;
  text-align: center;
}

.map-card-inner {
  max-width: 600px;
}

.map-card h2 {
  margin-bottom: 12px;
}

.map-card p {
  margin-bottom: 26px;
  color: #dbe6de;
}

.site-footer {
  color: #d6e0d9;
  background: #122b1e;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 0.9fr 1fr;
  gap: 50px;
  padding: 70px 0 52px;
}

.footer-brand {
  width: min(280px, 100%);
  margin-bottom: 22px;
  padding: 12px;
  border-radius: 10px;
  background: #fff;
}

.footer-copy {
  max-width: 400px;
  color: #aebdb3;
  font-size: 0.9rem;
}

.footer-heading {
  margin: 5px 0 20px;
  color: #fff;
  font-size: 0.83rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  padding: 0;
  gap: 10px;
  list-style: none;
}

.footer-links a {
  color: #b9c7be;
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: #fff;
}

.footer-contact {
  display: grid;
  gap: 14px;
  font-size: 0.88rem;
}

.footer-contact a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  min-height: 68px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  color: #9eafa4;
  font-size: 0.8rem;
}

.footer-bottom p {
  margin: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 500ms ease, transform 500ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  .topbar {
    display: none;
  }

  .nav-wrap {
    min-height: 74px;
  }

  .brand {
    flex-basis: 250px;
  }

  .brand img {
    max-width: 240px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: fixed;
    top: 74px;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    align-content: start;
    padding: 24px 20px;
    background: #fff;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: 180ms ease;
  }

  .nav-links.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-links > a:not(.btn) {
    padding: 15px 14px;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    font-size: 1rem;
  }

  .nav-links .btn {
    margin-top: 14px;
  }

  .split,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .split-media {
    order: -1;
  }

  .media-badge {
    right: 18px;
  }

  .cards,
  .testimonials {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats,
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .industry-band img {
    min-height: 350px;
  }

  .footer-main {
    grid-template-columns: 1.4fr 1fr 1fr;
  }

  .footer-main > div:first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .section {
    padding: 76px 0;
  }

  .section-sm {
    padding: 58px 0;
  }

  h1 {
    font-size: clamp(2.25rem, 11vw, 3.2rem);
  }

  h2 {
    font-size: clamp(1.85rem, 8vw, 2.55rem);
  }

  .hero {
    min-height: 700px;
  }

  .hero-content {
    padding: 84px 0 90px;
  }

  .hero-media::after {
    background: linear-gradient(90deg, rgba(17, 45, 31, 0.94), rgba(17, 45, 31, 0.7));
  }

  .hero-trust {
    display: grid;
    gap: 14px;
  }

  .page-hero {
    padding: 80px 0 68px;
  }

  .split-media img {
    min-height: 330px;
  }

  .media-badge {
    position: relative;
    right: auto;
    bottom: auto;
    max-width: none;
    margin: -26px 16px 0;
  }

  .cards,
  .testimonials,
  .service-grid,
  .stats,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .stat {
    padding: 24px;
  }

  .service-row {
    min-height: 0;
  }

  .industry-band img {
    min-height: 270px;
  }

  .cta-panel {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .form-field.full {
    grid-column: auto;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .footer-main > div:first-child {
    grid-column: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding: 18px 0;
  }
}
/* @vn-deploy:1784886944356 */
