/* ============================================
   Footer
   ============================================ */

.footer-wrap {
  padding: 0 1rem 1rem;
}
.footer-box {
  background: #1a1f2e;
  border-radius: 20px;
  max-width: none;
  margin: 0;
  padding: 3.5rem clamp(1.25rem, 4vw, 4rem);
}
.footer-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: 1fr auto;
  gap: 4rem; align-items: start;
}
.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.6rem; font-weight: 700; text-decoration: none;
  color: var(--white);
  display: block; margin-bottom: 1.25rem;
}
.footer-logo .fox { color: var(--accent-orange); }
.footer-legal {
  font-size: 0.8rem; color: rgba(255,255,255,0.45);
  line-height: 1.7;
}
.footer-legal a { color: var(--blue); text-decoration: none; }
.footer-legal a:hover { color: var(--white); }
.footer-badges {
  display: flex; gap: 1rem;
  margin-top: 1.25rem;
}
.footer-cert-logo {
  height: 40px; width: auto; display: block; opacity: 0.75;
}
.footer-badge-placeholder {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 2px;
  color: rgba(255,255,255,0.35);
  font-size: 0.5rem; font-weight: 600;
  font-family: var(--font-heading);
}
.footer-right {
  display: flex; flex-direction: column; gap: 0.6rem;
  text-align: right;
}
.footer-right-title {
  font-family: var(--font-heading);
  font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white);
  margin-bottom: 0.4rem;
}
.footer-right a {
  font-size: 0.82rem; color: rgba(255,255,255,0.45);
  text-decoration: none; transition: color 0.2s;
}
.footer-right a:hover { color: var(--white); }
.footer-bottom {
  max-width: var(--max-w); margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  display: flex; justify-content: center; gap: 2rem;
}
.footer-bottom a {
  font-size: 0.75rem; color: rgba(255,255,255,0.35);
  text-decoration: none; transition: color 0.2s;
}
.footer-bottom a:hover { color: var(--white); }
