.site-footer {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(
      circle at top left,
      rgba(171, 214, 186, 0.12),
      transparent 32%
    ),
    radial-gradient(
      circle at right center,
      rgba(214, 238, 221, 0.08),
      transparent 28%
    ),
    linear-gradient(135deg, #08281d 0%, #0d3d2c 55%, #114b35 100%);
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.04),
    transparent 28%
  );
  pointer-events: none;
}

.site-footer::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(1180px, calc(100% - 48px));
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(
    90deg,
    transparent,
    rgba(233, 244, 237, 0.34) 18%,
    rgba(233, 244, 237, 0.34) 82%,
    transparent
  );
}

.site-footer__main {
  position: relative;
  padding: 82px 0 34px;
}

.site-footer__brand {
  max-width: 390px;
}

.site-footer__logo {
  display: inline-flex;
  margin-bottom: 22px;
}

.site-footer__logo img {
  width: 132px;
  height: auto;
  display: block;
  filter: brightness(0) invert(1);
}

.site-footer__description {
  margin: 0 0 28px;
  color: rgba(236, 245, 239, 0.84);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
}

.site-footer__social {
  display: flex;
  align-items: center;
  gap: 12px;
}

.site-footer__social-link {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(226, 240, 231, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: #f5fbf7;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 16px;
  transition: all 0.25s ease;
}

.site-footer__social-link:hover {
  transform: translateY(-2px);
  background: #f3faf5;
  color: #0f4a34;
  border-color: #f3faf5;
}

.site-footer__title {
  margin: 0 0 24px;
  color: #f7fcf8;
  font-family: "Satoshi", "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer__column {
  height: 100%;
  padding: 14px 0 0 32px;
}

.site-footer__brand {
  height: 100%;
  padding: 6px 0 0;
}

.site-footer__main .row > [class*="col-"] {
  position: relative;
}

.site-footer__main .row {
  align-items: stretch;
}

@media (min-width: 992px) {
  .site-footer__main .row > [class*="col-"]:not(:first-child)::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(
      180deg,
      rgba(226, 240, 231, 0.04) 0%,
      rgba(226, 240, 231, 0.16) 14%,
      rgba(226, 240, 231, 0.16) 86%,
      rgba(226, 240, 231, 0.04) 100%
    );
  }
}

.site-footer__links,
.site-footer__contact {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer__links li,
.site-footer__contact li {
  margin-bottom: 14px;
}

.site-footer__links a,
.site-footer__contact a,
.site-footer__contact span {
  color: rgba(236, 245, 239, 0.78);
  font-size: var(--fs-sm);
  font-weight: 400;
  line-height: 1.7;
  text-decoration: none;
  transition:
    color 0.2s ease,
    opacity 0.2s ease;
}

.site-footer__links a:hover,
.site-footer__contact a:hover {
  color: #ffffff;
  opacity: 1;
}

.site-footer__contact li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.site-footer__contact i {
  width: 38px;
  min-width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: #f5fbf7;
  font-size: 14px;
  margin-top: 1px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.site-footer__bottom {
  position: relative;
  border-top: 1px solid rgba(226, 240, 231, 0.12);
  padding: 20px 0 24px;
}

.site-footer__copyright {
  margin: 0;
  color: rgba(236, 245, 239, 0.66);
  text-align: center;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.03em;
}

@media (max-width: 991px) {
  .site-footer__main {
    padding: 60px 0 26px;
  }

  .site-footer__brand {
    max-width: 100%;
  }

  .site-footer__brand,
  .site-footer__column {
    padding: 0;
  }

  .site-footer__column {
    padding-top: 8px;
  }
}

@media (max-width: 767px) {
  .site-footer__main {
    padding: 42px 0 20px;
  }

  .site-footer__title {
    margin-bottom: 16px;
    font-size: 18px;
    letter-spacing: 0.05em;
  }

  .site-footer__brand,
  .site-footer__column {
    padding: 0;
  }

  .site-footer__social-link {
    width: 38px;
    height: 38px;
    font-size: 15px;
  }
}
@media (max-width: 567px) {
  .site-footer__description,
  .site-footer__links a,
  .site-footer__contact a,
  .site-footer__contact span {
    font-size: var(--fs-xs);
  }
}
