:root {
  --navy: #001736;
  --blue: #0c3d7a;
  --cyan: #5cd2da;
  --gold: #fdc34d;
  --ink: #14202b;
  --muted: #596774;
  --paper: #f7fafc;
  --line: #dfe8ee;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1180px, calc(100% - 32px));
  margin: 14px auto 0;
  padding: 12px 14px;
  border: 1px solid rgba(0, 23, 54, 0.1);
  border-radius: 10px;
  background: rgba(247, 250, 252, 0.94);
  box-shadow: 0 18px 45px rgba(0, 23, 54, 0.1);
  backdrop-filter: blur(16px);
}

.brand img {
  display: block;
  width: clamp(210px, 22vw, 320px);
  height: auto;
}

nav {
  display: flex;
  gap: 8px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 800;
}

nav a,
.nav-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 8px;
}

nav a {
  padding: 0 12px;
}

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

.nav-cta,
.btn.primary {
  padding: 0 18px;
  background: var(--navy);
  color: var(--white);
  font-weight: 900;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.58fr);
  gap: 72px;
  align-items: center;
  width: min(1180px, calc(100% - 32px));
  min-height: calc(100vh - 86px);
  margin: 0 auto;
  padding: 78px 0 88px;
}

.hero-bg {
  position: absolute;
  inset: 32px calc(50% - 50vw) 0;
  background:
    linear-gradient(115deg, rgba(0, 23, 54, 0.96), rgba(0, 43, 92, 0.74)),
    url("https://images.unsplash.com/photo-1578575437130-527eed3abbec?w=1920&q=80") center/cover;
  z-index: -2;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 23, 54, 0.92), rgba(0, 23, 54, 0.3), rgba(0, 23, 54, 0.82));
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 740px;
  color: var(--white);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 720px;
  margin-bottom: 22px;
  font-size: clamp(3rem, 5.6vw, 5.55rem);
  line-height: 0.96;
  font-weight: 950;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.1rem, 4vw, 4.3rem);
  line-height: 0.99;
  font-weight: 950;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.25rem;
}

.lead {
  max-width: 700px;
  color: #d7e8f5;
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
  line-height: 1.68;
}

.actions,
.service-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.actions {
  margin: 30px 0 22px;
}

.btn {
  padding: 0 22px;
  font-weight: 900;
}

.btn.secondary {
  border: 1px solid rgba(255, 255, 255, 0.46);
  color: var(--white);
}

.service-strip span {
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #eaf7ff;
  font-size: 0.9rem;
  font-weight: 850;
}

.route-card {
  position: relative;
  z-index: 2;
  min-height: 440px;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.28);
  overflow: hidden;
}

.route-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(12, 61, 122, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(12, 61, 122, 0.09) 1px, transparent 1px);
  background-size: 34px 34px;
}

.route-card > * {
  position: relative;
}

.route-card img {
  width: 90px;
  height: auto;
}

.route-map {
  display: grid;
  grid-template-columns: 78px 1fr 78px;
  align-items: center;
  gap: 12px;
  margin: 72px 0 44px;
}

.route-map span,
.route-map strong {
  display: grid;
  place-items: center;
  height: 78px;
  border-radius: 50%;
  color: var(--white);
  font-weight: 950;
}

.route-map span {
  background: var(--blue);
}

.route-map strong {
  background: linear-gradient(135deg, #002d62 0 34%, #ffffff 34% 42%, #ce1126 42% 58%, #ffffff 58% 66%, #002d62 66%);
  box-shadow: 0 0 0 4px rgba(253, 195, 77, 0.45);
}

.route-map i {
  height: 4px;
  background: linear-gradient(90deg, var(--cyan), var(--gold));
  box-shadow: 0 0 18px rgba(92, 210, 218, 0.75);
}

.route-card p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.65;
}

.stats,
.section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding: 44px 0 0;
}

.stats article,
.cards article,
.steps article,
.contact-card {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
}

.stats article {
  min-height: 150px;
  padding: 26px;
}

.stats strong {
  display: block;
  margin-bottom: 14px;
  color: var(--blue);
  font-size: clamp(2.3rem, 5vw, 4.4rem);
  line-height: 0.9;
}

.stats span,
.section p,
.cards p,
.steps p {
  color: var(--muted);
  line-height: 1.7;
}

.section {
  padding: 88px 0;
}

.split,
.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1fr);
  gap: 70px;
  align-items: start;
}

.cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.cards article {
  min-height: 230px;
  padding: 26px;
}

.cards span,
.steps span {
  display: inline-grid;
  place-items: center;
  margin-bottom: 28px;
  background: #e8f8fa;
  color: var(--blue);
  font-weight: 950;
}

.cards span {
  width: 46px;
  height: 46px;
  border-radius: 8px;
}

.band {
  background: var(--navy);
  color: var(--white);
}

.band .section p {
  color: #c6dcec;
}

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

.steps article {
  min-height: 240px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
}

.steps span {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
}

.contact-card {
  display: grid;
  gap: 18px;
  padding: 32px;
  font-style: normal;
  box-shadow: 0 22px 50px rgba(0, 23, 54, 0.08);
}

.contact-card a,
.contact-card p {
  display: grid;
  gap: 4px;
  margin: 0;
  color: var(--ink);
  font-size: 1.06rem;
  font-weight: 850;
}

.contact-card span {
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .nav {
    flex-wrap: wrap;
  }

  nav {
    order: 3;
    width: 100%;
    overflow-x: auto;
  }

  .hero,
  .split,
  .contact {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .hero {
    min-height: auto;
  }

  .stats,
  .cards,
  .steps {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .brand img {
    width: 190px;
  }

  h1 {
    font-size: 3.1rem;
  }

  .actions .btn {
    width: 100%;
  }

  .route-card {
    min-height: 360px;
    padding: 24px;
  }
}
