.site-footer {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 16%, rgba(25, 127, 188, .17), transparent 28%),
    linear-gradient(135deg, #0b1421 0%, #111d2c 58%, #0b1421 100%);
  padding: 92px 0 28px;
}
.site-footer:before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(115deg, transparent 0 44%, rgba(255,255,255,.035) 44.1%, transparent 44.3%);
  pointer-events: none;
}
.footer-light-orb {
  position: absolute;
  z-index: -1;
  top: -165px;
  right: 12%;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(76, 190, 230, .18);
  border-radius: 50%;
  box-shadow: 0 0 0 24px rgba(76,190,230,.025), 0 0 0 48px rgba(76,190,230,.018);
  animation: footer-orbit 12s ease-in-out infinite;
}
.footer-light-orb:after {
  content: "";
  position: absolute;
  left: 48px;
  bottom: 38px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #f59e0b;
  box-shadow: 0 0 18px 4px rgba(245,158,11,.38);
}
.footer-grid-lines {
  position: absolute;
  z-index: -1;
  right: 0;
  bottom: 0;
  width: 46%;
  height: 68%;
  opacity: .32;
  background-image: linear-gradient(rgba(101,192,225,.12) 1px, transparent 1px), linear-gradient(90deg, rgba(101,192,225,.12) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(135deg, transparent 0%, #000 75%);
  pointer-events: none;
}
.footer-top {
  position: relative;
  z-index: 1;
  grid-template-columns: 1.15fr .75fr 1.1fr 1.25fr;
  gap: 54px;
  padding-bottom: 78px;
}
.footer-brand-mark {
  position: relative;
  width: 92px;
  margin-bottom: 19px;
}
.footer-brand img {
  position: relative;
  z-index: 1;
  width: 92px;
  height: 92px;
  margin: 0;
  object-fit: cover;
  mix-blend-mode: screen;
  filter: saturate(.8) brightness(1.08);
}
.footer-brand-pulse {
  position: absolute;
  inset: 11px;
  border: 1px solid rgba(101,192,225,.55);
  border-radius: 50%;
  animation: footer-pulse 2.8s ease-out infinite;
}
.footer-brand p {
  color: #d2dde6;
  font-size: 14px;
  line-height: 1.6;
  margin: 0 0 20px;
}
.footer-location {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #7f98aa;
  font-size: 10px;
  letter-spacing: .04em;
}
.footer-location i,
.footer-bottom i {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #54c889;
  box-shadow: 0 0 0 4px rgba(84,200,137,.1);
}
.footer-col {
  gap: 13px;
}
.footer-col small {
  color: #65c0e1;
  font-size: 10px;
  letter-spacing: .18em;
  margin-bottom: 7px;
}
.footer-col > a:not(.footer-contact-link) {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #b7c7d3;
  font-size: 13px;
  transition: color .25s ease, transform .25s ease;
}
.footer-col > a:not(.footer-contact-link) span {
  color: #526b7e;
  font-size: 9px;
  transition: color .25s ease;
}
.footer-col > a:not(.footer-contact-link):hover {
  color: #fff;
  transform: translateX(5px);
}
.footer-col > a:not(.footer-contact-link):hover span {
  color: #f59e0b;
}
.footer-contact-col {
  gap: 10px;
}
.footer-contact-link {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  width: 100%;
  padding: 0 28px 12px 0;
  border-bottom: 1px solid rgba(152,181,201,.15);
  color: #c6d4de;
  font-size: 12px;
  transition: color .25s ease;
}
.footer-contact-link b,
.footer-address b {
  color: #748d9f;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.footer-contact-link span {
  position: absolute;
  right: 1px;
  top: 13px;
  color: #f59e0b;
  font-size: 17px;
  transition: transform .25s ease;
}
.footer-contact-link:hover {
  color: #fff;
}
.footer-contact-link:hover span {
  transform: translate(3px, -3px);
}
.footer-address {
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: #b7c7d3;
  font-size: 12px;
  line-height: 1.65;
}
.footer-cta {
  position: relative;
  min-height: 220px;
  gap: 0;
  border: 1px solid rgba(101,192,225,.25);
  border-left: 2px solid #f59e0b;
  padding: 25px 27px 23px;
  background: linear-gradient(145deg, rgba(25,52,73,.76), rgba(11,22,35,.72));
  box-shadow: 0 18px 45px rgba(0,0,0,.16);
  transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
}
.footer-cta:hover {
  transform: translateY(-5px);
  border-color: rgba(101,192,225,.55);
  box-shadow: 0 25px 55px rgba(0,0,0,.26);
}
.footer-cta-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-cta-top span {
  color: #f59e0b;
  font-size: 20px;
  transition: transform .25s ease;
}
.footer-cta:hover .footer-cta-top span {
  transform: translate(4px, -4px);
}
.footer-cta h3 {
  font-size: clamp(27px, 2.6vw, 36px);
  line-height: 1.02;
  letter-spacing: -.045em;
  margin: 25px 0 24px;
}
.footer-cta h3 em {
  color: #65c0e1;
  font-style: normal;
}
.footer-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}
.footer-cta-link span {
  color: #f59e0b;
  font-size: 20px;
  font-weight: 400;
  transition: transform .25s ease;
}
.footer-cta-link:hover span {
  transform: translateX(5px);
}
.footer-cta-line {
  position: absolute;
  right: 27px;
  bottom: 28px;
  width: 58px;
  height: 1px;
  background: #f59e0b;
  transform-origin: right;
  animation: footer-line 2.5s ease-in-out infinite;
}
.footer-bottom {
  position: relative;
  z-index: 1;
  padding-top: 21px;
  border-top: 1px solid rgba(152,181,201,.18);
  color: #748b9c;
  font-size: 10px;
}
.footer-bottom span:last-child {
  display: flex;
  align-items: center;
  gap: 9px;
}

.footer-credit {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #748b9c;
  transition: color .25s ease;
}
.footer-credit strong {
  color: #b7c7d3;
  font-weight: 600;
}
.footer-credit span {
  color: #f59e0b;
  font-size: 14px;
  line-height: 1;
  transition: transform .25s ease;
}
.footer-credit:hover {
  color: #fff;
}
.footer-credit:hover strong {
  color: #65c0e1;
}
.footer-credit:hover span {
  transform: translate(2px, -2px);
}

@keyframes footer-orbit {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(0deg); }
  50% { transform: translate3d(-14px, 12px, 0) rotate(8deg); }
}
@keyframes footer-pulse {
  0% { opacity: .72; transform: scale(.9); }
  70%, 100% { opacity: 0; transform: scale(1.25); }
}
@keyframes footer-line {
  0%, 100% { transform: scaleX(.55); opacity: .55; }
  50% { transform: scaleX(1); opacity: 1; }
}
@media (max-width: 1000px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 48px 34px;
  }
  .footer-brand,
  .footer-cta {
    grid-column: 1 / -1;
  }
  .footer-cta {
    min-height: 190px;
  }
}
@media (max-width: 560px) {
  .site-footer {
    padding: 66px 0 23px;
  }
  .footer-light-orb {
    top: -105px;
    right: -150px;
    width: 280px;
    height: 280px;
  }
  .footer-grid-lines {
    width: 90%;
    height: 40%;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 39px 20px;
    padding-bottom: 48px;
  }
  .footer-brand,
  .footer-cta {
    grid-column: 1 / -1;
  }
  .footer-brand img,
  .footer-brand-mark {
    width: 78px;
    height: 78px;
  }
  .footer-brand p {
    font-size: 13px;
  }
  .footer-location {
    font-size: 9px;
  }
  .footer-col > a:not(.footer-contact-link),
  .footer-address,
  .footer-contact-link {
    font-size: 11px;
  }
  .footer-cta {
    min-height: 185px;
    padding: 22px 21px;
  }
  .footer-cta h3 {
    font-size: 30px;
    margin: 20px 0 22px;
  }
  .footer-bottom {
    align-items: flex-start;
    gap: 10px;
    line-height: 1.5;
  }
  .footer-bottom span:last-child {
    flex-wrap: wrap;
  }
}
@media (prefers-reduced-motion: reduce) {
  .footer-light-orb,
  .footer-brand-pulse,
  .footer-cta-line {
    animation: none;
  }
}