/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    text-decoration: none;
    white-space: nowrap;
}
.btn-primary {
    background: linear-gradient(135deg, #f97316, #e8734a);
    color: #fff;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
}
.btn-primary:hover {
    background: linear-gradient(135deg, #ea580c, #c2693d);
    box-shadow: 0 6px 25px rgba(249, 115, 22, 0.45);
    transform: translateY(-2px);
}
.btn-secondary {
    background: #fff;
    color: #f97316;
    border: 2px solid #f97316;
}
.btn-secondary:hover {
    background: #fff7ed;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.15);
}
