/* AI Consultant Form Styles */

.ai-audit-step1,
.ai-audit-step2 {
    max-width: 600px;
    margin: 2rem auto;
    padding: 2rem;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.ai-audit-step1 p,
.ai-audit-step2 p {
    margin-bottom: 1.5rem;
}

.ai-audit-step1 label,
.ai-audit-step2 label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

.ai-audit-step1 input[type="text"],
.ai-audit-step1 input[type="email"],
.ai-audit-step2 input[type="text"],
.ai-audit-step2 input[type="url"],
.ai-audit-step2 textarea,
.ai-audit-step2 select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
    transition: border-color 0.3s;
    box-sizing: border-box;
}

.ai-audit-step1 input:focus,
.ai-audit-step2 input:focus,
.ai-audit-step2 textarea:focus,
.ai-audit-step2 select:focus {
    border-color: #0073aa;
    outline: none;
    box-shadow: 0 0 0 2px rgba(0, 115, 170, 0.2);
}

.ai-audit-step1 button,
.ai-audit-step2 button {
    display: inline-block;
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #0073aa, #005177);
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.1s, opacity 0.3s;
}

.ai-audit-step1 button:hover,
.ai-audit-step2 button:hover {
    opacity: 0.9;
}

.ai-audit-step1 button:active,
.ai-audit-step2 button:active {
    transform: scale(0.98);
}

span.required {
    color: #e74c3c;
    margin-left: 4px;
}

.ai-checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.ai-checkbox-group label {
    display: flex;
    align-items: center;
    background: #f5f5f5;
    padding: 8px 12px;
    border-radius: 20px;
    border: 1px solid #eee;
    font-weight: normal;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.2s;
}

.ai-checkbox-group label:hover {
    background: #eef;
}

.ai-checkbox-group input[type="checkbox"] {
    margin-right: 8px;
}

/* Responsive */
@media (max-width: 480px) {
    .ai-audit-step1,
    .ai-audit-step2 {
        padding: 1rem;
        box-shadow: none;
        border: 1px solid #eee;
    }
}
