.site-footer {
  background: linear-gradient(180deg, #4FA6F2 0%, #4BE5BF 100%);
  color: #ffffff;
  min-height: 546px;
}
.footer__bg {
  padding: 40px 0;
}

.footer__top {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 150px;
  align-items: start;
}
.footer__right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}
.footer__chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 16px;
  border-radius: 50px;
  border: none;
  color: #ffffff;
  text-decoration: none;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(2px);
  transition: transform 0.25s ease, background-color 0.2s ease;
}
.footer__chip:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,0.3);
}

.footer__brand img {
  width: 451px;
  height: auto;
  display: block;
  margin: 0 0 33px;
}
.footer__headline {
  margin: 0 0 17px;
  font-size: 26px;
  line-height: 1.1;
  font-weight: 500;
  color: #ffffff;
  max-width: 451px;
}
.footer__desc {
  margin: 0 0 54px;
  font-size: 16px;
  line-height: 24px;
  opacity: 0.8;
  font-weight: 500;
}
.footer__cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: transparent;
  color: #FFFFFF;
  border: 1px solid #FFFFFF;
  height: 45px;
  padding: 4px 22px 4px 4px;
  border-radius: 50px;
  cursor: pointer;
  transition: transform 0.35s ease;
}
.footer__cta:hover {
  transform: translateY(-3px);
}
.footer__cta p {
  margin: 0;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
}
.footer__cta-icon {
  width: 37px;
  height: 37px;
  background: url("/assets/images/footer-btn-icon.svg") no-repeat center / contain;
  display: inline-block;
}
.footer__cta-icon::after {
  content: none;
}

.footer__contact {
  background: rgba(255,255,255,0.2);
  border-radius: 25px;
  padding: 30px 35px 45px;
  border: none;
  color: #ffffff;
  min-height: 321px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.fc__row + .fc__row {
  margin-top: 22px;
}
.fc__label {
  opacity: 0.5;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  margin: 0 0 5px;
}
.fc__value {
  font-size: 22px;
  line-height: 1.1;
  font-weight: 500;
  color: #ffffff;
  text-decoration: none;
}

.footer__bottom {
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255,255,255,0.95);
  font-size: 14px;
}
.footer__copy {
  opacity: 0.95;
}
.footer__policy {
  color: #ffffff;
  text-decoration: none;
  border-bottom: 1px dashed rgba(255,255,255,0.6);
}
.footer__policy:hover {
  border-bottom-color: #ffffff;
}

