.mhq-wrapper {
    max-width: 720px;
    margin: 40px auto;
    padding: 24px;
    background: #f7eaf0; /* soft warm background */
    border-radius: 16px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    min-height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.mhq-progress {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    font-size: 14px;
}

.mhq-progress-bar {
    flex: 1;
    height: 8px;
    background: #e0e0e0;
    border-radius: 999px;
    overflow: hidden;
}

.mhq-progress-fill {
    height: 100%;
    width: 0;
    background: #ec008c;
    transition: width 0.3s ease;
}

.mhq-step {
    display: none;
}

.mhq-question h2 {
    font-size: 22px;
    margin-bottom: 8px;
}

.mhq-question-subtitle {
    font-size: 14px;
    color: #555;
}

.mhq-answers {
    margin-top: 16px;
}

.mhq-input {
    width: 100%;
    padding: 10px 12px;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 15px;
    background: #fff;
}

.mhq-personal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 12px 16px;
}

.mhq-field {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mhq-label {
    font-size: 13px;
    font-weight: 500;
}

.mhq-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 12px;
    border: 1px solid #ddd;
    margin-bottom: 8px;
    cursor: pointer;
    background: #fff;
}

.mhq-option input {
    transform: scale(1.1);
}

.mhq-footer {
    display: flex;
    justify-content: space-between;
    margin-top: 24px;
    gap: 10px;
}

.mhq-btn {
    border-radius: 999px;
    padding: 10px 20px;
    border: none;
    font-size: 15px;
    cursor: pointer;
}

.mhq-btn-primary {
    background: #ec008c;
    color: #fff;
}

.mhq-btn-secondary {
    background: #fff;
    color: #111;
    border: 1px solid #ccc;
}

.mhq-intro-btn {
    margin-top: 16px;
}

.mhq-message {
    margin-top: 20px;
    padding: 10px 12px;
    border-radius: 8px;
    font-size: 14px;
}

.mhq-message-error {
    background: #ffe7e7;
    color: #a10000;
}

.mhq-message-success {
    background: #e6ffe9;
    color: #0b6c2f;
}

.mhq-result h3 {
    font-size: 20px;
    margin-bottom: 6px;
}

@media (max-width: 600px) {
    .mhq-wrapper {
        margin: 20px 10px;
        padding: 16px;
    }
}
