.cta{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:10px;
    background:linear-gradient(180deg,#ff8c2b,#ff6a00);
    color:#fff;
    text-decoration:none;
    font-weight:800;
    font-size:17px;
    padding:16px 20px;
    border-radius:14px;
    box-shadow:0 0 20px rgba(255,122,26,.45);
    transition:all .3s ease;
    animation:pulse 1.8s infinite;
}

.cta:hover{
    transform:scale(1.06);
    box-shadow:0 0 35px rgba(255,122,26,.8);
}

@keyframes pulse{
    0%{
        transform:scale(1);
        box-shadow:0 0 20px rgba(255,122,26,.45);
    }
    50%{
        transform:scale(1.05);
        box-shadow:0 0 35px rgba(255,122,26,.8);
    }
    100%{
        transform:scale(1);
        box-shadow:0 0 20px rgba(255,122,26,.45);
    }
}