.site-footer--custom{
  position: relative;
  background: #121A41;
  color: rgba(255,255,255,.92);
  padding: 34px 0 18px;
  overflow: hidden;
}

.site-footer--custom::before{
  content:"";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(520px 180px at 10% 0%, rgba(255,255,255,.05), transparent 60%),
    radial-gradient(520px 180px at 90% 100%, rgba(153,1,1,.12), transparent 60%);
  pointer-events: none;
}

.site-footer--custom .container{
  position: relative;
  z-index: 1;
}

.footerMain{
  display: grid;
  grid-template-columns: 1.2fr .9fr 1fr;
  gap: 28px;
  align-items: start;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255,255,255,.10);
}

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

.footerBrand__logo img{
  width: 90px;
  height: auto;
  display: block;
}

.footerBrand__copy h3{
  margin: 0 0 6px;
  font-size: 20px;
  line-height: 1.05;
  color: #fff;
}

.footerBrand__copy p{
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,.72);
  max-width: 38ch;
}

.footerNav{
  display: grid;
  gap: 16px;
  align-content: start;
}

.footerNav a{
  color: rgba(255,255,255,.84);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.footerNav a:hover{
  color: #fff;
}

.footerContact{
  display: grid;
  gap: 12px;
}

.footerContact a{
  display: grid;
  gap: 2px;
  padding: 10px 12px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.03);
  text-decoration: none;
}

.footerContact a:hover{
  background: rgba(255,255,255,.05);
  border-color: rgba(255,255,255,.14);
}

.footerContact strong{
  font-size: 13px;
  color: #fff;
}

.footerContact span{
  font-size: 13px;
  color: rgba(255,255,255,.72);
}

.footerStrip{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 0 14px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.footerMiniLinks{
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footerMiniLinks a{
  color: rgba(255,255,255,.72);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}

.footerMiniLinks a:hover{
  color: #fff;
}

.footerSocials{
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.footerSocial{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 84px;
  height: 40px;
  padding: 0 14px;
  border-radius: 12px;
  color: #fff;
  text-decoration: none;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
}

.footerSocial:hover{
  background: rgba(255,255,255,.08);
}

.footerBottom{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  padding-top: 14px;
  color: rgba(255,255,255,.58);
  font-size: 12px;
}

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

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

  .footerStrip,
  .footerBottom{
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px){
  .site-footer--custom{
    padding: 26px 0 16px;
  }

  .footerMain{
    grid-template-columns: 1fr;
    gap: 18px;
    padding-bottom: 18px;
  }

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

  .footerBrand__logo img{
    width: 72px;
  }

  .footerBrand__copy h3{
    font-size: 18px;
  }

  .footerBrand__copy p{
    font-size: 13px;
  }

  .footerStrip{
    padding: 16px 0 12px;
  }

  .footerBottom{
    padding-top: 12px;
    gap: 6px;
  }
}

.footerSocials{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
}

.footerSocial{
  position: relative;
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  color: #fff;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 8px 18px rgba(0,0,0,.12);
  overflow: hidden;
  text-decoration: none;
  transition:
    transform .18s ease,
    box-shadow .18s ease,
    border-color .18s ease,
    background-color .18s ease,
    color .18s ease;
}

.footerSocial::before{
  content:"";
  position: absolute;
  top: -35%;
  left: -65%;
  width: 46%;
  height: 180%;
  transform: rotate(18deg);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.34), transparent);
  opacity: 0;
  transition: left .45s ease, opacity .2s ease;
}

.footerSocial svg{
  width: 18px;
  height: 18px;
  position: relative;
  z-index: 1;
}

.footerSocial:hover{
  transform: translateY(-2px);
  box-shadow: 0 14px 24px rgba(0,0,0,.18);
  border-color: rgba(255,255,255,.16);
}

.footerSocial:hover::before{
  left: 130%;
  opacity: 1;
}

.footerSocial--facebook:hover{ color: #8ab4ff; }
.footerSocial--instagram:hover{ color: #ff7bc2; }
.footerSocial--youtube:hover{ color: #ff8a8a; }
.footerSocial--tiktok:hover{ color: #ffffff; }