/* CEO Zones Qualification Form Styles */
/* Button intentionally uses natural/content width on all screen sizes. */
.czq-qualification-wrap {
    max-width: 600px;
    margin: 0 auto;
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    background: transparent;
    padding: 0;
}

.czq-qualification-wrap * {
    box-sizing: border-box;
}

/* Form Groups */
.czq-form-group {
    margin-bottom: 48px;
}

/* Question Labels (Orange, uppercase, bold) */
.czq-question-label {
    display: block;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #e87722;
    margin-bottom: 16px;
}

/* Question Text */
.czq-question-text {
    font-size: 15px;
    color: #444444;
    line-height: 1.6;
    margin-bottom: 20px;
    margin-top: 0;
}

/* Radio Group */
.czq-radio-group {
    display: flex;
    gap: 32px;
    align-items: center;
}

.czq-radio-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 15px;
    color: #444444;
    font-weight: 400;
    position: relative;
}

.czq-radio-label input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.czq-radio-custom {
    width: 20px;
    height: 20px;
    border: 2px solid #cccccc;
    border-radius: 50%;
    display: inline-block;
    position: relative;
    transition: border-color 0.2s ease;
    flex-shrink: 0;
}

.czq-radio-label input[type="radio"]:checked + .czq-radio-custom {
    border-color: #e87722;
}

.czq-radio-label input[type="radio"]:checked + .czq-radio-custom::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background: #e87722;
    border-radius: 50%;
}

.czq-radio-label:hover .czq-radio-custom {
    border-color: #e87722;
}

/* Textarea */
.czq-textarea {
    width: 100%;
    background: transparent;
    border: 1px solid #dddddd;
    padding: 16px 20px;
    color: #1a1a1a;
    font-size: 15px;
    font-family: inherit;
    outline: none;
    transition: border-color 0.3s ease;
    resize: vertical;
    line-height: 1.6;
}

.czq-textarea:focus {
    border-color: #e87722;
}

.czq-textarea::placeholder {
    color: #aaaaaa;
}

/* Checkbox Group */
.czq-checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.czq-checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    cursor: pointer;
    position: relative;
}

.czq-checkbox-label input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.czq-checkbox-custom {
    width: 22px;
    height: 22px;
    border: 2px solid #cccccc;
    display: inline-block;
    position: relative;
    flex-shrink: 0;
    margin-top: 2px;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.czq-checkbox-label input[type="checkbox"]:checked + .czq-checkbox-custom {
    border-color: #e87722;
    background: #e87722;
}

.czq-checkbox-label input[type="checkbox"]:checked + .czq-checkbox-custom::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 6px;
    width: 5px;
    height: 10px;
    border: solid #ffffff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.czq-checkbox-label:hover .czq-checkbox-custom {
    border-color: #e87722;
}

.czq-checkbox-text {
    font-size: 15px;
    color: #444444;
    line-height: 1.6;
}

/* Disqualification Message */
.czq-disqualify {
    background: rgba(232, 119, 34, 0.06);
    border: 1px solid #e87722;
    padding: 28px;
    margin-top: 20px;
    text-align: center;
}

.czq-disqualify p {
    color: #666666;
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}

/* Submit Button */
.czq-submit-wrap {
    text-align: center;
    margin-top: 48px;
}

.czq-submit-btn {
    display: inline-block;
    background: #e87722;
    color: #ffffff;
    padding: 18px 48px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.czq-submit-btn:hover {
    background: #d06a1e;
    transform: translateY(-2px);
}

.czq-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Form Message */
.czq-form-message {
    margin-top: 24px;
    padding: 20px;
    text-align: center;
    font-size: 15px;
    line-height: 1.6;
    display: none;
}

.czq-form-message.czq-success {
    background: rgba(232, 119, 34, 0.08);
    border: 1px solid #e87722;
    color: #1a1a1a;
    display: block;
}

.czq-form-message.czq-error {
    background: rgba(200, 0, 0, 0.05);
    border: 1px solid #cc0000;
    color: #cc0000;
    display: block;
}

/* Hide remaining questions when disqualified */
#czq-remaining-questions.czq-hidden {
    display: none;
}

/* Responsive */
@media (max-width: 600px) {
    .czq-qualification-wrap {
        padding: 0 16px;
    }
    .czq-radio-group {
        gap: 24px;
    }
    .czq-submit-btn {
        padding: 18px 24px;
    }
}
