:root {
  --ink: #17202a;
  --muted: #667085;
  --line: #d7dee8;
  --paper: #ffffff;
  --soft: #f5f7fa;
  --navy: #0b2545;
  --blue: #246aa5;
  --red: #b93535;
  --green: #297463;
  --shadow: 0 16px 50px rgba(12, 28, 48, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 12px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid rgba(215, 222, 232, 0.85);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
}

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

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 8px;
  color: #fff;
  background: var(--navy);
  font-weight: 700;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
}

nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 4px;
}

nav a {
  border-radius: 6px;
  color: var(--muted);
  font-size: 14px;
  padding: 8px 10px;
}

nav a:hover {
  color: var(--navy);
  background: var(--soft);
}

.hero {
  position: relative;
  min-height: min(650px, calc(100vh - 72px));
  display: grid;
  align-items: end;
  padding: clamp(28px, 5vw, 64px);
  overflow: hidden;
  background: var(--navy);
}

.hero-image {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 17, 32, 0.9), rgba(5, 17, 32, 0.6) 42%, rgba(5, 17, 32, 0.18)),
    url("assets/logistics-hero.png") center / cover no-repeat;
}

.hero-content {
  position: relative;
  width: min(720px, 100%);
  color: #fff;
}

.kicker {
  margin: 0 0 8px;
  color: var(--red);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .kicker {
  color: #ffb4a6;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  font-size: clamp(42px, 8vw, 78px);
  line-height: 0.98;
}

h2 {
  margin: 0 0 14px;
  color: var(--navy);
  font-size: clamp(26px, 4vw, 42px);
  line-height: 1.08;
}

h3 {
  margin: 0 0 14px;
  color: var(--navy);
  font-size: 22px;
}

.role {
  margin: 14px 0 0;
  color: #dce7f2;
  font-size: clamp(20px, 3vw, 30px);
  font-weight: 700;
}

.summary {
  max-width: 660px;
  margin: 18px 0 0;
  color: #eef4fa;
  font-size: clamp(17px, 2vw, 21px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 6px;
  color: #fff;
  font-weight: 700;
  padding: 10px 16px;
}

.button.primary {
  border-color: #fff;
  color: var(--navy);
  background: #fff;
}

.section {
  padding: clamp(42px, 6vw, 78px) clamp(18px, 4vw, 56px);
}

.intro,
.split,
.contact {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
  gap: clamp(24px, 4vw, 54px);
  align-items: start;
}

.intro p,
.verification p,
.contact p {
  max-width: 850px;
  color: #344054;
  font-size: 17px;
}

.profile-panel,
.industries,
.contact-list {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.profile-panel {
  display: grid;
}

.profile-panel div {
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
}

.profile-panel div:last-child {
  border-bottom: 0;
}

.profile-panel span,
.contact-list span {
  display: block;
  color: var(--muted);
  font-size: 13px;
}

.profile-panel strong,
.contact-list strong {
  color: var(--navy);
  font-size: 17px;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 26px;
}

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

.service-grid article {
  min-height: 76px;
  display: flex;
  align-items: center;
  border: 1px solid var(--line);
  border-left: 4px solid var(--blue);
  border-radius: 8px;
  background: var(--soft);
  color: var(--navy);
  font-weight: 700;
  padding: 14px;
}

.split {
  background: linear-gradient(180deg, #f7f9fb, #ffffff);
}

.experience-list {
  display: grid;
  gap: 12px;
}

.experience-list p {
  margin: 0;
  border-left: 4px solid var(--green);
  background: #fff;
  padding: 14px 16px;
}

.industries {
  padding: 22px;
}

.industries ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding-left: 18px;
  color: #344054;
}

.verification {
  background: var(--navy);
  color: #fff;
}

.verification h2 {
  color: #fff;
}

.verification p {
  color: #e3ebf3;
}

.contact-list {
  overflow: hidden;
}

.contact-list a {
  display: block;
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
}

.contact-list a:last-child {
  border-bottom: 0;
}

.contact-list a:hover {
  background: var(--soft);
}

footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 24px clamp(18px, 4vw, 56px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

footer span:first-child {
  color: var(--navy);
  font-weight: 700;
}

@media (max-width: 820px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    justify-content: flex-start;
  }

  .hero {
    min-height: 620px;
  }

  .hero-image {
    background:
      linear-gradient(180deg, rgba(5, 17, 32, 0.62), rgba(5, 17, 32, 0.92)),
      url("assets/logistics-hero.png") center / cover no-repeat;
  }

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

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

@media (max-width: 540px) {
  .site-header {
    min-height: 0;
  }

  .brand {
    min-width: 0;
  }

  nav a {
    padding: 7px 8px;
  }

  .hero {
    min-height: 560px;
    padding: 26px 18px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

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