.site-footer.section {
  padding: var(--space-10) 0;
}

.footer-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
  padding: var(--space-7);
}

.footer-cta h2 {
  margin: var(--space-4) 0 var(--space-3);
  font-size: var(--text-2xl);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.footer-cta .section-text,
.footer-cta p.section-text {
  margin: 0;
  max-width: 52ch;
  color: var(--muted);
  line-height: 1.8;
}

.footer-cta h2,
.footer-cta p {
  position: relative;
  z-index: 1;
}

.footer-cta .section-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 0.85rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(251, 191, 36, 0.18);
  background: linear-gradient(135deg, rgba(45, 212, 191, 0.08), rgba(168, 85, 247, 0.06));
  color: var(--muted-strong);
  font-size: var(--text-xs);
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer-cta__actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  min-width: min(100%, 320px);
  justify-content: flex-end;
}

.footer-meta {
  display: flex;
  justify-content: space-between;
  gap: var(--space-4);
  flex-wrap: wrap;
  padding-top: var(--space-5);
}

.footer-meta p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

@media (max-width: 980px) {
  .footer-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-cta__actions {
    justify-content: flex-start;
    width: 100%;
  }
}

@media (max-width: 760px) {
  .site-footer.section {
    padding: var(--space-8) 0;
  }

  .footer-cta {
    padding: var(--space-6);
  }

  .footer-cta__actions {
    flex-direction: column;
  }

  .footer-cta__actions .btn {
    width: 100%;
    justify-content: center;
  }

  .footer-meta {
    flex-direction: column;
    align-items: flex-start;
  }
}
