.unified-site-footer {
  --uf-white: #ffffff;
  --uf-navy: #0d1729;
  --uf-ink: #071b2e;
  --uf-teal: #5ae2c0;
  position: relative;
  overflow: hidden;
  padding: 0;
  color: rgba(255, 255, 255, .66);
  background:
    radial-gradient(circle at 94% 68%, rgba(16, 185, 154, .12), transparent 30%),
    radial-gradient(circle at 4% 84%, rgba(32, 73, 118, .32), transparent 24%),
    var(--uf-navy);
}

.unified-site-footer::before {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #1797cf 0 72%, #91b83c 72% 78%, transparent 78%);
}

.unified-site-footer,
.unified-site-footer * {
  box-sizing: border-box;
}

.unified-footer__container {
  width: min(calc(100% - 48px), 1240px);
  margin-inline: auto;
}

.unified-site-footer a {
  color: inherit;
  text-decoration: none;
}

.unified-footer__grid {
  padding-block: clamp(62px, 7vw, 82px) clamp(46px, 5vw, 60px);
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 42px;
}

.unified-footer__about {
  min-width: 0;
}

.unified-footer__brand,
.unified-footer__brand img {
  display: block;
}

.unified-footer__brand img {
  width: min(100%, 240px);
  height: auto;
  object-fit: contain;
}

.unified-footer__about p {
  max-width: 310px;
  margin: 24px 0 20px;
  color: rgba(255, 255, 255, .66);
  font-size: .96rem;
  line-height: 1.75;
}

.unified-footer__group {
  width: min(100%, 220px);
  min-height: 54px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  background: transparent;
  border-radius: 10px;
  transition: opacity 260ms ease, transform 260ms ease;
}

.unified-footer__group:hover,
.unified-footer__group:focus-visible {
  opacity: .84;
  transform: translateY(-2px);
}

.unified-footer__group img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.unified-footer__column h2 {
  position: relative;
  margin: 0 0 24px;
  padding-bottom: 13px;
  color: var(--uf-white);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.unified-footer__column h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 28px;
  height: 1px;
  background: linear-gradient(90deg, #28a7dc, #91b83c);
}

.unified-footer__column > a {
  width: fit-content;
  margin: 10px 0;
  display: block;
  color: rgba(255, 255, 255, .66);
  font-size: .94rem;
  line-height: 1.45;
  transition: color 240ms ease, transform 240ms ease;
}

.unified-footer__column > a:hover,
.unified-footer__column > a:focus-visible {
  color: var(--uf-teal);
  transform: translateX(3px);
}

.unified-footer__contact address {
  margin: 0 0 16px;
  color: rgba(255, 255, 255, .66);
  font-style: normal;
  font-size: .94rem;
  line-height: 1.8;
}

.unified-footer__stores {
  width: min(100%, 310px);
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  gap: 8px;
}

.unified-footer__stores a {
  width: 100%;
  min-width: 0;
  min-height: 0;
  aspect-ratio: 151 / 40;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #000;
  border-radius: 8px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .58);
  transition: opacity 240ms ease, transform 240ms ease;
}

.unified-footer__stores a:hover,
.unified-footer__stores a:focus-visible {
  opacity: .88;
  transform: translateY(-2px);
}

.unified-footer__stores img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.unified-footer__stores a:nth-child(2) img {
  object-fit: cover;
}

.unified-footer__social {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.unified-footer__social a {
  min-height: 40px;
  padding: 8px 11px;
  display: inline-flex;
  align-items: center;
  color: rgba(255, 255, 255, .72);
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 999px;
  font-size: .74rem;
  transition: color 240ms ease, border-color 240ms ease, background 240ms ease;
}

.unified-footer__social a:hover,
.unified-footer__social a:focus-visible {
  color: var(--uf-white);
  border-color: rgba(90, 226, 192, .42);
  background: rgba(90, 226, 192, .08);
}

.unified-footer__bottom {
  padding-block: 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px 26px;
  color: rgba(255, 255, 255, .5);
  border-top: 1px solid rgba(255, 255, 255, .12);
  font-size: .78rem;
}

.unified-footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
}

.unified-footer__legal a {
  color: rgba(255, 255, 255, .62);
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, .2);
  text-underline-offset: 4px;
  transition: color 240ms ease;
}

.unified-footer__legal a:hover,
.unified-footer__legal a:focus-visible {
  color: var(--uf-teal);
}

@media (min-width: 600px) {
  .unified-footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .unified-footer__about {
    grid-column: 1 / -1;
  }

  .unified-footer__bottom {
    flex-direction: row;
    justify-content: space-between;
  }

  .unified-footer__legal {
    justify-content: flex-end;
  }
}

@media (min-width: 1050px) {
  .unified-footer__grid {
    grid-template-columns: 1.15fr .8fr 1fr 1.18fr;
    gap: clamp(30px, 3.5vw, 54px);
  }

  .unified-footer__about {
    grid-column: auto;
  }

  .unified-footer__column {
    padding-left: clamp(24px, 2.5vw, 36px);
    border-left: 1px solid rgba(255, 255, 255, .09);
  }
}

@media (max-width: 599px) {
  .unified-footer__container {
    width: calc(100% - 28px);
  }

  .unified-footer__grid {
    padding-block: 52px 42px;
  }

}

@media (prefers-reduced-motion: reduce) {
  .unified-site-footer *,
  .unified-site-footer *::before,
  .unified-site-footer *::after {
    transition-duration: .01ms !important;
  }
}
