.funnel-stepper {
    font-family: 'Inter', Arial, sans-serif;
    max-width: 1100px;
    margin: 60px auto 100px auto;
    padding: 0 20px;
}

.funnel-step-title {
    font-size: 2.3rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 8px;
    margin-top: 40px;
}

.funnel-multiselect-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
    justify-content: center;
    margin: 54px 0 34px 0;
}

.funnel-choice {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    border: 3px solid #111;
    border-radius: 32px;
    background: #fff;
    font-size: 2.1rem;
    font-weight: 700;
    min-width: 340px;
    min-height: 320px;
    padding: 36px 28px 22px 28px;
    margin: 0 0 16px 0;
    box-sizing: border-box;
    cursor: pointer;
    transition: border-color .17s, box-shadow .13s, color .13s, background .13s;
    color: #111;
    text-align: center;
    position: relative;
    outline: none;
}

.funnel-choice .fa {
    color: inherit;
    font-size: 3.7rem;
    margin-bottom: 12px;
    transition: color .15s;
}

.funnel-choice.active {
    border-color: #b3d631;
    background: #faffeb;
    color: #b3d631;
}
.funnel-choice.multi-active .fa-check-circle {
    color: #b3d631;
    font-size: 3.3rem;
    margin-bottom: 20px;
    margin-top: -12px;
    display: block;
}
.funnel-choice .funnel-checkbox,
.funnel-choice .funnel-radio {
    display: none;
}

/* SLIDER Styling */
.funnel-slider-wrap {
    width: 95%;
    margin: 0 auto 30px auto;
}
.funnel-slider