.elementor-8561 .elementor-element.elementor-element-d371310{--display:flex;}/* Start custom CSS for html, class: .elementor-element-13c71a3 *//* ================= VARIABLES DARK MODE ================= */
:root {
    --bg-dark: #0f172a;       /* Fond Bleu nuit très sombre */
    --card-bg: #1e293b;       /* Fond Carte */
    --accent: #38bdf8;        /* Bleu Cyan Néon (Tech) */
    --accent-hover: #0ea5e9;
    --text-white: #f8fafc;
    --text-gray: #94a3b8;
    --danger: #ef4444;
    --font: 'Inter', sans-serif;
}

body {
    font-family: var(--font); margin: 0;
    background-color: var(--bg-dark); color: var(--text-white);
    min-height: 100vh;
}

/* LAYOUT GLOBAL */
.audit-wrapper {
    display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
    gap: 60px; max-width: 1200px; margin: 0 auto; padding: 40px 20px;
    min-height: 90vh;
}

/* GAUCHE : TEXTE */
.audit-text { flex: 1; min-width: 300px; max-width: 500px; }
.badge-alert {
    background: rgba(239, 68, 68, 0.2); color: var(--danger); border: 1px solid var(--danger);
    padding: 5px 12px; border-radius: 4px; font-weight: 700; font-size: 0.8rem; text-transform: uppercase;
}
h1 { font-size: 3rem; margin: 20px 0; line-height: 1.1; }
.highlight { color: var(--accent); }
.audit-text p { color: var(--text-gray); font-size: 1.1rem; line-height: 1.6; margin-bottom: 30px; }

.stats-box { display: flex; gap: 30px; border-top: 1px solid #334155; padding-top: 20px; }
.line { width: 1px; background: #334155; }
.stat strong { display: block; font-size: 1.8rem; color: var(--text-white); }
.stat small { color: var(--text-gray); font-size: 0.9rem; }

/* DROITE : CARTE AUDIT */
.audit-card {
    flex: 1; min-width: 320px; max-width: 450px;
    background: var(--card-bg); border-radius: 16px;
    border: 1px solid #334155; padding: 40px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    position: relative; overflow: hidden; min-height: 500px;
    display: flex; flex-direction: column; justify-content: center; text-align: center;
}

/* ÉLÉMENTS COMMUNS */
.screen { display: none; animation: fadeIn 0.4s ease; }
.screen.active { display: block; }
h2 { font-size: 2rem; margin-bottom: 10px; }
h3 { font-size: 1.5rem; margin-bottom: 25px; color: var(--text-white); }

/* BOUTONS */
.btn-neon {
    background: var(--accent); color: #0f172a; border: none;
    padding: 18px 30px; width: 100%; border-radius: 8px;
    font-weight: 800; font-size: 1.1rem; cursor: pointer;
    text-transform: uppercase; letter-spacing: 1px;
    box-shadow: 0 0 20px rgba(56, 189, 248, 0.3); transition: 0.3s;
}
.btn-neon:hover { background: var(--accent-hover); box-shadow: 0 0 30px rgba(56, 189, 248, 0.5); transform: translateY(-2px); }

.btn-grid { display: flex; flex-direction: column; gap: 12px; }
.btn-option {
    background: #0f172a; border: 1px solid #334155; color: var(--text-white);
    padding: 15px; border-radius: 8px; cursor: pointer; text-align: left;
    font-size: 1rem; transition: 0.2s;
}
.btn-option:hover { border-color: var(--accent); background: #162032; }

/* START SCREEN */
.radar-icon { font-size: 4rem; color: var(--accent); margin-bottom: 20px; animation: pulse 2s infinite; }

/* LOADING SCREEN */
.scan-line {
    height: 4px; width: 100%; background: var(--accent);
    box-shadow: 0 0 15px var(--accent); margin: 30px 0;
    animation: scan 2s infinite alternate;
}
.mono-text { font-family: 'Courier New', monospace; color: var(--accent); font-size: 0.9rem; text-align: left; background: #000; padding: 15px; border-radius: 8px; }

/* INPUTS FORM */
.input-dark {
    background: #0f172a; border: 1px solid #334155; border-radius: 8px;
    padding: 5px 15px; display: flex; align-items: center; gap: 10px; margin-bottom: 15px;
}
.input-dark:focus-within { border-color: var(--accent); }
.input-dark input { background: transparent; border: none; color: #fff; width: 100%; padding: 10px 0; outline: none; }
.input-dark i { color: #64748b; }

/* RESULTATS */
.score-circle {
    width: 120px; height: 120px; border: 8px solid #334155; border-radius: 50%;
    margin: 0 auto 20px auto; display: flex; flex-direction: column; justify-content: center;
    font-size: 3rem; font-weight: 900;
}
.res-h2 { text-transform: uppercase; font-size: 1.5rem; margin-bottom: 10px; }
.res-p { color: var(--text-gray); margin-bottom: 20px; }
.action-box { background: rgba(239, 68, 68, 0.1); border: 1px solid var(--danger); padding: 15px; border-radius: 8px; }
.action-box p { color: #fca5a5; font-size: 0.9rem; margin-bottom: 15px; }

/* PROGRESS BAR */
.progress-bar-bg { width: 100%; height: 4px; background: #334155; margin-bottom: 30px; }
.progress-bar-fill { width: 0%; height: 100%; background: var(--accent); transition: 0.3s; box-shadow: 0 0 10px var(--accent); }

/* ANIMATIONS */
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
@keyframes scan { from { width: 10%; transform: translateX(0); } to { width: 10%; transform: translateX(350px); } }
@keyframes pulse { 0% { opacity: 1; } 50% { opacity: 0.5; } 100% { opacity: 1; } }
.pulse { animation: pulseBtn 1.5s infinite; }
@keyframes pulseBtn { 0% { transform: scale(1); } 50% { transform: scale(1.02); } 100% { transform: scale(1); } }

/* MOBILE */
@media(max-width: 768px) {
    .audit-wrapper { flex-direction: column; text-align: center; }
    .audit-text { text-align: center; }
    .stats-box { justify-content: center; }
    .mono-text { text-align: center; }
}/* End custom CSS */