html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  min-height: 100%;
  background: #0b111b;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

.hero--headerOnly .hero__inner {
  min-height: auto;
  padding: 0;
}

.hero--headerOnly {
  z-index: 1100;
}

.hero--headerOnly .hero__logo img {
  transition: height 0.25s ease, transform 0.25s ease, filter 0.25s ease;
}

.hero--headerOnly .hero__logo img:hover {
  transform: translateY(-1px) scale(1.02);
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.18));
}

@media (prefers-reduced-motion: reduce) {
  .hero--headerOnly .hero__logo img {
    transition: none;
  }
}

:root {
  --landing-nav-height: 112px;
}

.hero__nav--sticky {
  z-index: 1100;
}

.hero__mobileMenu {
  z-index: 1099;
}

.hero__mobileBackdrop {
  z-index: 1098;
}

@media (max-width: 768px) {
  :root {
    --landing-nav-height: 92px;
  }
}

@media (max-width: 640px) {
  :root {
    --landing-nav-height: 82px;
  }
}

.footer {
  width: 100%;
  background: #ffffff;
  border-top: 1px solid #1f73c7;
}

.footer-container {
  max-width: none;
  margin: 0;
  width: 100%;
  padding: 48px 40px 40px;
  font-family: "Lato", sans-serif;
  color: #3a3f46;
}

.footer-main {
  display: flex;
  gap: 64px;
  flex-wrap: wrap;
  align-items: flex-start;
  width: 100%;
  justify-content: space-between;
}

.footer-column {
  flex: 1 1 220px;
  min-width: 220px;
}

.footer-products {
  flex: 2 1 520px;
}

.footer-heading {
  margin: 0 0 14px;
  font-size: 20px;
  font-weight: 800;
  color: #30343a;
}

.footer-heading--spaced {
  margin-top: 4px;
}

.footer-heading-link {
  display: block !important;
  text-decoration: none;
  transition: opacity 0.2s ease;
  margin-bottom: 18px;
}

.footer-heading-link:hover {
  opacity: 0.7;
}

.footer-text {
  margin: 0 0 8px;
  font-size: 15px;
  line-height: 1.6;
  color: #3e434a;
}

.footer-text-spaced {
  margin-top: 16px;
}

.footer-products .footer-product-lists {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: 44px;
  row-gap: 16px;
}

.footer-product-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-product-list li {
  font-size: 15px;
  color: #3e434a;
  line-height: 1.5;
  position: relative;
  padding-left: 14px;
}

.footer-product-list li::before {
  content: "-";
  position: absolute;
  left: 0;
  color: #3e434a;
}

.footer-links .footer-subheading {
  margin: 0 0 18px;
  font-weight: 800;
  color: #30343a;
}

.footer-links-list {
  list-style: none;
  padding: 0;
  margin: 10px 0 0;
  display: flex !important;
  flex-direction: column !important;
  gap: 8px;
}

.footer-column.footer-links .footer-links-list li {
  position: relative !important;
  padding-left: 16px !important;
  font-size: 15px;
  line-height: 1.5;
  color: #3e434a;
}

.footer-column.footer-links .footer-links-list li::before {
  content: "–" !important;
  position: absolute !important;
  left: 0 !important;
  top: 0 !important;
  color: #3e434a !important;
  font-weight: normal;
}

.footer-link {
  color: #3e434a;
  text-decoration: none;
}

.footer-link:hover {
  text-decoration: underline;
}

.footer-bottom {
  margin-top: 30px;
  padding-top: 16px;
  border-top: 1px solid #e2e6ec;
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 14px;
  color: #6b717a;
}

.footer-bottom-text {
  margin: 0;
}

.footer-bottom-right {
  text-align: right;
  /* Shift the credit left of the bottom-right corner so the fixed contact FAB
     no longer overlaps it when scrolled to the bottom (2026-05-25 call). */
  margin-right: 80px;
}

.footer-bottom-link {
  color: #3b5fa3;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  padding-bottom: 1px;
}

.footer-bottom-link:hover {
  border-color: #3b5fa3;
}

@media (max-width: 900px) {
  .footer-container {
    padding: 40px 24px 36px;
  }

  .footer-main {
    gap: 32px;
  }

  .footer-column {
    flex-basis: 260px;
  }
}

@media (max-width: 640px) {
  .footer-products .footer-product-lists {
    grid-template-columns: 1fr;
  }

  .footer-container {
    padding: 36px 16px 32px;
  }

  .footer-heading {
    font-size: 18px;
  }

  .footer-product-list {
    min-width: 180px;
  }
}

@media (max-width: 480px) {
  .footer-container {
    padding: 32px 16px 28px;
  }

  .footer-main {
    gap: 26px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-bottom-right {
    text-align: left;
    margin-right: 0;
  }
}
