:root {
  --blue: #00295f;
  --blue-deep: #001f50;
  --blue-bright: #004b93;
  --red: #b90009;
  --text: #1d2d43;
  --muted: #354457;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #ffffff;
  color: var(--text);
  font-family: Montserrat, "Segoe UI", Arial, sans-serif;
}

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

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

.site {
  position: relative;
  width: min(100%, 1024px);
  margin: 0 auto;
  overflow: hidden;
  background: #ffffff;
}

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 10;
  height: 132px;
}

.brand {
  position: absolute;
  top: 23px;
  left: 18px;
  width: 342px;
  height: 100px;
}

.brand img {
  width: 342px;
  height: 100px;
  object-fit: contain;
}

.main-nav {
  position: absolute;
  top: 56px;
  left: 442px;
  display: flex;
  align-items: flex-start;
  gap: 43px;
  color: #001c50;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.main-nav a {
  position: relative;
  display: inline-flex;
  padding-bottom: 12px;
}

.main-nav a.is-active {
  color: var(--red);
}

.main-nav a.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 36px;
  height: 2px;
  background: var(--red);
}

.hero {
  position: relative;
  height: 668px;
  background:
    radial-gradient(circle at 82% 28%, rgba(180, 210, 235, 0.24), transparent 31%),
    linear-gradient(90deg, #ffffff 0%, #ffffff 38%, #f4f8fb 56%, #ffffff 100%);
}

.hero-plane {
  position: absolute;
  top: 80px;
  right: 0;
  z-index: 1;
  width: 544px;
  height: 472px;
  object-fit: cover;
}

.hero-copy {
  position: absolute;
  z-index: 4;
  top: 190px;
  left: 53px;
  width: 470px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--red);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.2;
  text-transform: uppercase;
}

.hero h1 {
  width: 470px;
  margin: 0;
  color: #002559;
  font-size: 35px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.05;
  text-transform: uppercase;
}

.accent-line {
  display: block;
  width: 52px;
  height: 3px;
  margin: 17px 0 22px;
  background: var(--red);
}

.lead {
  width: 360px;
  margin: 0;
  color: #2b3a4a;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.48;
}

.cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: 280px;
  height: 35px;
  margin-top: 27px;
  padding: 0 15px;
  border-radius: 2px;
  background: var(--blue-deep);
  color: #ffffff;
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  box-shadow: 0 7px 18px rgba(0, 31, 80, 0.14);
}

.cta span {
  font-size: 15px;
  line-height: 1;
}

.hero-wave {
  position: absolute;
  z-index: 5;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 138px;
  background: url("assets/hero-wave.png") center bottom / 100% 100% no-repeat;
}

.products {
  position: relative;
  height: 345px;
  padding-top: 0;
  background: #ffffff;
}

