/* === FOOTER === */

.fb-footer {
  position: relative;
  background-color: var(--fb-ft-neutral-950);
  color: rgba(255, 255, 255, 0.85);
  padding: 80px 0px 40px;
  font-family: var(--fb-ft-font-body);
  -webkit-font-smoothing: antialiased;
  overflow: hidden;
}

.fb-footer *, .fb-footer ::before, .fb-footer ::after {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}

.fb-footer a, .fb-footer a:link, .fb-footer a:visited {
  text-decoration: none !important;
  color: inherit !important;
}

.fb-footer__spectrogram {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.3;
  pointer-events: none;
}

.fb-footer__inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0px auto;
  padding: 0px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.fb-footer__logo img {
  height: 36px;
  width: auto;
  display: block;
}

.fb-footer__tagline {
  font-family: var(--fb-ft-font-heading);
  font-size: 0.875rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.06em;
  text-align: center;
}

.fb-footer__nav {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  flex-wrap: wrap;
  justify-content: center;
}

.fb-footer__nav-link, .fb-footer .fb-footer__nav-link, a.fb-footer__nav-link {
  font-family: var(--fb-ft-font-heading);
  font-size: 0.9375rem;
  font-weight: 700;
  transition: color 0.2s;
  white-space: nowrap;
  color: rgba(255, 255, 255, 0.85) !important;
}

.fb-footer__nav-link:hover, .fb-footer .fb-footer__nav-link:hover, a.fb-footer__nav-link:hover {
  color: var(--fb-ft-secondary-500) !important;
}

.fb-footer__social {
  display: flex;
  align-items: center;
  gap: 12px;
}

.fb-footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: background-color 0.2s, transform 0.2s;
}

.fb-footer__social-link:hover {
  background-color: var(--fb-ft-primary-600);
  transform: translateY(-2px);
}

.fb-footer__social-link img {
  width: 20px;
  height: 20px;
  display: block;
}

.fb-footer__divider {
  width: 100%;
  max-width: 480px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
}

.fb-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 480px;
}

.fb-footer__copyright {
  font-family: var(--fb-ft-font-heading);
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.35);
  text-align: center;
}

.fb-footer__signal-badge {
  font-family: var(--fb-ft-font-heading);
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(237, 140, 42, 0.4);
}

/* === RESPONSIVE === */

@media (max-width: 991px) {
  .fb-footer__inner {
    padding: 0px 32px;
  }
  .fb-footer__nav {
    gap: 24px;
  }
}

@media (max-width: 767px) {
  .fb-footer {
    padding: 64px 0px 32px;
  }
  .fb-footer__inner {
    padding: 0px 24px;
    gap: 28px;
  }
  .fb-footer__nav {
    flex-direction: column;
    gap: 0px;
  }
  .fb-footer__nav-link {
    display: block;
    padding: 10px 0px;
    font-size: 1rem;
  }
  .fb-footer__social {
    gap: 10px;
  }
  .fb-footer__bottom {
    flex-direction: column;
    gap: 8px;
  }
}

@media (max-width: 479px) {
  .fb-footer {
    padding: 56px 0px 28px;
  }
  .fb-footer__inner {
    padding: 0px 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .fb-footer__spectrogram {
    display: none;
  }
}
