.cta {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 120px 20px;
  text-align: center;
  color: var(--color-light);
}

.cta__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 0;
}

.cta__container {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.cta__title {
  font-size: clamp(28px, 4vw, 42px);
  margin-bottom: 1rem;
  color: var(--color-accent);
}

.cta__subtitle {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  line-height: 1.6;
  color: var(--color-light);
}

.cta__contact {
  margin-top: 2.5rem;
  font-size: 1rem;
  line-height: 1.6;
}

.cta__contact a {
  color: var(--color-light);
  text-decoration: underline;
  transition: opacity 0.3s ease;
}

.cta__contact a:hover {
  opacity: 0.8;
}

.cta__contact p strong {
  color: var(--color-accent);
}

.cta__actions .button-alt {
  border: 1px solid var(--color-accent);
}
