/* ═══════════ FOOTER ═══════════ */
.footer {
  background: #060e18;
  color: white;
  padding: 70px 40px 0;
}

.footer-grid {
  max-width: var(--container-narrow);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-brand img { height: 50px; margin-bottom: 18px; }

.footer-brand p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  margin-bottom: 24px;
  font-weight: 300;
}

.footer-socials { display: flex; gap: 12px; }

.footer-socials a {
  width: 42px;
  height: 42px;
  background: rgba(255,255,255,0.06);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 1rem;
  transition: var(--transition-fast);
}

.footer-socials a:hover { background: var(--ens-green); color: white; transform: translateY(-3px); }

.footer-col h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 22px; }
.footer-col li { margin-bottom: 12px; }

.footer-col a {
  color: rgba(255,255,255,0.4);
  font-size: 0.88rem;
  font-weight: 300;
  transition: var(--transition-fast);
}

.footer-col a:hover { color: var(--ens-green-light); padding-left: 4px; }

.footer-address li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  color: rgba(255,255,255,0.4);
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.6;
}

.footer-address i { color: var(--ens-green); margin-top: 3px; width: 16px; flex-shrink: 0; }

.footer-bottom {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.3);
  font-weight: 300;
}

.footer-bottom a { color: var(--ens-green-light); }
