/* Simulateur crédit immobilier — UI simple */
.credit-sim-wrap{background:linear-gradient(135deg,#f0f9fa 0%,#fff 100%);border-radius:18px;padding:2rem;margin:2rem 0;box-shadow:0 8px 28px -12px rgba(15,23,42,.12)}
.credit-sim-grid{display:grid;grid-template-columns:1fr;gap:1.5rem}
@media(min-width:880px){.credit-sim-grid{grid-template-columns:1fr 1fr}}
.credit-sim-inputs{display:grid;gap:1rem}
.credit-sim-field{display:flex;flex-direction:column;gap:.3rem}
.credit-sim-field label{font-weight:600;color:#0f172a;font-size:.92rem}
.credit-sim-field input[type=number]{padding:.7rem .9rem;border:1px solid #cbd5e1;border-radius:8px;font-size:1rem;font-variant-numeric:tabular-nums;background:#fff}
.credit-sim-field input[type=number]:focus{outline:none;border-color:#1b8089;box-shadow:0 0 0 3px rgba(27,128,137,.18)}
.credit-sim-field small{color:#64748b;font-size:.78rem}
.credit-sim-outputs{display:flex;flex-direction:column;justify-content:center;background:#1a2b4a;color:#fff;border-radius:14px;padding:1.5rem}
.credit-sim-out-line{display:flex;justify-content:space-between;padding:.6rem 0;border-bottom:1px solid rgba(255,255,255,.12);align-items:baseline}
.credit-sim-out-line:last-child{border-bottom:none}
.credit-sim-out-label{font-size:.88rem;opacity:.85}
.credit-sim-out-value{font-weight:700;font-size:1.15rem;color:#fff;font-variant-numeric:tabular-nums}
.credit-sim-out-line.primary{background:rgba(255,255,255,.08);margin:.6rem -.6rem;padding:.9rem .6rem;border-radius:8px;border-bottom:none}
.credit-sim-out-line.primary .credit-sim-out-label{font-weight:600;opacity:1}
.credit-sim-out-line.primary .credit-sim-out-value{font-size:1.5rem;color:#f5a623}
.credit-sim-disclaimer{margin-top:1rem;font-size:.78rem;color:#64748b}
