.footer-grid a {
  color: #aaa;
  text-decoration: none;
}

header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, .06);
}

.nav-row nav .nav-contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 19px;
  border: 1px solid var(--blue);
  color: var(--blue);
  font-size: 12px;
  font-weight: bold;
  letter-spacing: .5px;
  transition: .2s;
}

.nav-row nav .nav-contact:hover {
  background: var(--blue);
  color: #fff;
}

.mobile-contact {
  display: none;
}

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

.intro-copy strong {
  color: #3f3f3f;
}

.intro-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.insights-section {
  padding: 84px 0 90px;
  background: #fff;
}

.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.insight-card {
  display: flex;
  flex-direction: column;
  min-height: 300px;
  padding: 32px;
  border-top: 3px solid var(--blue);
  background: #f7f7f7;
}

.insight-card > span {
  color: var(--blue);
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 1.2px;
}

.insight-card h3 {
  margin: 14px 0 13px;
  font-size: 21px;
  font-weight: 500;
  line-height: 1.4;
}

.insight-card p {
  margin: 0 0 22px;
  color: #747474;
  font-size: 15px;
}

.insight-card a {
  margin-top: auto;
  color: var(--blue);
  font-size: 12px;
  font-weight: bold;
  letter-spacing: .5px;
  text-decoration: none;
}

.insights-more {
  margin-top: 34px;
  text-align: center;
}

.contact-actions {
  margin: 17px 0 0;
  flex-direction: column;
}

.contact-actions .outline-btn,
.contact-actions .solid-btn {
  width: 100%;
}

.contact-email {
  color: var(--blue);
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
}

.solution-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
}

.product-detail-link {
  color: #666;
  font-size: 12px;
  font-weight: bold;
  letter-spacing: .4px;
  text-decoration: none;
}

.product-detail-link:hover {
  color: var(--blue);
}

.solution-copy .number {
  display: none;
}

.banner-slider {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 5;
  overflow: hidden;
  background: #eef7fb;
  background-image: none;
}

.banner-slide {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: banner-one 12s ease-in-out infinite;
}

.banner-slide-two {
  opacity: 0;
  animation-name: banner-two;
}

@keyframes banner-one {
  0%, 42% { opacity: 1; }
  50%, 92% { opacity: 0; }
  100% { opacity: 1; }
}

@keyframes banner-two {
  0%, 42% { opacity: 0; }
  50%, 92% { opacity: 1; }
  100% { opacity: 0; }
}

@media (max-width: 650px) {
  body {
    padding-bottom: 66px;
  }

  .nav-row {
    height: auto;
    flex-wrap: wrap;
    gap: 10px;
    padding: 13px 0 10px;
  }

  .nav-row nav {
    width: 100%;
    gap: 16px;
    overflow-x: auto;
    padding-bottom: 3px;
  }

  .nav-row nav a {
    display: block !important;
    font-size: 11px;
  }

  .nav-row nav .nav-contact {
    display: none !important;
  }

  .mobile-contact {
    position: fixed;
    right: 16px;
    bottom: 14px;
    z-index: 60;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 22px;
    border-radius: 2px;
    background: var(--blue);
    box-shadow: 0 5px 18px rgba(0, 91, 143, .28);
    color: #fff;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: .6px;
    text-decoration: none;
  }

  .banner-slider {
    aspect-ratio: 16 / 5;
  }

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

  .insights-section {
    padding: 60px 0;
  }
}

@media (min-width: 651px) and (max-width: 950px) {
  .insights-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .banner-slide {
    animation: none;
  }

  .banner-slide-two {
    display: none;
  }
}
