/* ================================================
   CTA
   ================================================ */
.cta-section {
  background: var(--ot-dark);
  padding: var(--ot-space-3xl) 0;
  position: relative;
  overflow: hidden;
}

.cta-bg-shape {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(232,123,30,0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(196,95,0,0.06) 0%, transparent 60%);
  pointer-events: none;
}

.cta-box {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}

.cta-title {
  font-size: var(--ot-fs-h2);
  margin-bottom: var(--ot-space-md);
}

.cta-title span { color: var(--ot-orange); }

.cta-text {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  margin-bottom: var(--ot-space-xl);
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: var(--ot-space-md);
  flex-wrap: wrap;
}

@media (max-width: 575px) {
  .cta-actions { flex-direction: column; align-items: center; }
}
