/* ── Closing CTA ───────────────────────────────────────────────
   Last thing before the footer. Dark, so it reads as a full stop
   after the light pricing section above it.
──────────────────────────────────────────────────────────────── */
.closing-cta {
  background: linear-gradient(145deg, var(--palette-1) 0%, var(--palette-2) 100%);
  padding: var(--space-3xl) var(--gutter);
  text-align: center;
}

.closing-cta__inner {
  max-width: var(--content-narrow);
  margin: 0 auto;
}

.closing-cta__headline {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: white;
  margin-bottom: var(--space-md);
}

.closing-cta__body {
  font-size: var(--text-xl);
  font-weight: 300;
  line-height: 1.6;
  color: rgba(255,255,255,0.7);
  margin-bottom: var(--space-xl);
}

.closing-cta__actions {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 480px) {
  .closing-cta__actions .btn {
    flex: 1 1 100%;
    justify-content: center;
  }
}
