/* ==========================================================================
   VORA — "Start your journey" CTA section
   ========================================================================== */

.cta {
  position: relative;
  padding: 120px 10px;
  overflow: hidden;
  color: var(--text-on-dark);
}

.cta__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.cta__overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1;
}

.cta__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
}

.cta__badge {
  display: inline-flex;
  background-color: var(--bg-beige);
  color: var(--text-primary);
  border-radius: 20px;
  padding: 8px 20px;
  font-size: 14px;
  font-weight: 500;
}

.cta__title {
  font-size: 42px;
  font-weight: 500;
  line-height: 1.2;
  color: var(--text-on-dark);
  text-align: center;
}

.cta__buttons {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 10px;
}

.cta__btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-accent);
  color: var(--color-accent-ink);
  border-radius: 10px;
  padding: 18px 24px;
  font-size: 16px;
  font-weight: 600;
}

.cta__btn-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--text-on-dark);
  font-size: 16px;
  font-weight: 600;
  padding: 18px 24px;
  border-radius: 10px;
  box-shadow: inset 0 0 0 1.5px rgba(255, 255, 255, 0.6);
  transition: background-color 0.2s ease;
}

.cta__btn-link:hover {
  background-color: rgba(255, 255, 255, 0.12);
}

@media (max-width: 809px) {
  .cta {
    padding: 80px 20px;
  }

  .cta__title {
    font-size: 30px;
  }
}
