.btn {
    border: 0;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 46px;
    padding: 0 28px;
    border-radius: 14px;
    font-weight: 700;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
    color: #fff;
    background: linear-gradient(135deg, #0056ff, #003ee4);
    box-shadow: 0 12px 24px rgba(0, 82, 255, .22);
}
.btn-outline {
    color: var(--color-blue);
    background: #fff;
    border: 1px solid var(--color-blue);
}
.btn-light {
    color: var(--color-navy);
    background: #fff;
    border: 1px solid #c8d2e6;
}
.btn-wide { min-width: 238px; min-height: 64px; }
.arrow { font-size: 28px; line-height: 0; }
