/* ================= FOOTER ================= */

footer {
  position: relative;
  padding: 60px 0 40px;
  text-align: center;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  background: #050505;
  overflow: hidden;
}

/* Glow sutil */
footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at top,
    rgba(0,191,98,.06),
    transparent 65%
  );
  pointer-events: none;
}

footer .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

/* LOGO */
.footer-logo-wrapper {
  margin-bottom: 30px;
}

.footer-logo-link {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  text-decoration: none;
}

.footer-logo-img {
  height: 45px;
  filter: drop-shadow(0 2px 10px rgba(0,191,98,.35));
}

.footer-logo-text {
  font-weight: 800;
  font-size: 1.8rem;
  background: linear-gradient(135deg, #00BF62, #7CFFB6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* TAGLINE */
.footer-tagline {
  max-width: 600px;
  margin: 0 auto 40px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--text-muted);
}

/* LINKS */
.footer-links {
  margin-bottom: 40px;
  font-size: 0.95rem;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  margin: 0 8px;
}

.footer-links a:hover {
  color: var(--primary);
}

/* COPYRIGHT */
.copyright {
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
  font-size: 0.9rem;
  color: var(--text-muted);
}

.copyright-logo-img {
  height: 25px;
  opacity: 0.65;
}
