/* =========================
   FOOTER — DARK PREMIUM
========================= */

.footer{
  background:
    linear-gradient(
      to bottom,
      #0f172a 0%,
      #020617 100%
    );
  color: rgba(255,255,255,0.78);
  padding-top: 64px;
}

/* =========================
   GRID
========================= */

.footer__grid{
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 32px;
  padding-bottom: 48px;
}

@media (max-width: 980px){
  .footer__grid{
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px){
  .footer__grid{
    grid-template-columns: 1fr;
  }
}

/* =========================
   BRAND
========================= */

.footer__brandLink{
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  margin-bottom: 14px;
}

.footer__brandLogo{
  width: 44px;
  height: 44px;
  display: block;
  flex: 0 0 auto;
  border-radius: 12px;
  background-color: #ebeaea;

  /* лёгкая премиум-подсветка */
  box-shadow:
    0 18px 50px rgba(0,0,0,0.35),
    0 0 0 1px rgba(255,255,255,0.08);
}

.footer__brandText{
  display: grid;
  gap: 2px;
}

.footer__logo{
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #ffffff;
  line-height: 1.1;
}

.footer__tagline{
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

.footer__desc{
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255,255,255,0.65);
  max-width: 380px;
}

/* =========================
   NAV
========================= */

.footer__title{
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin: 0 0 14px;
}

.footer__list{
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.footer__list a{
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color .2s ease, transform .2s ease;
  display: inline-flex;
}

.footer__list a:hover{
  color: #f97316;
  transform: translateX(2px);
}

/* =========================
   CONTACTS
========================= */

.footer__contacts{
  display: grid;
  gap: 10px;
}

.footer__contact{
  font-size: 14px;
  font-weight: 700;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  transition: color .2s ease;
}

.footer__contact:hover{
  color: #ffffff;
}

.footer__contact--wa{
  color: #f97316;
}

/* =========================
   BOTTOM
========================= */

.footer__bottom{
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 16px 0 18px;
}

.footer__bottom-inner{
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 13px;
  color: rgba(255,255,255,0.45);
}

@media (max-width: 560px){
  .footer__bottom-inner{
    flex-direction: column;
    text-align: center;
  }
}
