.elementor-8566 .elementor-element.elementor-element-658f916{--display:flex;}/* Start custom CSS for html, class: .elementor-element-1c4d198 *//* ================= VARIABLES ================= */
:root {
    --green: #00C851;
    --green-dark: #007E33;
    --red: #ff4444;
    --dark: #2E2E2E;
    --gray: #f4f4f4;
    --white: #ffffff;
    --shadow: 0 10px 30px rgba(0,0,0,0.1);
    --font: 'Roboto', sans-serif;
}

body { font-family: var(--font); margin: 0; background: #e9ecef; color: var(--dark); min-height: 100vh; }

/* LAYOUT */
.money-wrapper { max-width: 600px; margin: 40px auto; padding: 20px; }

.money-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.brand { font-weight: 900; font-size: 1.2rem; color: var(--dark); }
.gold { color: #D4AF37; }
.tag-audit { background: var(--dark); color: #fff; padding: 5px 10px; border-radius: 4px; font-size: 0.8rem; font-weight: 700; text-transform: uppercase; }

/* CARD PRINCIPALE */
.money-card {
    background: var(--white); border-radius: 20px;
    box-shadow: var(--shadow); padding: 40px;
    text-align: center; position: relative; overflow: hidden;
    min-height: 500px; display: flex; flex-direction: column; justify-content: center;
}

/* ÉLÉMENTS */
.screen { display: none; animation: fadeIn 0.4s ease; }
.screen.active { display: block; }

.icon-animated { font-size: 4rem; margin-bottom: 15px; animation: bounce 2s infinite; }
h1 { font-size: 2rem; line-height: 1.2; margin-bottom: 20px; color: var(--dark); }
.text-red { color: var(--red); text-decoration: underline; }
.sub-text { color: #666; font-size: 1rem; margin-bottom: 30px; line-height: 1.5; }

/* BOUTONS */
.btn-money {
    background: var(--green); color: #fff; border: none; padding: 18px 30px;
    border-radius: 50px; font-size: 1.2rem; font-weight: 700; cursor: pointer;
    width: 100%; transition: 0.3s; box-shadow: 0 5px 15px rgba(0, 200, 81, 0.3);
}
.btn-money:hover { background: var(--green-dark); transform: translateY(-3px); }

/* QUESTIONS */
.progress-money { width: 100%; background: #eee; height: 8px; border-radius: 10px; margin-bottom: 30px; }
.bar-fill { height: 100%; background: var(--green); width: 0%; border-radius: 10px; transition: 0.3s; }

h3 { font-size: 1.4rem; margin-bottom: 25px; }
.opts-grid { display: flex; flex-direction: column; gap: 12px; }
.opt-money {
    background: #fff; border: 2px solid #eee; padding: 20px; border-radius: 12px;
    cursor: pointer; font-size: 1rem; font-weight: 500; text-align: left; transition: 0.2s;
    color: var(--dark);
}
.opt-money:hover { border-color: var(--green); background: #f0fff4; transform: scale(1.02); }

/* LOADING */
.loading-bar { width: 100%; height: 6px; background: #eee; border-radius: 10px; overflow: hidden; margin: 30px 0; }
.moving-bar { width: 40%; height: 100%; background: var(--green); border-radius: 10px; animation: loadingMove 1s infinite alternate; }
.check-list { text-align: left; max-width: 250px; margin: 0 auto; }
.check-list p { margin-bottom: 10px; color: #555; }
.text-green { color: var(--green); margin-right: 10px; }

/* CAPTURE */
.warning-box { background: #ffebee; color: var(--red); padding: 10px; border-radius: 8px; font-weight: 700; display: inline-block; margin-bottom: 20px; }
.input-money {
    background: #f9f9f9; border: 1px solid #ddd; border-radius: 8px;
    padding: 10px 15px; display: flex; align-items: center; gap: 10px; margin-bottom: 15px;
}
.input-money input { border: none; background: transparent; width: 100%; padding: 5px; outline: none; font-size: 1rem; }
.input-money i { color: #999; }

/* RÉSULTAT */
.result-label { font-size: 0.9rem; font-weight: 700; letter-spacing: 2px; color: #888; margin-bottom: 10px; }
.loss-amount { font-size: 3.5rem; font-weight: 900; color: var(--red); margin-bottom: 20px; line-height: 1; }
.loss-amount small { font-size: 1rem; color: #666; font-weight: 500; }

.analysis-text { font-size: 1rem; color: #555; margin-bottom: 30px; }

.solution-box { background: #f4f4f4; padding: 20px; border-radius: 15px; text-align: left; }
.compare-row { display: flex; justify-content: space-between; margin-bottom: 10px; font-size: 0.95rem; }
.bad-price { text-decoration: line-through; color: var(--red); }
.highlight { background: #fff; padding: 10px; border-radius: 8px; font-weight: 700; border: 2px solid var(--green); margin-top: 10px; align-items: center; }
.good-price { color: var(--green-dark); font-size: 1.1rem; }

/* ANIMATIONS */
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
@keyframes bounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes loadingMove { from { transform: translateX(-50%); } to { transform: translateX(250%); } }
.pulse { animation: pulse 2s infinite; }
@keyframes pulse { 0% { transform: scale(1); } 50% { transform: scale(1.03); } 100% { transform: scale(1); } }

/* MOBILE */
@media(max-width: 600px) {
    .money-wrapper { margin: 10px auto; padding: 10px; }
    .money-card { padding: 20px; min-height: 400px; }
    h1 { font-size: 1.6rem; }
    .loss-amount { font-size: 2.5rem; }
}/* End custom CSS */