/* ==========================================================================
   Section: Service / CTA. Reuses the home CTA layout (included here so the
   Service page is self-contained) + the service-specific pricing note.
   ========================================================================== */

.cta { background: var(--navy); position: relative; overflow: hidden; }
.cta::before {
	content:''; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
	width: 900px; height: 420px;
	background: radial-gradient(ellipse, rgba(24,173,231,0.18), transparent 65%);
	pointer-events: none;
}
.cta-inner { position: relative; display: flex; flex-direction: column; align-items: center; text-align: center; gap: 24px; }
.cta h2 { color: #fff; font-size: clamp(32px, 3.6vw, 50px); max-width: 760px; }
.cta p { color: rgba(255,255,255,0.72); max-width: 560px; }
.cta-actions { display: flex; flex-direction: column; align-items: center; gap: 14px; margin-top: 6px; }
.cta-price { font-size: 14px; color: rgba(255,255,255,0.5); margin-top: 4px; }