.section-title {
  position: relative;
  top: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.section-title span {
  width: 104px;
  height: 1px;
  background: linear-gradient(90deg, rgba(0, 58, 116, 0), #0a4a8b, rgba(0, 58, 116, 0));
}

.section-title h2 {
  margin: 0;
  color: #004b93;
  font-size: 24px;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
}

.title-plane {
  position: relative;
  top: 5px;
  width: 78px;
  margin: 0 auto;
  color: var(--red);
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
  text-align: center;
}

.title-plane::before,
.title-plane::after {
  content: "";
  position: absolute;
  top: 8px;
  width: 27px;
  height: 1px;
  background: rgba(185, 0, 9, 0.62);
}

.title-plane::before {
  left: 0;
}

.title-plane::after {
  right: 0;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 272px);
  gap: 10px;
  margin: 12px 0 0 94px;
}

.product-card {
  width: 272px;
  text-align: center;
}

.product-card img {
  width: 272px;
  height: 170px;
  object-fit: cover;
}

.product-card h3 {
  margin: 13px 0 3px;
  color: #004b93;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
}

.product-card-red h3 {
  color: var(--red);
}

.product-card p {
  width: 230px;
  margin: 0 auto;
  color: #26374b;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.38;
}

.why {
  width: 100%;
  background: #002a63;
}

.why img {
  width: 100%;
  height: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.footer-main {
  position: relative;
  height: 230px;
  background: #ffffff;
}

.footer-logo {
  position: absolute;
  top: 26px;
  left: 72px;
  width: 182px;
  height: 184px;
  object-fit: contain;
}

.company-info,
.contact-info {
  position: absolute;
  color: #1d2d43;
}

.company-info {
  top: 37px;
  left: 325px;
  width: 190px;
}

.contact-info {
  top: 37px;
  left: 568px;
  width: 250px;
}

.company-info h2,
.contact-info h2 {
  margin: 0 0 24px;
  color: #001c50;
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.company-info p {
  margin: 0;
  color: #26374b;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.55;
}

.company-info strong {
  color: var(--red);
  font-weight: 900;
}

.company-info b {
  color: #004b93;
  font-weight: 900;
}

.footer-divider {
  position: absolute;
  top: 39px;
  left: 531px;
  width: 1px;
  height: 162px;
  background: #dde4ec;
}

.contact-info ul {
  display: grid;
  gap: 18px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.contact-info li {
  display: flex;
  align-items: center;
  gap: 17px;
  color: #26374b;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.2;
}

.contact-info svg {
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  fill: none;
  stroke: #001c50;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.footer-globe {
  position: absolute;
  top: 8px;
  right: 58px;
  width: 180px;
  height: 184px;
  object-fit: contain;
}

.footer-bottom {
  position: relative;
  height: 26px;
  overflow: hidden;
  background: #001f50;
  color: #ffffff;
  text-align: center;
}

.footer-bottom::before,
.footer-bottom::after {
  content: "";
  position: absolute;
  top: -4px;
  height: 40px;
  transform: skewX(-28deg);
}

.footer-bottom::before {
  right: 285px;
  width: 27px;
  background: #a1a7ab;
}

.footer-bottom::after {
  right: -12px;
  width: 292px;
  background: var(--red);
}

.footer-bottom p {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: 12px;
  font-weight: 500;
  line-height: 26px;
}

@media (max-width: 760px) {
  .site {
    width: 100%;
  }

  .site-header {
    position: relative;
    height: auto;
    padding: 18px 20px 10px;
    background: #ffffff;
  }

  .brand,
  .brand img {
    position: static;
    width: min(342px, 100%);
    height: auto;
  }

  .main-nav {
    position: static;
    flex-wrap: wrap;
    gap: 16px 20px;
    margin-top: 18px;
    font-size: 12px;
  }

  .hero {
    height: auto;
    min-height: 555px;
    padding: 46px 22px 150px;
  }

  .hero-plane {
    top: 118px;
    width: min(544px, 92vw);
    height: auto;
    opacity: 0.42;
  }

  .hero::before {
    display: none;
  }

  .hero-copy {
    position: relative;
    top: auto;
    left: auto;
    width: min(405px, 100%);
  }

  .hero h1,
  .lead {
    width: 100%;
  }

  .hero h1 {
    font-size: 32px;
  }

  .products {
    height: auto;
    padding: 20px 20px 42px;
  }

  .product-grid {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 28px;
    margin: 18px 0 0;
  }

  .section-title {
    top: 0;
  }

  .section-title span {
    width: 64px;
  }

  .why img {
    min-height: 190px;
    object-fit: cover;
  }

  .footer-main {
    height: auto;
    padding: 28px 24px 34px;
  }

  .footer-logo,
  .company-info,
  .contact-info,
  .footer-divider,
  .footer-globe {
    position: static;
  }

  .footer-logo {
    margin: 0 auto 28px;
  }

  .footer-divider {
    display: block;
    width: 100%;
    height: 1px;
    margin: 24px 0;
  }

  .company-info,
  .contact-info {
    width: 100%;
  }

  .company-info h2,
  .contact-info h2 {
    margin-bottom: 16px;
  }

  .footer-globe {
    width: 150px;
    height: auto;
    margin: 28px auto 0;
  }

  .footer-bottom::before,
  .footer-bottom::after {
    display: none;
  }
}
