/* ============ FOOTER ============ */
.footer {
  background: var(--dark-bg);
  padding: 56px 0 0;
  color: rgba(255,255,255,0.7);
}

.footer .container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer .container.bottom-container{
    display: block;
}

.footer__brand img {
  height: 48px;
  margin-bottom: 16px;
  filter: brightness(120);
}

.footer__brand-desc {
  font-size: 13.1px;
  line-height: 1.625;
  color: rgba(255,255,255,0.6);
  margin-bottom: 8px;
}

.footer__brand-vat {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}

.footer__col-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 12.5px;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 1.25px;
  margin-bottom: 16px;
}

.footer__links {
  list-style: none;
}

.footer__links li {
  margin-bottom: 8px;
}

.footer__links a {
  font-size: 13.3px;
  color: rgba(255,255,255,0.7);
  transition: color 0.25s ease;
}

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

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 48px;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}

.footer__bottom-links {
  display: flex;
  gap: 16px;
}

.footer__bottom-links a {
  color: rgba(255,255,255,0.4);
  transition: color 0.25s ease;
}

.footer__bottom-links a:hover {
  color: #fff;
}

@media (max-width: 1024px) {
  .footer .container { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .footer .container { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; gap: 8px; text-align: center; }
}
