/* ══════════════════════════════════════════════════════════════════════════════
   CTA
══════════════════════════════════════════════════════════════════════════════ */
.cta-section { background: var(--white); }
.cta-box {
  border-radius: var(--radius-xl);
  padding: 72px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0EA5E9 0%, #1E1B4B 50%, #881337 100%);
}
.cta-bg-img {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1600585154526-990dced4db0d?w=1600&q=80&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
  opacity: 0.08;
}
/* Grid overlay */
.cta-box::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.07) 1px, transparent 1px);
  background-size: 48px 48px;
  z-index: 1;
  pointer-events: none;
}
/* Radial glows */
.cta-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 80% at 80% 20%, rgba(14,165,233,0.22) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 15% 85%, rgba(240,90,90,0.18) 0%, transparent 60%);
  z-index: 1;
}
.cta-box > * { position: relative; z-index: 3; }
.cta-box h2  { color: var(--white); margin-bottom: 14px; }
.cta-box p   {
  color: rgba(255,255,255,0.88);
  margin-bottom: 36px;
  font-size: 1.05rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ─── Responsive ────────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .cta-box { padding: 48px 24px; }
  .cta-actions { flex-direction: column; align-items: center; }
  .cta-actions .btn { width: 100%; max-width: 320px; justify-content: center; }
}
