.site-footer {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  background:
    radial-gradient(circle at 12% 18%, rgba(246, 195, 61, 0.18), transparent 24%),
    radial-gradient(circle at 88% 8%, rgba(255, 255, 255, 0.10), transparent 22%),
    linear-gradient(135deg, #07407b 0%, #0965bd 100%);
}

.site-footer::before {
  content: "";
  position: absolute;
  left: -90px;
  bottom: -120px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(246, 195, 61, 0.15);
}

.site-footer::after {
  content: "";
  position: absolute;
  right: -120px;
  top: -110px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}

.footer-grid,
.footer-bottom {
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.75fr 0.75fr 1fr;
  gap: 42px;
  padding: 54px 0 34px;
}

.footer-brand {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: center;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 112px;
  min-height: 82px;
  padding: 8px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.10);
}

.footer-logo picture,
.footer-logo img {
  display: block;
  line-height: 0;
}

.footer-logo img {
  width: 96px;
  max-height: 68px;
  object-fit: contain;
}

.footer-brand strong {
  display: block;
  margin-bottom: 8px;
  font-size: 22px;
  line-height: 1.2;
}

.footer-brand p {
  max-width: 260px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-column h3 {
  margin: 0 0 8px;
  color: #ffffff;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-column a {
  width: fit-content;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 700;
  transition: 0.2s ease;
}

.footer-column a:hover {
  color: #ffffff;
  transform: translateX(2px);
}

.footer-contact a {
  white-space: nowrap;
}

.footer-bottom {
  display: flex;
  justify-content: center;
  padding: 18px 0 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

@media (max-width: 980px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-top: 38px;
  }

  .footer-brand {
    grid-template-columns: 1fr;
  }

  .footer-logo {
    width: 104px;
  }

  .footer-bottom {
    justify-content: flex-start;
    text-align: left;
  }
}
