.footer-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 64px;
  padding: 0 0 52px;
  border-bottom: 1px solid #474747;
}

.footer-cta-copy {
  max-width: 680px;
}

.footer-cta-kicker {
  margin: 0 0 10px;
  color: var(--primary-light);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .17em;
}

.footer-cta h2 {
  margin: 0 0 10px;
  color: #fff;
  font-size: 34px;
  line-height: 1.25;
}

.footer-cta-copy > p:last-child {
  margin: 0;
  color: #aaa;
  font-size: 15px;
}

.footer-cta-button {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 48px;
  padding: 12px 20px;
  background: var(--primary);
  color: #1f1c17;
  font-size: 14px;
  font-weight: 800;
  transition: background .2s ease, transform .2s ease;
}

.footer-cta-button:hover {
  background: var(--primary-light);
  transform: translateY(-1px);
}

.footer-cta-button span {
  font-size: 20px;
  line-height: 1;
}

@media (max-width: 700px) {
  .footer-cta {
    align-items: flex-start;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 48px;
    padding-bottom: 40px;
  }

  .footer-cta h2 {
    font-size: 28px;
  }

  .footer-cta-button {
    width: 100%;
  }
}
