.footer {
  background: #0b1a2e;
  color: rgba(255,255,255,0.7);
  padding: 60px 0 0;
}

.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer .logo__text { color: var(--white); }

.footer__brand p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  margin-top: 16px;
  line-height: 1.7;
}

.footer__links h4,
.footer__contact h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 18px;
}

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

.footer__links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}

.footer__links a:hover { color: var(--green); }

.footer__contact p {
  font-size: 0.88rem;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer__contact i { width: 16px; color: var(--green); }

.footer__bottom {
  text-align: center;
  padding: 24px 0;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
}

@media (max-width: 768px) {
  .footer__top { grid-template-columns: 1fr; gap: 32px; }
}
