.footer {
  width: 100%;
  padding: 60px 20px 30px;
  background: rgba(0,0,0,0.85);
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer__container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: wrap;
}

.footer__brand {
  max-width: 320px;
}

.footer__logo {
  margin: 0 0 10px 0;
  font-size: 1.6rem;
}

.footer__description {
  opacity: 0.7;
  line-height: 1.6;
}

.footer__links {
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
}

.footer__column h4 {
  margin-bottom: 15px;
  font-size: 1rem;
}

.footer__column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.footer__column a {
  text-decoration: none;
  color: inherit;
  opacity: 0.7;
  transition: opacity 0.2s ease;
}

.footer__column a:hover {
  opacity: 1;
}

.footer__bottom {
  margin-top: 50px;
  padding-top: 20px;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.08);
  opacity: 0.6;
  font-size: 0.85rem;
}