.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 22px;
    border-radius: 14px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition:
        background .25s ease,
        color .25s ease,
        box-shadow .25s ease,
        transform .2s ease;
    user-select: none;
}

.btn-primary {
    background: linear-gradient( 180deg, #3d78a5 0%, #2f5f86 100%
    );
    color: white;
    border: none;
    box-shadow: 0 6px 14px rgba(47,95,134,.18), 0 14px 28px rgba(47,95,134,.18);
}

.btn-primary:hover {

    transform: translateY(-3px);

    box-shadow:
        0 10px 18px rgba(47,95,134,.20),
        0 20px 34px rgba(47,95,134,.28);
}

.btn-soft {
    background: #fff8ec;
    color: #74522d;
    border: 1px solid #ecd4ad;
    box-shadow: 0 4px 10px rgba(100,80,40,.06);
}

.btn-soft:hover {
    background: #fff3df;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(100,80,40,.10);
}

.btn-outline {

    background: white;
    color: #2f5f86;
    border: 1px solid #bdd4e6;
    box-shadow: 0 4px 12px rgba(0,0,0,.05);
}

.btn-outline:hover {
    background: #edf5fb;
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(47,95,134,.15);
}

.btn-danger {
    background: #fff1f1;
    color: #b13a3a;
    border: 1px solid #f0b8b8;
}

.btn-danger:hover {
    background: #ffe0e0;
    transform: translateY(-2px);
}

.btn-lg {

    min-height: 68px;
    font-size: 18px;
    font-weight: 800;
    border-radius: 16px;
}

.btn-full {
    width: 100%;
}