/* =====================================================
   CTA Deploy — Reusable component
   ===================================================== */

.cta-deploy-section {
    position: relative;
}

.cta-deploy {
    text-align: center;
    position: relative;
}

.cta-deploy::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 400px;
    background: radial-gradient(circle, rgba(var(--primary-color-rgb), 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.cta-deploy__title {
    font-size: clamp(2.25rem, 5vw, 4rem);
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--text-heading);
}

.cta-deploy__text {
    font-size: 1.0625rem;
    color: var(--text-body);
    margin-bottom: 40px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}
