:root {
  --navy: #08233f;
  --navy-2: #0d3157;
  --green: #119567;
  --green-2: #18b87d;
  --ink: #112235;
  --muted: #5d6b7a;
  --line: #dbe4ea;
  --surface: #ffffff;
  --soft: #f4f8f7;
  --soft-blue: #eef5f8;
  --shadow: 0 22px 55px rgba(8, 35, 63, 0.12);
  --radius: 8px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--surface);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

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

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

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 18px max(20px, calc((100vw - var(--container)) / 2));
  color: #fff;
  transition:
    background 220ms ease,
    box-shadow 220ms ease,
    padding 220ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(8, 35, 63, 0.96);
  box-shadow: 0 10px 30px rgba(5, 21, 38, 0.2);
  backdrop-filter: blur(14px);
}

.site-header.is-scrolled {
  padding-top: 12px;
  padding-bottom: 12px;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 156px;
  height: 56px;
  overflow: hidden;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 24px rgba(5, 21, 38, 0.18);
}

.brand-logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 0.95rem;
  font-weight: 700;
}

.main-nav a {
  opacity: 0.9;
  transition:
    color 180ms ease,
    opacity 180ms ease;
}

.main-nav a:hover {
  color: #ccf7e5;
  opacity: 1;
}

.main-nav .nav-cta {
  padding: 10px 16px;
  border-radius: var(--radius);
  background: var(--green);
  color: #fff;
  opacity: 1;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 19px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: #fff;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #fff;
}

.hero-media,
.hero-media img,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media img {
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(5, 22, 40, 0.88), rgba(5, 22, 40, 0.56) 45%, rgba(5, 22, 40, 0.2)),
    linear-gradient(0deg, rgba(8, 35, 63, 0.42), rgba(8, 35, 63, 0.2));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 40px), 760px);
  margin-left: max(20px, calc((100vw - var(--container)) / 2));
  padding-top: 92px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green-2);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.final-cta h2 {
  margin: 0;
  line-height: 1.04;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 780px;
  font-size: clamp(3rem, 7vw, 5.8rem);
}

.hero-copy {
  max-width: 660px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.08rem, 2vw, 1.3rem);
}

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

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 14px 21px;
  font-size: 0.96rem;
  font-weight: 800;
  line-height: 1.2;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.button svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
  flex: 0 0 auto;
}

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

.button-primary {
  background: var(--green);
  color: #fff;
  box-shadow: 0 16px 34px rgba(17, 149, 103, 0.26);
}

.button-primary:hover {
  background: #0f855d;
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  backdrop-filter: blur(8px);
}

.button-secondary:hover {
  border-color: rgba(255, 255, 255, 0.76);
  background: rgba(255, 255, 255, 0.18);
}

.button-large {
  min-height: 58px;
  padding-inline: 28px;
  font-size: 1.03rem;
}

.section,
.section-band {
  padding: 96px 0;
}

.section-heading {
  max-width: 720px;
}

.section-heading h2 {
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3.35rem);
}

.section-heading p:not(.eyebrow) {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.stats {
  background: linear-gradient(180deg, #fff, var(--soft));
}

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

.stat-card {
  min-height: 178px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 16px 35px rgba(8, 35, 63, 0.06);
}

.icon-circle {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 50%;
  background: rgba(17, 149, 103, 0.1);
  color: var(--green);
}

.icon-circle svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.stat-card strong {
  display: block;
  color: var(--navy);
  font-size: 1.65rem;
  line-height: 1.1;
}

.stat-card span:last-child {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-weight: 700;
}

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

.service-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 18px 46px rgba(8, 35, 63, 0.08);
  transition:
    transform 200ms ease,
    box-shadow 200ms ease;
}

.service-card:hover,
.fleet-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.service-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.service-card div {
  padding: 24px;
}

.service-card h3,
.why-card h3,
.process-step h3 {
  margin: 0;
  color: var(--navy);
  line-height: 1.2;
}

.service-card p,
.why-card p {
  margin: 12px 0 0;
  color: var(--muted);
}

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

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
  margin-top: 44px;
}

.fleet-card {
  position: relative;
  grid-column: span 4;
  overflow: hidden;
  min-height: 270px;
  margin: 0;
  border-radius: var(--radius);
  background: var(--navy);
  box-shadow: 0 18px 40px rgba(8, 35, 63, 0.12);
  transition:
    transform 200ms ease,
    box-shadow 200ms ease;
}

.fleet-card:nth-child(1),
.fleet-card:nth-child(2) {
  grid-column: span 6;
}

.fleet-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  opacity: 0.9;
  transition: transform 320ms ease;
}

.fleet-card:hover img {
  transform: scale(1.04);
}

