.qp-footer {
  background: var(--color-near-black);
  color: oklch(60% 0.01 259);
  margin-top: 0;
}

.qp-footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 64px var(--section-pad-h) 48px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
}

/* Footer logo variant */
.qp-logo--footer .qp-logo-inner {
  background: var(--color-near-black);
}
.qp-logo--footer .qp-logo-wordmark {
  color: var(--color-white);
}

.qp-footer-tagline {
  font-size: 13.5px;
  color: oklch(55% 0.01 259);
  margin-top: 16px;
  line-height: 1.6;
}

.qp-footer-heading {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-white);
  margin-bottom: 16px;
}

.qp-footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.qp-footer-links a {
  font-size: 13.5px;
  color: oklch(58% 0.01 259);
  text-decoration: none;
  transition: color 0.15s;
}
.qp-footer-links a:hover { color: var(--color-white); }

/* Bottom bar */
.qp-footer-bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 24px var(--section-pad-h) 32px;
  border-top: 1px solid oklch(30% 0.01 259);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.qp-footer-copy {
  font-size: 12px;
  color: oklch(50% 0.01 259);
}

.qp-footer-disclaimer {
  font-size: 11.5px;
  color: oklch(42% 0.01 259);
  max-width: 900px;
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 900px) {
  .qp-footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

@media (max-width: 560px) {
  .qp-footer-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}
