.footer {
  position: relative;
  background: linear-gradient(180deg, #0d1722 0%, #111d2a 100%);
  color: var(--color-footer-text);
  padding-top: clamp(3rem, 6vw, 5rem);
}
.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(233, 30, 140, 0.85),
    rgba(10, 191, 188, 0.72),
    rgba(68, 214, 138, 0.72)
  );
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-logo {
  height: 46px;
  width: auto;
  margin-bottom: 1rem;
  opacity: 1;
  filter: none;
}
.footer-tagline {
  font-size: 0.88rem;
  color: rgba(184, 195, 204, 0.7);
  line-height: 1.6;
}
.footer-nav-title {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 1rem;
}
.footer-nav,
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer-link {
  font-size: 0.9rem;
  color: var(--color-footer-text);
  transition: color var(--t-fast);
}
.footer-link:hover {
  color: var(--color-pink);
}
.footer-zone {
  font-size: 0.85rem;
  color: rgba(184, 195, 204, 0.6);
  margin-top: 0.25rem;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.footer-copyright {
  font-size: 0.85rem;
  color: rgba(184, 195, 204, 0.5);
}
.footer-legal {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.85rem;
}
.footer-legal span {
  color: rgba(184, 195, 204, 0.3);
}