.fleet-card figcaption {
  position: absolute;
  inset: auto 16px 16px;
  padding: 10px 12px;
  border-radius: var(--radius);
  background: rgba(8, 35, 63, 0.84);
  color: #fff;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.split-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 52px;
  align-items: start;
}

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

.why-card {
  min-height: 210px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.why-card span {
  display: inline-block;
  margin-bottom: 30px;
  color: var(--green);
  font-weight: 900;
}

.coverage-section {
  background: linear-gradient(180deg, #fff, var(--soft));
}

.coverage-layout {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 56px;
  align-items: center;
}

.map-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 20% 25%, rgba(17, 149, 103, 0.12), transparent 34%),
    linear-gradient(135deg, #ffffff, #edf6f3);
  box-shadow: var(--shadow);
}

.map-card svg {
  width: 100%;
  height: auto;
}

.mexico-shape,
.mexico-peninsula {
  fill: url("#mapGradient");
}

.route {
  fill: none;
  stroke: rgba(17, 149, 103, 0.55);
  stroke-dasharray: 10 10;
  stroke-linecap: round;
  stroke-width: 4;
}

.route-one {
  animation: dashMove 12s linear infinite;
}

.route-two {
  animation: dashMove 14s linear infinite reverse;
}

.map-point {
  fill: #fff;
  stroke: var(--green);
  stroke-width: 5;
}

.process-section {
  overflow: hidden;
}

.process-line {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  margin-top: 48px;
  padding-left: 0;
  list-style: none;
}

.process-line::before {
  content: "";
  position: absolute;
  top: 31px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(90deg, var(--green), var(--navy));
}

.process-step {
  position: relative;
  padding: 0 8px;
  text-align: center;
}

.process-step span {
  position: relative;
  z-index: 1;
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  margin: 0 auto 18px;
  border: 8px solid #fff;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-weight: 900;
  box-shadow: 0 12px 26px rgba(8, 35, 63, 0.18);
}

.process-step h3 {
  font-size: 1rem;
}

.final-cta {
  padding: 86px 0;
  background:
    linear-gradient(135deg, rgba(17, 149, 103, 0.2), transparent 38%),
    var(--navy);
  color: #fff;
}

.final-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.final-cta h2 {
  max-width: 760px;
  font-size: clamp(2rem, 4vw, 3.35rem);
}

.site-footer {
  padding: 42px 0;
  background: #061a2e;
  color: rgba(255, 255, 255, 0.76);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 1.25fr 0.6fr;
  gap: 30px;
  align-items: start;
}

.footer-brand {
  width: 168px;
  height: 64px;
  color: #fff;
  background: rgba(255, 255, 255, 0.96);
}

.site-footer p,
.site-footer address {
  margin: 14px 0 0;
  font-style: normal;
}

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

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

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

@keyframes dashMove {
  to {
    stroke-dashoffset: -120;
  }
}

@media (max-width: 980px) {
  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    right: 20px;
    left: 20px;
    display: grid;
    gap: 4px;
    max-height: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius);
    background: rgba(8, 35, 63, 0.98);
    opacity: 0;
    transition:
      max-height 220ms ease,
      opacity 220ms ease,
      padding 220ms ease;
  }

  .main-nav.is-open {
    max-height: 360px;
    padding: 12px;
    opacity: 1;
  }

  .main-nav a {
    padding: 12px;
  }

  .main-nav .nav-cta {
    text-align: center;
  }

  .stats-grid,
  .service-grid,
  .split-layout,
  .coverage-layout,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .split-layout,
  .coverage-layout {
    gap: 38px;
  }

  .process-line {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .process-line::before {
    top: 0;
    bottom: 0;
    left: 31px;
    right: auto;
    width: 2px;
    height: auto;
  }

  .process-step {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 18px;
    align-items: center;
    text-align: left;
  }

  .process-step span {
    margin: 0;
  }

  .final-cta-inner {
    display: grid;
  }
}

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

  .site-header {
    padding-inline: 16px;
  }

  .brand {
    width: 138px;
    height: 50px;
  }

  .hero {
    min-height: 92svh;
  }

  .hero-content {
    width: min(calc(100% - 32px), 720px);
    margin-inline: auto;
    padding-top: 84px;
  }

  .hero-overlay {
    background: linear-gradient(0deg, rgba(5, 22, 40, 0.88), rgba(5, 22, 40, 0.44));
  }

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

  .section,
  .section-band {
    padding: 70px 0;
  }

  .stats-grid,
  .service-grid,
  .split-layout,
  .why-grid,
  .coverage-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .fleet-card,
  .fleet-card:nth-child(1),
  .fleet-card:nth-child(2) {
    grid-column: auto;
    min-height: 238px;
  }

  .stat-card,
  .why-card {
    min-height: auto;
  }

  .map-card {
    order: 2;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

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