/* Sfondo pagina */
body {
    background-color: #1F314C !important;
    color: inherit;
    font-family: 'Segoe UI', sans-serif;
}

/* Container quiz */
#laq-quiz {
    max-width: 700px;
    margin: 50px auto;
    color: inherit;
}

/* Titolo quiz */
.laq-quiz-title {
    text-align: center;
    font-size: 28px;
    margin-bottom: 30px;
    color: #ffffff !important;
}

/* STEP GENERALE */
.laq-step {
    background: #ffffff !important;
    padding: 25px 20px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.07);
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.laq-step h3, .laq-step h4 {
    font-size: 20px;
    margin-bottom: 18px;
    color: inherit !important;
}

/* FORM INIZIALE COMPATTO */
.laq-step .laq-form-row {
    display: flex;
    gap: 10px;
    margin-bottom: 12px;
}

.laq-step .laq-form-row input[type="text"],
.laq-step .laq-form-row input[type="email"],
.laq-step .laq-form-row input[type="tel"] {
    flex: 1;
    padding: 8px 10px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 6px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.laq-step .laq-form-row input:focus {
    border-color: #0c1f3f !important;
    box-shadow: 0 0 6px rgba(12,31,63,0.2);
    outline: none;
}

/* Checkbox privacy */
.laq-step input[type="checkbox"] {
    margin-right: 8px;
}

/* Etichette radio e checkbox */
.laq-step label {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    padding: 8px 12px;
    border-radius: 6px;
    cursor: pointer;
    background: #f9f9f9;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.laq-step label:hover {
    background: #f0f0f0;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

/* Pulsanti */
button, .laq-btn {
    background: #BB9248 !important;
    color: #fff !important;
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 15px;
    transition: background 0.3s ease, transform 0.2s ease;
}

button:hover, .laq-btn:hover {
    background: #BBAF48 !important;
    transform: translateY(-2px);
}

/* Risultato */
.laq-result-box {
    padding: 35px;
    border-radius: 14px;
    text-align: center;
    box-shadow: 0 12px 50px rgba(0,0,0,0.08);
    margin-top: 20px;
    color: #1F314C; /* Testo principale scuro */
    font-weight: 500;
}

/* Verde: armonizzato con pulsanti caldi */
.laq-result-box.verde {
    background: #F5EFE1; /* colore chiaro caldo */
    border: 2px solid #BB9248; /* colore pulsante principale */
    color: #1F314C;
}

/* Giallo: armonizzato con hover pulsante */
.laq-result-box.giallo {
    background: #FFF8E5; /* colore chiaro caldo leggermente giallo */
    border: 2px solid #BBAF48; /* colore hover pulsante */
    color: #1F314C;
}

/* Rosso: armonizzato come contrasto caldo */
.laq-result-box.rosso {
    background: #FDEFEA; /* rosato chiaro */
    border: 2px solid #D48B4F; /* tono caldo, coerente con pulsante */
    color: #1F314C;
}

.laq-score {
    font-size: 22px;
    font-weight: bold;
    margin: 15px 0;
}

.laq-cta {
    margin-top: 25px;
}

.laq-btn {
    display: inline-block;
    background: #BB9248 !important;
    color: #fff !important;
    padding: 12px 28px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
}

/* Step radio buttons */
.laq-step input[type="radio"] {
    margin-right: 10px;
}

/* Responsive */
@media (max-width: 768px) {
    #laq-quiz {
        padding: 0 15px;
    }
    .laq-step {
        padding: 20px 15px;
    }
    .laq-step .laq-form-row {
        flex-direction: column;
    }
    button, .laq-btn {
        width: 100%;
        text-align: center;
        padding: 12px 0;
    }
}