/* ==========================================================================
   Нижний блок «Наши контакты» (футер) — чистая адаптивная версия
   (заменяет Tilda Zero Block rec1923440251).
   Дизайн повторяет исходник: чёрный фон, белый uppercase-заголовок 30px,
   слева — телефон/адрес/соцсети/кнопка «Стать партнером» и юр. ссылки,
   справа — логотипы Novatorix и Минэка. На фоне — синее размытое «свечение».
   ========================================================================== */

.site-footer {
  position: relative;
  overflow: hidden;
  /* Заливка индиго #20205c с плавным переходом из тёмного у самого верха —
     длинный градиент, чтобы переход тёмное→светлое был мягким */
  background-color: #20205c;
  background-image: linear-gradient(180deg,
      #050512 0%,
      #0f0f30 18%,
      #181845 40%,
      #20205c 70%,
      #20205c 100%);
  color: #ffffff;
  padding: 50px 0 45px;
  font-family: 'Geologica', sans-serif;
}

.site-footer__inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}

.site-footer__title {
  color: #ffffff;
  font-family: var(--t-text-font, Arial);
  font-size: 30px;
  line-height: 1.55;
  font-weight: 400;
  text-transform: uppercase;
  margin: 0 0 24px;
}

/* ----- Левая колонка: контакты ----- */
.site-footer__phone {
  font-size: 24px;
  line-height: 1.4;
  font-weight: 700;
  margin: 0 0 12px;
}

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

.site-footer__phone a:hover {
  text-decoration: underline;
}

.site-footer__address {
  font-size: 24px;
  line-height: 1.55;
  font-weight: 400;
  margin: 0 0 24px;
}

.site-footer__socials {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 28px;
}

.site-footer__socials a {
  display: block;
}

.site-footer__socials img {
  display: block;
  width: auto;
  height: 62px;
}

/* Кнопка-аутлайн «Стать партнером» */
.site-footer__partner {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 200px;
  height: 55px;
  padding: 0 24px;
  box-sizing: border-box;
  color: #ffffff;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid #ffffff;
  border-radius: 15px;
  background: transparent;
  cursor: pointer;
  transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
}

.site-footer__partner:hover {
  background-color: #ffffff;
  color: #000000;
}

/* Юридические ссылки */
.site-footer__legal {
  margin: 28px 0 0;
}

.site-footer__legal a,
.site-footer__legal span {
  display: block;
  color: #ffffff;
  font-size: 16px;
  line-height: 1.55;
  font-weight: 100;
  text-decoration: none;
  margin-top: 6px;
}

.site-footer__legal a:hover {
  text-decoration: underline;
}

/* ----- Правая колонка: логотипы ----- */
.site-footer__brand {
  display: flex;
  align-items: center;
  gap: 24px;
  flex: 0 0 auto;
  padding-top: 60px;
}

.site-footer__brand a {
  display: block;
}

.site-footer__brand-minec img {
  display: block;
  width: auto;
  height: 72px;
}

.site-footer__brand-logo img {
  display: block;
  width: auto;
  height: 115px;
}

/* ----- Адаптив ----- */
@media screen and (max-width: 980px) {
  .site-footer {
    padding: 40px 0 36px;
  }
  .site-footer__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
  }
  .site-footer__title {
    font-size: 24px;
  }
  .site-footer__phone {
    font-size: 20px;
  }
  .site-footer__address {
    font-size: 16px;
  }
  .site-footer__socials img {
    height: 52px;
  }
  .site-footer__brand {
    padding-top: 0;
    gap: 18px;
  }
  .site-footer__brand-minec img {
    height: 56px;
  }
  .site-footer__brand-logo img {
    height: 90px;
  }
  .site-footer__legal a,
  .site-footer__legal span {
    font-size: 14px;
  }
}
