html { scroll-padding-bottom: 95px; }
body { padding-bottom: 78px; }

footer {
  position: fixed;
  inset: auto 0 0;
  z-index: 90;
  padding: 11px 0;
  background: rgba(7, 9, 20, .94);
  border-top: 1px solid rgba(128, 103, 245, .22);
  box-shadow: 0 -12px 35px rgba(0, 0, 0, .25);
  backdrop-filter: blur(18px);
}

.footer-inner { display: flex; align-items: center; gap: 25px; }
.footer-inner .brand { margin-right: auto; }
.footer-brand .brand-symbol { width: 35px; height: 35px; }
.footer-contacts { display: flex; align-items: center; gap: 7px; }
.footer-contacts a {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 11px;
  color: var(--soft);
  border: 1px solid transparent;
  border-radius: 9px;
  font-size: 10px;
  transition: .2s;
}
.footer-contacts a:hover { color: #fff; background: rgba(128, 103, 245, .09); border-color: rgba(128, 103, 245, .2); }
.footer-contacts span { color: var(--cyan); font-size: 14px; }
.footer-contacts b { font-weight: 500; }
.footer-inner p { width: auto; margin: 0 0 0 auto; color: var(--muted); font-size: 9px; white-space: nowrap; }

@media (max-width: 900px) {
  body { padding-bottom: 71px; }
  .footer-inner { flex-wrap: nowrap; gap: 8px; }
  .footer-brand span, .footer-inner p { display: none; }
  .footer-inner .brand { margin-right: 2px; }
  .footer-contacts { width: 100%; justify-content: space-between; }
  .footer-contacts a { padding-inline: 7px; }
}

@media (max-width: 600px) {
  body { padding-bottom: 66px; }
  .footer-brand { display: none; }
  .footer-contacts { gap: 2px; }
  .footer-contacts a { min-height: 42px; padding: 0 8px; }
  .footer-contacts a b { display: none; }
  .footer-contacts span { font-size: 17px; }
  .footer-contacts a::after { font-size: 9px; font-weight: 600; }
  .footer-contacts a:nth-child(1)::after { content: "WhatsApp"; }
  .footer-contacts a:nth-child(2)::after { content: "E-mail"; }
  .footer-contacts a:nth-child(3)::after { content: "Instagram"; }
}
