.footer {
  background: var(--bg-dark);
  padding: 80px 0 32px;
  text-align: center;
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer__headline {
  color: var(--text-white);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  max-width: 700px;
  margin-bottom: 16px;
}

.footer__sub {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
  max-width: 600px;
  margin-bottom: 40px;
}

.footer .btn--cta-light {
  margin-bottom: 60px;
}

.footer__logo {
  margin-bottom: 32px;
}

.footer__logo-img {
  height: 48px;
  width: auto;
}

.footer__bottom {
  width: 100%;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer__bottom p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
}

.footer__links {
  display: flex;
  gap: 24px;
}

.footer__links a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
  transition: color 0.3s ease;
}

.footer__links a:hover {
  color: var(--text-white);
}

@media (max-width: 768px) {
  .footer__bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}
