#mainWrap {
    background: #fff;
}
.purpose {
    max-width: 900px;
    height: 82vh;
    margin: 10px auto;
    padding: 20px;
    background: #fff;
}
.purpose .title {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 12px;
    text-align: center;
}
.purpose .subtitle {
    font-size: 18px;
    color: #4a5565;
    margin-bottom: 30px;
    text-align: center;
}
.purpose .progress {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.purpose .progress .pages {
    margin-bottom: 20px;
    font-size: 14px;
    color: #4a5565;
}
.purpose .progress .percentage {
    font-size: 14px;
    color: #05c3dd;
}
.purpose .progress-bar {
    width: 100%;
    background-color: #eee;
    border-radius: 8px;
    overflow: hidden;
    height: 10px;
    margin-bottom: 30px;
}
.purpose .progress-bar-fill {
    width: 33%;
    height: 100%;
    background-color: #05c3dd;
    transition: width 0.4s ease-in-out;
}
.purpose .selection {
    background: #fff;
    border-radius: 12px;
    border: 2px solid #ebe6e7;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
    padding: 48px;
}
.purpose .selection-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
}
.purpose .selection-top .icon {
    width: 64px;
    height: 64px;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #05c3dd1a;
    border-radius: 50%;
}
.purpose .selection-top .icon svg {
    color: #05c3dd;
    width: 32px;
    height: 32px;
}
.purpose .question {
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 12px;
}
.purpose .subquestion {
    font-size: 16px;
    color: #4a5565;
}
.purpose .option label {
    border: 2px solid #f0f0f0;
    padding: 24px;
    margin-bottom: 10px;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.purpose .option input[type="radio"] {
    display: none;
}
.purpose .option label:hover {
    border: 2px solid #05c3dd;
    background: #f0fcfc;
}
.purpose .option-title {
    font-weight: bold;
    font-size: 20px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.purpose .option-title svg {
    width: 20px;
    height: 20px;
    color: #05c3dd;
    display: none;
}
.purpose .option-desc {
    font-size: 14px;
    color: #555;
}
.purpose .option label svg.nextsvg {
    display: inline-block;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    color: #888;
    transition: transform 0.4s ease-in-out, color 0.3s ease-in-out;
}
.purpose .option label:hover svg.nextsvg {
    transform: translateX(5px);
    color: #05c3dd;
}
.purpose .option input[type="radio"]:checked + label {
    border: 2px solid #05c3dd;
    background: #f0fcfc;
}
.purpose .option input[type="radio"]:checked + label .option-title svg {
    display: inline-block;
}
.purpose .option input[type="radio"]:checked + label svg.nextsvg {
    transform: translateX(5px);
    color: #05c3dd;
}
.purpose .selection-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}
.purpose .prev-button {
    margin-top: 20px;
    padding: 10px 20px;
    color: #0a0a0a;
    background: #fff;
    border: 1px solid #d1d5dc;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    transition: background 0.2s;
    display: flex;
    align-items: center;
}
.purpose .prev-button svg {
    width: 16px;
    height: 16px;
    color: #0a0a0a;
}
.purpose .prev-button:hover {
    background: #ddd;
}


.purpose .result-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 32px;
}
.purpose .result-box .result-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #05c3dd1a;
    border-radius: 50%;
}
.purpose .result-box .result-icon svg {
    color: #05c3dd;
    width: 40px;
    height: 40px;
}
.purpose .result-box .result-title {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 12px;
}
.purpose .result-box .result-subtitle {
    font-size: 16px;
    color: #4a5565;
}
.purpose .result-models {
    border: 2px solid #05c3dd;
    border-radius: 12px;
}
.purpose .result-models .model-img {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    background: #05c3dd1a;
}
.purpose .result-models .model-img img {
    width: 100%;
    height: 250px;
    object-fit: contain;
    margin-top: 25px;
}
.purpose .result-models .model-img .model-badge {
    position: absolute;
    top: 25px;
    right: 25px;
    background: #05c3dd;
    color: #fff;
    padding: 10px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}
