:root {
  --red: #d50000;
  --red-dark: #a80000;
  --ink: #10172b;
  --muted: #657084;
  --soft: #f4f6f9;
  --line: #e5e9f0;
  --white: #ffffff;
  --black: #050505;
  --shadow: 0 24px 70px rgba(16, 23, 43, 0.14);
  --radius: 28px;
  --container: min(1160px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 86px;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

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

button,
input,
textarea {
  font: inherit;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.section {
  padding: 96px 0;
  position: relative;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  background: white;
  border-bottom: 1px solid rgba(229, 233, 240, 0.85);
  backdrop-filter: blur(18px);
}

.nav-wrapper {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  position: relative;
  background: conic-gradient(from 215deg, var(--red), var(--red) 45%, transparent 46%, transparent 72%, var(--ink) 73%, var(--ink) 85%, transparent 86%);
  box-shadow: inset 0 0 0 7px #fff, 0 8px 24px rgba(213, 0, 0, 0.22);
}

.brand-mark::after {
  content: "";
  position: absolute;
  left: 6px;
  right: 6px;
  top: 21px;
  height: 7px;
  border-radius: 999px;
  background: var(--ink);
  transform: rotate(-12deg);
}

.brand strong {
  display: block;
  font-size: 1.02rem;
  line-height: 1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.brand small {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.76rem;
}

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

.main-nav a {
  border-radius: 999px;
  color: #263044;
  font-size: 0.94rem;
  font-weight: 700;
  padding: 10px 14px;
  transition: background 0.2s ease, color 0.2s ease;
}

.main-nav a:hover,
.main-nav a.active {
  background: var(--red);
  color: var(--white);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 14px;
  background: var(--ink);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  width: 21px;
  height: 2px;
  background: var(--white);
  border-radius: 999px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  padding-top: 138px;
  background:
    radial-gradient(circle at 12% 20%, rgba(213, 0, 0, 0.08), transparent 28%),
    linear-gradient(90deg, #fff 0%, #fff 58%, #f1f4f8 58%, #f1f4f8 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: center;
  gap: 58px;
}

.hero-content {
  max-width: 610px;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--red);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.eyebrow {
  background: var(--red);
  color: var(--white);
  padding: 11px 18px;
  border-radius: 0;
}

.section-kicker::before {
  content: "";
  width: 34px;
  height: 3px;
  background: currentColor;
  border-radius: 999px;
}

.section-kicker.light {
  color: #ff4343;
}

h1,
h2 {
  color: var(--ink);
  line-height: 1.04;
  letter-spacing: -0.055em;
}

h1 {
  font-size: clamp(2.85rem, 7vw, 6.4rem);
  max-width: 720px;
}

h2 {
  font-size: clamp(2.1rem, 4vw, 4rem);
  margin-bottom: 22px;
}

p {
  color: var(--muted);
  font-size: 1.06rem;
}

.hero-content p {
  max-width: 560px;
  margin-top: 26px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border: 1px solid transparent;
  border-radius: 0;
  padding: 14px 22px;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn-primary {
  color: var(--white);
  background: var(--red);
  box-shadow: 0 18px 42px rgba(213, 0, 0, 0.24);
}

.btn-primary:hover {
  background: var(--red-dark);
}

.btn-outline {
  color: var(--ink);
  background: transparent;
  border-color: var(--line);
}

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

.hero-media {
  min-height: 640px;
  position: relative;
  border-radius: var(--radius) 0 var(--radius) var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16, 23, 43, 0.05), rgba(16, 23, 43, 0.28));
  pointer-events: none;
}

.hero-media img,
.image-panel img,
.map-card img,
.fleet-image img,
.contact-photo img {
  height: 100%;
  object-fit: cover;
}

.floating-card {
  position: absolute;
  left: 28px;
  bottom: 28px;
  z-index: 1;
  width: min(285px, calc(100% - 56px));
  background: rgba(255, 255, 255, 0.92);
  border-left: 7px solid var(--red);
  padding: 18px 20px;
  box-shadow: 0 20px 50px rgba(5, 5, 5, 0.25);
}

.floating-card strong,
.floating-card span {
  display: block;
}

.floating-card strong {
  font-size: 1.1rem;
  color: var(--ink);
}

.floating-card span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.94rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 42px;
}

.stats-grid article {
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 4px solid var(--red);
  padding: 24px;
  box-shadow: 0 14px 44px rgba(16, 23, 43, 0.06);
}

.stats-grid strong {
  display: block;
  color: var(--red);
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1;
}

.stats-grid span {
  display: block;
  color: var(--muted);
  margin-top: 8px;
  font-weight: 700;
}

.split-grid,
.coverage-grid,
.fleet-grid,
.contact-grid {
  display: grid;
  align-items: center;
  gap: 58px;
}

.split-grid {
  grid-template-columns: 0.82fr 1.18fr;
}

.image-panel {
  height: 660px;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.section-content p + p {
  margin-top: 18px;
}

.pillars {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.pillars span {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  background: var(--soft);
  border-left: 5px solid var(--red);
  font-weight: 800;
  text-align: center;
}

.coverage {
  background: var(--soft);
}

.coverage-grid {
  grid-template-columns: 1fr 0.92fr;
}

.check-list,
.cargo-list ul {
  list-style: none;
}

.check-list {
  margin: 30px 0 34px;
  display: grid;
  gap: 13px;
}

.check-list li,
.cargo-list li {
  position: relative;
  padding-left: 30px;
  color: #344052;
  font-weight: 700;
}

.check-list li::before,
.cargo-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 10px;
  height: 10px;
  background: var(--red);
}

.wide {
  width: min(100%, 430px);
}

.map-card {
  padding: 34px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.map-card img {
  border-radius: 20px;
  object-fit: contain;
  aspect-ratio: 1 / 0.92;
}

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

.cargo-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px 70px;
  margin-bottom: 54px;
}

.cargo-list ul {
  display: grid;
  gap: 18px;
}

.cargo-banner {
  width: min(1280px, calc(100% - 40px));
  min-height: 330px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.cargo-banner img {
  height: 100%;
  min-height: 330px;
  object-fit: cover;
}

.cargo-note {
  position: absolute;
  left: 0;
  bottom: 0;
  max-width: 460px;
  color: var(--white);
  background: rgba(0, 0, 0, 0.88);
  padding: 26px 32px;
  border-top: 4px solid var(--red);
}

.cargo-note strong,
.cargo-note span {
  display: block;
}

.cargo-note strong {
  color: #ff3838;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.cargo-note span {
  color: rgba(255, 255, 255, 0.88);
}

.fleet,
.contact {
  color: var(--white);
  background: var(--black);
  overflow: hidden;
}

.fleet::before,
.contact::before {
  content: "";
  position: absolute;
  width: 440px;
  height: 440px;
  background: radial-gradient(circle, rgba(213, 0, 0, 0.22), transparent 68%);
  border-radius: 50%;
  pointer-events: none;
}

.fleet::before {
  left: -180px;
  top: 10%;
}

.contact::before {
  right: -190px;
  top: 5%;
}

.fleet-grid {
  grid-template-columns: 0.88fr 1.12fr;
}

.fleet h2,
.contact h2 {
  color: var(--white);
}

.fleet p,
.contact p {
  color: rgba(255, 255, 255, 0.72);
}

.tech-list {
  display: grid;
  gap: 14px;
  margin-top: 32px;
}

.tech-list article {
  display: flex;
  align-items: center;
  gap: 17px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 15px 17px;
}

.tech-list span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  flex: 0 0 42px;
  color: var(--red);
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.78rem;
  font-weight: 900;
}

.tech-list strong {
  color: var(--white);
}

.fleet-image {
  height: 720px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
}

.contact-grid {
  grid-template-columns: 0.9fr 1.1fr;
  align-items: stretch;
}

.contact-info,
.form-card {
  position: relative;
  z-index: 1;
}

.contact-items {
  display: grid;
  gap: 18px;
  margin-top: 34px;
}

.contact-items article {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 16px;
  align-items: center;
}

.contact-items article > span {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  background: var(--red);
  color: var(--white);
  font-size: 1.3rem;
}

.contact-items strong {
  display: block;
  color: #8c98aa;
  font-size: 0.78rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.contact-items a,
.contact-items p {
  display: inline-block;
  color: var(--white);
  margin-top: 3px;
  font-size: 1.05rem;
}

.contact-items a:hover {
  color: #ff5858;
}

.form-card {
  background: var(--white);
  color: var(--ink);
  padding: clamp(26px, 4vw, 44px);
  border-radius: var(--radius);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
}

.contact-form {
  display: grid;
  gap: 18px;
}

.form-row.two-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: #273147;
  font-size: 0.92rem;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #dfe5ee;
  border-radius: 16px;
  background: #f8fafc;
  color: var(--ink);
  padding: 15px 16px;
  outline: none;
  transition: border 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.contact-form textarea {
  resize: vertical;
  min-height: 150px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--red);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(213, 0, 0, 0.12);
}

.form-button {
  width: 100%;
  border: 0;
  margin-top: 4px;
}

.site-footer {
  color: rgba(255, 255, 255, 0.68);
  background: #050505;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 26px 0;
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.footer-grid p,
.footer-grid a {
  color: inherit;
  font-size: 0.94rem;
}

.footer-grid a:hover {
  color: var(--white);
}

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

.js-enabled .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.js-enabled .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1024px) {
  .hero-grid,
  .split-grid,
  .coverage-grid,
  .fleet-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    background: var(--white);
  }

  .hero-media,
  .image-panel,
  .fleet-image {
    height: 540px;
    min-height: unset;
  }

  .coverage-grid .map-card {
    max-width: 620px;
    justify-self: center;
  }

  .fleet-image {
    order: -1;
  }
}

@media (max-width: 820px) {
  :root {
    --container: min(100% - 28px, 1160px);
  }

  .section {
    padding: 72px 0;
  }

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

  .main-nav {
    position: absolute;
    left: 14px;
    right: 14px;
    top: calc(100% + 10px);
    display: grid;
    gap: 4px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

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

  .main-nav a {
    border-radius: 14px;
    padding: 13px 14px;
  }

  .hero {
    padding-top: 112px;
  }

  .hero-grid,
  .split-grid,
  .coverage-grid,
  .fleet-grid,
  .contact-grid {
    gap: 36px;
  }

  .stats-grid,
  .pillars,
  .cargo-list,
  .form-row.two-columns {
    grid-template-columns: 1fr;
  }

  .hero-media,
  .image-panel,
  .fleet-image {
    height: 440px;
  }

  .cargo-note {
    position: relative;
    max-width: none;
  }

  .cargo-banner img {
    min-height: 240px;
  }

  .footer-grid {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 560px) {
  .brand small {
    display: none;
  }

  .hero-actions,
  .btn {
    width: 100%;
  }

  .btn {
    padding-inline: 16px;
  }

  .hero-media,
  .image-panel,
  .fleet-image {
    height: 360px;
    border-radius: 22px;
  }

  .floating-card {
    left: 16px;
    right: 16px;
    bottom: 16px;
    width: auto;
  }

  .map-card {
    padding: 18px;
  }

  .contact-items article {
    grid-template-columns: 48px 1fr;
    gap: 12px;
  }

  .contact-items article > span {
    width: 48px;
    height: 48px;
  }

  .contact-items a,
  .contact-items p {
    overflow-wrap: anywhere;
  }
}
