/* -- CLOSING CTA -- */
.cta-final {
  position: relative;
  z-index: 1;
  background: var(--ink);
  padding: 8rem 5vw;
  text-align: center;
  overflow: hidden;
}

.cta-final::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 60% 55% at 50% 0%,
    rgba(49, 151, 149, 0.2),
    transparent
  );
  pointer-events: none;
}

.cta-inner {
  position: relative;
  max-width: 680px;
  margin: 0 auto;
}

.cta-final h2 {
  font-family: "Processity", serif;
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 1.25rem;
}
.cta-final h2 em {
  font-style: italic;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.45);
}

.cta-final p {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-btn-primary {
  padding: 0.9rem 2.5rem;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 999px;
  font-family: "Outfit", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.15s,
    box-shadow 0.2s;
}
.cta-btn-primary:hover {
  background: var(--teal-700);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(49, 151, 149, 0.45);
}

.cta-btn-outline {
  display: inline-block;
  padding: 0.9rem 2.5rem;
  background: transparent;
  color: rgba(255, 255, 255, 0.75);
  border: 1.5px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  font-family: "Outfit", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition:
    border-color 0.2s,
    color 0.2s,
    transform 0.15s;
}
.cta-btn-outline:hover {
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
  transform: translateY(-2px);
}

