.proe-fitcheck {
    background: #f7f8fa;
}

.proe-fitcheck__intro {
    max-width: 760px;
    margin: 0 auto 38px;
    text-align: center;
}

.proe-fitcheck__intro h2 {
    margin: 12px 0 16px;
}

.proe-fitcheck__intro p {
    margin: 0;
    color: #667085;
    line-height: 1.7;
}

.proe-fitcheck__card {
    max-width: 780px;
    margin: 0 auto;
    padding: 34px;
    border: 1px solid #e4e7ec;
    border-radius: 22px;
    background: #ffffff;
    box-shadow: 0 18px 55px rgba(16, 24, 40, 0.08);
}

.proe-fitcheck__progress {
    margin-bottom: 34px;
}

.proe-fitcheck__progress-meta {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 10px;
    color: #667085;
    font-size: 14px;
    font-weight: 600;
}

.proe-fitcheck__progress-track {
    height: 8px;
    overflow: hidden;
    border-radius: 999px;
    background: #e9edf2;
}

.proe-fitcheck__progress-bar {
    width: 20%;
    height: 100%;
    border-radius: inherit;
    background: #172033;
    transition: width 0.25s ease;
}

.proe-fitcheck fieldset {
    margin: 0;
    padding: 0;
    border: 0;
}

.proe-fitcheck legend {
    width: 100%;
    margin-bottom: 24px;
    color: #172033;
    font-size: clamp(22px, 3vw, 30px);
    font-weight: 700;
    line-height: 1.25;
}

.proe-fitcheck__select-label,
.proe-fitcheck__other label {
    display: block;
    margin-bottom: 9px;
    color: #344054;
    font-size: 14px;
    font-weight: 700;
}

.proe-fitcheck select,
.proe-fitcheck input[type="text"] {
    width: 100%;
    min-height: 54px;
    padding: 0 15px;
    border: 1px solid #cfd5df;
    border-radius: 11px;
    background: #ffffff;
    color: #172033;
    font: inherit;
}

.proe-fitcheck select:focus,
.proe-fitcheck input[type="text"]:focus {
    border-color: #172033;
    outline: 3px solid rgba(23, 32, 51, 0.10);
}

.proe-fitcheck__other {
    margin-top: 18px;
}

.proe-fitcheck__option {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 11px;
    padding: 15px 16px;
    border: 1px solid #e1e5eb;
    border-radius: 12px;
    background: #ffffff;
    color: #344054;
    cursor: pointer;
    transition:
        border-color 0.15s ease,
        background 0.15s ease;
}

.proe-fitcheck__option:hover {
    border-color: #98a2b3;
    background: #fafbfc;
}

.proe-fitcheck__option:has(input:checked) {
    border-color: #172033;
    background: #f5f7fa;
}

.proe-fitcheck__option input {
    flex: 0 0 auto;
    margin-top: 3px;
}

.proe-fitcheck__error {
    margin: 18px 0 0;
    color: #b42318;
    font-size: 14px;
    font-weight: 600;
}

.proe-fitcheck__navigation {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 30px;
}

.proe-fitcheck__button,
.proe-fitcheck__cta {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
    border: 1px solid #172033;
    border-radius: 10px;
    background: #172033;
    color: #ffffff;
    font: inherit;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
}

.proe-fitcheck__button:hover,
.proe-fitcheck__cta:hover {
    opacity: 0.92;
}

.proe-fitcheck__button--secondary {
    border-color: #d0d5dd;
    background: #ffffff;
    color: #344054;
}

.proe-fitcheck__result h3 {
    margin: 12px 0 14px;
    color: #172033;
    font-size: clamp(25px, 3vw, 34px);
}

.proe-fitcheck__result > p {
    color: #667085;
    line-height: 1.7;
}

.proe-fitcheck__result-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin: 28px 0;
}

.proe-fitcheck__result-grid > div {
    padding: 18px;
    border: 1px solid #e4e7ec;
    border-radius: 12px;
    background: #f9fafb;
}

.proe-fitcheck__result-grid strong,
.proe-fitcheck__result-grid span {
    display: block;
}

.proe-fitcheck__result-grid strong {
    margin-bottom: 8px;
    color: #172033;
}

.proe-fitcheck__result-grid span {
    color: #667085;
    line-height: 1.5;
}

.proe-fitcheck__disclaimer {
    padding: 14px 16px;
    border-left: 3px solid #98a2b3;
    background: #f9fafb;
    font-size: 14px;
}

@media (max-width: 720px) {
    .proe-fitcheck__card {
        padding: 24px 18px;
    }

    .proe-fitcheck__result-grid {
        grid-template-columns: 1fr;
    }

    .proe-fitcheck__navigation {
        flex-direction: column-reverse;
    }

    .proe-fitcheck__button {
        width: 100%;
    }
}

.proe-fitcheck__benefits{
    margin:20px 0 0;
    padding:0;
    list-style:none;
}

.proe-fitcheck__benefits li{
    margin:12px 0;
    font-weight:500;
    color:#344054;
}



/* Repeat Order Check intro layout */

.proe-fitcheck__intro-text {
    margin: 20px auto 0;
    color: #64748b;
    font-size: 1.125rem;
    line-height: 1.5;
    text-align: center;
}

.proe-fitcheck__intro-list {
    width: min(100%, 860px);
    margin: 24px auto 48px;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 14px;
    text-align: left;
}

.proe-fitcheck__intro-list li {
    display: grid;
    grid-template-columns: 24px minmax(0, 1fr);
    gap: 10px;
    align-items: start;
    margin: 0;
    color: #64748b;
    font-size: 1.05rem;
    line-height: 1.55;
}

.proe-fitcheck__intro-list li::before {
    content: "✓";
    font-weight: 700;
    line-height: 1.55;
    text-align: center;
}

.proe-fitcheck__step legend {
    margin-bottom: 30px;
}

@media (max-width: 768px) {
    .proe-fitcheck__intro-text {
        font-size: 1rem;
    }

    .proe-fitcheck__intro-list {
        margin-bottom: 36px;
        gap: 12px;
    }

    .proe-fitcheck__intro-list li {
        grid-template-columns: 20px minmax(0, 1fr);
        gap: 8px;
        font-size: 0.975rem;
    }
}

/* End Repeat Order Check intro layout */


/* Repeat Order Check card */

.proe-fitcheck {
    padding: 96px 24px 112px;
    background: #f8fafc;
}

.proe-fitcheck__card {
    width: min(100%, 980px);
    margin: 0 auto;
    padding: 64px 72px;
    background: #ffffff;
    border: 1px solid rgba(148, 163, 184, 0.24);
    border-radius: 24px;
    box-shadow:
        0 24px 60px rgba(15, 23, 42, 0.08),
        0 4px 16px rgba(15, 23, 42, 0.04);
}

.proe-fitcheck__eyebrow,
.proe-fitcheck__label {
    display: block;
    margin-bottom: 14px;
    color: #64748b;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    line-height: 1.4;
    text-align: center;
    text-transform: uppercase;
}

.proe-fitcheck__card h2 {
    margin-top: 0;
}

@media (max-width: 768px) {
    .proe-fitcheck {
        padding: 64px 16px 80px;
    }

    .proe-fitcheck__card {
        padding: 40px 20px;
        border-radius: 18px;
    }
}

/* End Repeat Order Check card */
