﻿/* cta Button */
.btn-cta {
    background: var(--fsw-red);
    border: none;
    font-weight: 600;
    border-radius: 10px;
    padding: .75rem 1.6rem;
    color: white;
    transition: 0.25s ease;
    box-shadow: 0 0 0px rgba(230,57,70,0.0);
}

    .btn-cta:hover {
        filter: brightness(.92);
        transform: translateY(-2px);
        box-shadow: 0 6px 22px rgba(230,57,70,0.45);
    }

.btn-outline-light {
    padding: .75rem 1.6rem;
    border: 2px solid rgba(255,255,255,0.55);
    border-radius: 8px;
    color: white;
    font-weight: 500;
    transition: 0.3s ease;
}

    .btn-outline-light:hover {
        background: rgba(255,255,255,0.12);
        border-color: white;
        transform: translateY(-2px);
    }