.purpose .result-models .model-info {
    padding: 40px 40px 24px;
}
.purpose .result-models .model-info .model-title {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 8px;
}
.purpose .result-models .model-info .model-subtitle {
    font-size: 18px;
    color: #05c3dd;
    font-weight: 600;
    margin-bottom: 18px;
}
.purpose .result-models .model-info .model-desc {
    font-size: 16px;
    color: #4a5565;
    margin-bottom: 24px;
}
.purpose .result-models .model-info .model-features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 24px;
    margin-bottom: 24px;
}
.purpose .result-models .model-info .model-features .feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    width: calc(50% - 12px);
    background: #fbf9fa;
    border-radius: 8px;
    padding: 10px 15px;
}
.purpose .result-models .model-info .model-features .feature-item svg {
    width: 20px;
    height: 20px;
    color: #05c3dd;
}
.purpose .result-models .model-info .model-features .feature-item .feature-text {
    font-size: 14px;
    color: #364153;
}
.purpose .result-models .model-info .model-useCases {
    margin-bottom: 32px;
    background: #f0fdfa;
    padding: 16px;
    border-radius: 8px;
}
.purpose .result-models .model-info .model-useCases .useCases-desc {
    font-size: 14px;
    margin-bottom: 8px;
}
.purpose .result-models .model-info .model-useCases div span {
    display: inline-block;
    background: #fff;
    color: #364153;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 16px;
    margin-right: 8px;
    margin-bottom: 8px;
}
.purpose .result-models .model-info .model-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fbf9fa;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 32px;
}
.purpose .result-models .model-info .model-price .model-price-label {
    font-size: 14px;
    color: #4a5565;
}
.purpose .result-models .model-info .model-price .model-price-value {
    font-size: 24px;
    font-weight: 700;
    color: #05c3dd;
}
.purpose .result-models .model-info .model-link {
    display: flex;
    gap: 16px;
}
.purpose .result-models .model-info .model-link .model-link-btn {
    flex: 1;
    text-align: center;
    background: #05c3dd;
    color: #fff;
    font-size: 14px;
    padding: 12px 0;
    border-radius: 8px;
    border: 2px solid #05c3dd;
}
.purpose .result-models .model-info .model-link .model-link-btn:hover {
    background: #04acc6;
    border-color: #04acc6;
}
.purpose .result-models .model-info .model-link .model-link-back {
    flex: 1;
    text-align: center;
    color: #364153;
    font-size: 14px;
    padding: 12px 0;
    border-radius: 8px;
    border: 2px solid #d1d5dc;
}
.purpose .result-models .model-info .model-link .model-link-back:hover {
    background: #f3f4f6;
}


@media (max-width: 768px) {
    .purpose {
        padding: 15px;
        height: auto;
    }
    .purpose .title {
        font-size: 28px;
    }
    .purpose .subtitle {
        font-size: 16px;
    }
    .purpose .selection {
        padding: 30px 20px;
    }
    .purpose .selection-top .icon {
        width: 50px;
        height: 50px;
    }
    .purpose .selection-top .icon svg {
        width: 24px;
        height: 24px;
    }
    .purpose .question {
        font-size: 24px;
    }
    .purpose .option-title {
        font-size: 18px;
    }

    .purpose .result-box .result-icon {
        width: 60px;
        height: 60px;
    }
    .purpose .result-box .result-icon svg {
        width: 30px;
        height: 30px;
    }
    .purpose .result-box .result-title {
        font-size: 24px;
    }
    .purpose .result-box .result-subtitle {
        font-size: 14px;
    }
    .purpose .result-models .model-img {
        height: 200px;
    }
    .purpose .result-models .model-img img {
        height: 180px;
        margin-top: 10px;
    }
    .purpose .result-models .model-img .model-badge {
        top: 10px;
        right: 10px;
        padding: 8px 10px;
        font-size: 12px;
        font-weight: 500;
    }
    .purpose .result-models .model-info {
        padding: 20px;
    }
    .purpose .result-models .model-info .model-title {
        font-size: 24px;
    }
    .purpose .result-models .model-info .model-subtitle {
        font-size: 16px;
    }
    .purpose .result-models .model-info .model-desc {
        font-size: 14px;
    }
    .purpose .result-models .model-info .model-features .feature-item {
        width: 100%;
    }
    .purpose .result-models .model-info .model-price .model-price-value {
        font-size: 20px;
    }

}