/* Shared footer navigation and CTA — 2026-09-04 */
.sf-e-footer {
  padding: 64px 0 48px;
}

.sf-e-footer .sf-e-footer-top {
  grid-template-columns: minmax(260px, .72fr) minmax(0, 1.65fr);
  gap: 64px;
  align-items: start;
}

.sf-e-footer-brand {
  align-self: center;
}

.sf-e-footer .sf-e-footer-tagline {
  margin: 16px 0 0;
}

.sf-e-footer-contact {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 16px;
  white-space: nowrap;
}

.sf-e-footer-phone {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #fff;
  font-size: .9rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: .02em;
  transition: color .2s ease, text-shadow .2s ease, transform .2s ease;
}

.sf-e-footer-phone span {
  color: #59b7e8;
  font-size: 1.22rem;
  line-height: 1;
}

.sf-e-footer-phone:hover,
.sf-e-footer-phone:focus-visible {
  color: #fff;
  text-shadow: 0 0 12px rgba(89, 183, 232, .9);
  transform: translateY(-1px);
}

.sf-e-footer-hours {
  color: #a9a9a9;
  font-size: .67rem;
  font-weight: 800;
  line-height: 1;
}

.sf-e-footer-content {
  display: grid;
  gap: 24px;
}

.sf-e-footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.sf-e-footer .sf-e-footer-nav {
  display: grid;
  grid-template-columns: 1fr;
  align-content: start;
  grid-auto-rows: max-content;
  gap: 2px;
}

.sf-e-footer .sf-e-footer-nav h2 {
  margin: 0 0 9px;
  padding: 0 14px 11px;
  border-bottom: 1px solid rgba(117, 214, 255, .34);
  color: #75d6ff;
  font-size: .76rem;
  font-weight: 900;
  line-height: 1.4;
  letter-spacing: .08em;
}

.sf-e-footer .sf-e-footer-nav a {
  padding-top: 6px;
  padding-bottom: 6px;
}

.sf-e-footer-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.sf-e-footer-trial,
.sf-e-footer-trial:active,
.sf-e-footer-login,
.sf-e-footer-login:active {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 24px 14px 28px;
  border: 2px solid #75d6ff;
  border-radius: 18px;
  background: #0878b2;
  color: #fff !important;
  box-shadow: 0 7px 0 #0f213f;
  font-size: 1.04rem;
  font-weight: 900;
  line-height: 1.35;
  transition: color .2s ease, background-color .2s ease, border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.sf-e-footer-trial span:first-child,
.sf-e-footer-login span:first-child {
  display: grid;
  gap: 4px;
}

.sf-e-footer-trial small,
.sf-e-footer-login small {
  color: #c9f0ff;
  font-size: .63rem;
  font-weight: 900;
  letter-spacing: .16em;
}

.sf-e-footer-trial span:last-child,
.sf-e-footer-login span:last-child {
  font-size: 1.55rem;
  line-height: 1;
}

.sf-e-footer-trial:hover,
.sf-e-footer-trial:focus-visible,
.sf-e-footer-login:hover,
.sf-e-footer-login:focus-visible {
  border-color: #ffe600;
  background: #ffe600;
  color: #202020 !important;
  outline: none;
  box-shadow: 0 7px 0 #0f213f, 0 0 26px rgba(255, 230, 0, .28);
  transform: translateY(-2px);
}

.sf-e-footer-trial:hover small,
.sf-e-footer-trial:focus-visible small,
.sf-e-footer-login:hover small,
.sf-e-footer-login:focus-visible small {
  color: #0f213f;
}

.sf-e-footer .sf-e-footer-bottom {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  margin-top: 42px;
}

.sf-e-footer .sf-e-footer-bottom > small:last-child {
  justify-self: end;
}

.sf-e-footer .sf-e-footer-legal {
  display: flex;
  grid-template-columns: none;
  gap: 18px;
  align-items: center;
  font-size: .66rem;
  font-weight: 800;
}

.sf-e-footer .sf-e-footer-legal a {
  display: inline;
  padding: 4px 0;
  border: 0;
  border-radius: 0;
  color: #a9a9a9;
}

.sf-e-footer .sf-e-footer-legal a::after {
  display: none;
}

.sf-e-footer .sf-e-footer-legal a:hover,
.sf-e-footer .sf-e-footer-legal a:focus-visible {
  border: 0;
  background: transparent;
  color: #75d6ff !important;
  box-shadow: none;
  transform: none;
}

@media (max-width: 760px) {
  .sf-e-footer {
    padding: 52px 0 44px;
  }

  .sf-e-footer .sf-e-footer-top {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .sf-e-footer-brand {
    align-self: start;
  }

  .sf-e-footer .sf-e-footer-tagline {
    margin-top: 12px;
  }

  .sf-e-footer-contact {
    margin-top: 13px;
  }

  .sf-e-footer-phone {
    font-size: .84rem;
  }

  .sf-e-footer-phone span {
    font-size: 1.14rem;
  }

  .sf-e-footer-hours {
    font-size: .62rem;
  }

  .sf-e-footer-content {
    gap: 20px;
  }

  .sf-e-footer-links {
    gap: 10px;
  }

  .sf-e-footer .sf-e-footer-nav h2 {
    min-height: 52px;
    margin-bottom: 6px;
    padding: 0 7px 9px;
    font-size: .7rem;
  }

  .sf-e-footer .sf-e-footer-nav a {
    min-height: 44px;
    padding: 8px 7px;
    font-size: .72rem;
  }

  .sf-e-footer-actions {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .sf-e-footer-trial,
  .sf-e-footer-trial:active,
  .sf-e-footer-login,
  .sf-e-footer-login:active {
    min-height: 74px;
    gap: 14px;
    padding: 12px 16px 12px 18px;
    border-radius: 16px;
    font-size: .9rem;
  }

  .sf-e-footer-trial span:last-child,
  .sf-e-footer-login span:last-child {
    font-size: 1.3rem;
  }

  .sf-e-footer .sf-e-footer-bottom {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 36px;
  }

  .sf-e-footer .sf-e-footer-legal {
    order: -1;
    gap: 16px;
    font-size: .64rem;
  }

  .sf-e-footer .sf-e-footer-bottom > small,
  .sf-e-footer .sf-e-footer-bottom > small:last-child {
    justify-self: start;
  }
}

@media (prefers-reduced-motion: reduce) {
  .sf-e-footer-trial,
  .sf-e-footer-login {
    transition: none;
  }
}
