.land-footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 34px 24px;
}

.land-footer-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.land-footer-top,
.land-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px 24px;
  flex-wrap: wrap;
}

.footer-logo {
  text-decoration: none;
  width: fit-content;
}

.footer-links,
.footer-legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
}

.footer-links {
  justify-content: flex-end;
}

.footer-legal {
  justify-content: flex-end;
}

.footer-links a {
  font-size: 0.78rem;
  color: var(--text2);
  text-decoration: none;
  transition: color .15s ease, opacity .15s ease;
}

.footer-links a:hover {
  color: var(--text);
}

.footer-legal a {
  font-size: 0.72rem;
  color: var(--text3);
  text-decoration: none;
  transition: color .15s ease, opacity .15s ease;
}

.footer-legal a:hover {
  color: var(--text2);
}

.land-footer-divider {
  height: 1px;
  background: var(--border);
  margin: 18px 0 16px;
}

.footer-copy {
  font-size: 0.72rem;
  color: var(--text3);
}

.footer-copy a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-thickness: 1px;
  transition: color .15s ease, opacity .15s ease;
}

.footer-copy a:hover {
  color: var(--text2);
  opacity: 0.9;
}

@media (max-width: 700px) {
  .land-footer-top,
  .land-footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-links,
  .footer-legal {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .final-cta__btn {
    width: 100%;
  }

  .footer-links,
  .footer-legal {
    gap: 14px;
  }
}