.cta {
  padding: clamp(3rem, 6vw, 4.5rem) clamp(1.25rem, 3vw, 2.5rem) 1rem;
}

.cta__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 72rem;
  width: 100%;
  margin-inline: auto;
  padding: clamp(2.75rem, 6vw, 4.5rem) clamp(1.5rem, 4vw, 3rem);
  border-radius: 1.5rem;
  background: var(--accent);
  text-align: center;
}

.cta__title {
  max-width: 28rem;
  font-size: clamp(1.65rem, 3.4vw, 2.35rem);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.15;
  color: #06130a;
}

.cta__sub {
  max-width: 28rem;
  margin-top: 0.85rem;
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(6, 19, 10, 0.62);
}

.cta__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.8rem;
}

.cta__btn,
.cta__ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 2.5rem;
  padding-inline: 1.25rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 500;
  text-decoration: none;
  transition: filter 0.2s ease, background-color 0.2s ease,
    border-color 0.2s ease;
}

.cta__btn {
  background: #06130a;
  color: var(--ink);
}

.cta__ghost {
  color: #06130a;
  background: transparent;
  border: 1px solid rgba(6, 19, 10, 0.28);
}

@media (hover: hover) {
  .cta__btn:hover {
    filter: brightness(1.2);
  }

  .cta__ghost:hover {
    border-color: rgba(6, 19, 10, 0.55);
  }
}
