.ws-site-footer {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 0%, rgba(46, 171, 225, 0.12), transparent 26%),
    #162433;
  color: rgba(255, 255, 255, 0.72);
}

.ws-site-footer__accent {
  height: 4px;
  background: linear-gradient(90deg, #2eabe1 0%, #82d5f3 48%, #2eabe1 100%);
}
.ws-site-footer__logo img {
  filter: brightness(0) invert(1);
}
.ws-site-footer__main {
  display: grid;
  grid-template-columns: minmax(280px, 1.35fr) minmax(0, 2fr);
  gap: 85px;
  padding: 78px 0 58px;
}

.ws-site-footer__brand {
  max-width: 390px;
}

.ws-site-footer__logo {
  display: inline-block;
  margin-bottom: 25px;
}

.ws-site-footer__logo img {
  display: block;
  width: auto;
  max-width: 210px;
  max-height: 66px;
  object-fit: contain;
}

.ws-site-footer__summary {
  margin: 0;
  max-width: 370px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 14px;
  line-height: 1.75;
}

.ws-site-footer__trust {
  display: inline-flex;
  align-items: center;
  min-height: 72px;
  margin-top: 30px;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.045);
}

.ws-site-footer__trust img {
  display: block;
  width: auto;
  max-width: 180px;
  max-height: 48px;
  object-fit: contain;
}

.ws-site-footer__links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 34px;
}

.ws-site-footer__column h2 {
  position: relative;
  margin: 0 0 22px;
  padding-bottom: 13px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.075em;
  text-transform: uppercase;
}

.ws-site-footer__column h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 30px;
  height: 2px;
  border-radius: 999px;
  background: #2eabe1;
}

.ws-site-footer__column ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.ws-site-footer__column li + li {
  margin-top: 10px;
}

.ws-site-footer__column a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.63);
  font-size: 13px;
  line-height: 1.5;
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
}

.ws-site-footer__column a i {
  color: #82d5f3;
  font-size: 10px;
  opacity: 0;
  transform: translateX(-5px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.ws-site-footer__column a:hover {
  color: #ffffff;
  transform: translateX(2px);
}

.ws-site-footer__column a:hover i {
  opacity: 1;
  transform: translateX(0);
}

.ws-site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding: 23px 0 27px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  color: rgba(255, 255, 255, 0.46);
  font-size: 12px;
}

.ws-site-footer__location {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.ws-site-footer__location i {
  color: #82d5f3;
}

@media (max-width: 1199px) {
  .ws-site-footer__main {
    grid-template-columns: minmax(250px, 0.9fr) minmax(0, 1.6fr);
    gap: 55px;
  }

  .ws-site-footer__links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 40px;
  }
}

@media (max-width: 767px) {
  .ws-site-footer__main {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 62px 0 45px;
  }

  .ws-site-footer__brand {
    max-width: none;
  }

  .ws-site-footer__links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 36px 25px;
  }

  .ws-site-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 9px;
  }
}

@media (max-width: 480px) {
  .ws-site-footer__links {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .ws-site-footer__logo img {
    max-width: 185px;
  }

  .ws-site-footer__trust img {
    max-width: 155px;
  }
}
