/* About CTA — light premium, VT brand gradient accent */

.section-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #f0f9ff 0%, #ffffff 45%, #f0fdf4 100%);
    position: relative;
    overflow: hidden;
    text-align: center;
    color: #0f172a;
    border-top: 1px solid #e2e8f0;
}

.cta-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(22, 104, 178, 0.08) 0%, transparent 45%),
        radial-gradient(circle at 80% 50%, rgba(55, 181, 74, 0.08) 0%, transparent 45%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 720px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.cta-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: #0f172a;
}

.cta-text {
    font-size: 1.125rem;
    color: #64748b;
    margin-bottom: 2.5rem;
    line-height: 1.65;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-cta-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #37B54A 0%, #1668B2 100%);
    color: #ffffff;
    padding: 16px 36px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition:
        transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 0.3s ease;
    box-shadow: 0 8px 24px rgba(22, 104, 178, 0.25);
}

.btn-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 36px rgba(22, 104, 178, 0.32);
    color: #fff;
}

.btn-cta-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    color: #0f172a;
    padding: 16px 36px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    border: 2px solid #e2e8f0;
    cursor: pointer;
    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.btn-cta-outline:hover {
    border-color: #1668B2;
    color: #1668B2;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

@media (prefers-reduced-motion: reduce) {
    .btn-cta-primary:hover,
    .btn-cta-outline:hover {
        transform: none;
    }
}
