:root {
  --brand: #47F138;
}

.footer {
  position: relative;
  width: 100%;
  background: rgba(10, 14, 20, 0.1);
  backdrop-filter: blur(4px);
  border-top: 1px solid rgba(255,255,255,0.05);
  color: #e9edf0;
  transition: backdrop-filter 0.8s ease, background 0.8s ease;
  overflow: hidden;
  z-index: 10;
}

.footer.revealed {
  background: rgba(10, 14, 20, 0.85);
  backdrop-filter: blur(24px);
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 80px 40px;
  flex-wrap: wrap;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.footer-logo {
  height: 40px;
  width: auto;
  filter: drop-shadow(0 0 2px rgba(71,241,56,0.25));
}

.footer-brand-text {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-brand-text .divider {
  width: 2px;
  height: 25px;
  background: rgba(255,255,255,0.15);
  border-radius: 2px;
}

.footer-brand-text h2 {
  margin: 0;
  color: var(--brand);
  font-size: 1.6rem;
  font-weight: 700;
}

.footer-left p {
  opacity: 0.8;
  margin-bottom: 16px;
}

.footer-socials {
  display: flex;
  gap: 14px;
  margin-bottom: 16px;
}

.footer-socials img {
  height: 22px;
  width: 22px;
  filter: brightness(0) saturate(100%) invert(79%) sepia(88%) saturate(532%) hue-rotate(65deg) brightness(105%) contrast(97%);
  opacity: 0.9;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.footer-socials img:hover {
  transform: scale(1.05);
  opacity: 1;
}

/* FOOTER LINKS */
.footer-links {
  display: flex;
  gap: 60px;
}

.footer-links h4 {
  font-weight: 600;
  color: #e9edf0;
  margin-bottom: 10px;
}

.footer-links a {
  display: block;
  color: rgba(233, 237, 240, 0.8);
  text-decoration: none;
  font-size: 0.9rem;
  margin-bottom: 6px;
  transition: color 0.25s ease;
}

.footer-links a:hover {
  color: var(--brand);
}

.footer small {
  display: block;
  margin-top: 16px;
  opacity: 0.6;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .footer-inner {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .footer-links {
    flex-direction: column;
    gap: 30px;
  }

  .footer-brand-text .divider {
    display: none;
  }
}
