/**
 * Process Hub CTA — shared across service pages
 */
.process-hub-cta { background: #f8fafc; }
.process-hub-cta__card {
  position: relative; overflow: hidden; border-radius: 1.25rem;
  padding: 2.5rem 2rem; text-align: center;
  background: linear-gradient(145deg, rgba(16, 165, 245, 0.08), rgba(11, 31, 58, 0.04));
  border: 1px solid rgba(16, 165, 245, 0.22);
  box-shadow: 0 16px 40px rgba(11, 31, 58, 0.08);
}
@media (min-width: 640px) { .process-hub-cta__card { padding: 3rem 2.5rem; } }
.process-hub-cta__glow {
  position: absolute; inset: -20% auto auto 50%; transform: translateX(-50%);
  width: 60%; height: 70%; pointer-events: none;
  background: radial-gradient(circle, rgba(16, 165, 245, 0.18), transparent 68%);
}
.process-hub-cta__content { position: relative; z-index: 1; max-width: 40rem; margin: 0 auto; }
.process-hub-cta__badge {
  display: inline-flex; align-items: center; gap: 0.4rem; padding: 0.35rem 0.85rem;
  border-radius: 999px; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  color: #10A5F5; background: rgba(16, 165, 245, 0.12); border: 1px solid rgba(16, 165, 245, 0.28); margin-bottom: 1rem;
}
.process-hub-cta__title {
  font-size: clamp(1.65rem, 3vw, 2.25rem); font-weight: 800; color: #0b1f3a; margin: 0 0 0.75rem; line-height: 1.2;
}
.process-hub-cta__desc { font-size: 1.05rem; line-height: 1.7; color: #475569; margin: 0 0 1.5rem; }
.process-hub-cta__btn {
  display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.85rem 1.5rem; border-radius: 0.65rem;
  font-size: 0.92rem; font-weight: 700; color: #fff; background: #10A5F5;
  box-shadow: 0 8px 24px rgba(16, 165, 245, 0.32); transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.process-hub-cta__btn:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(16, 165, 245, 0.38); }
.process-hub-cta__btn:focus-visible { outline: 2px solid #10A5F5; outline-offset: 2px; }
