/* Футер */
.footer {
  background: #333333;
  padding: 40px var(--page-pad) 32px;
  margin-top: 60px;
}
.footer__inner {
  max-width: var(--content-w);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.footer__top {
  display: grid;
  grid-template-columns: 1.5fr auto 1fr;
  align-items: center;
  gap: 40px;
}
.footer__logo {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  white-space: nowrap;
  flex-shrink: 0;
}
.footer__logo-red { color: var(--red); }
.footer__nav {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: center;
}
.footer__nav a {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,.75);
  transition: color .2s;
}
.footer__nav a:hover { color: #fff; }
.footer__callback {
  height: 40px;
  padding: 0 24px;
  background: var(--red);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  font-family: 'Roboto', sans-serif;
  border-radius: 55px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  justify-self: end;
  transition: background .2s;
}
.footer__callback:hover { background: #cc0000; }
.footer__brands {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__brands-row {
  display: flex;
  justify-content: space-between;
}
.footer__brands-row span {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,.3);
}
.footer__sep {
  height: 1px;
  background: rgba(255,255,255,.1);
}
.footer__contacts {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.footer__contacts span {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,.85);
}
.footer__legal {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer__legal p {
  font-size: 11px;
  color: rgba(255,255,255,.35);
  line-height: 1.6;
}
.footer__licenses {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.footer__licenses p {
  font-size: 11px;
  color: rgba(255,255,255,.3);
  line-height: 1.5;
}
