.calculator-layout { display:flex; gap:40px; padding:24px; max-width:1100px; margin:0 auto; }
.calc-block { flex:1; max-width:520px; background:var(--glass-bg); backdrop-filter:blur(16px); border:1px solid var(--glass-border); border-radius:20px; padding:28px; box-shadow:var(--glass-shadow); }
.calc-block h1 { margin:0 0 8px; font-size:1.5rem; color:#f59e0b; }
.calc-intro { font-size:0.95rem; color:var(--text-muted); margin-bottom:16px; }
.calc-block label { display:block; margin-top:14px; font-weight:600; font-size:0.92rem; color:var(--text-primary); }
.calc-block input,.calc-block select { width:100%; padding:10px 12px; margin-top:6px; border:2px solid var(--input-border); border-radius:8px; font-size:15px; background:var(--input-bg); color:var(--text-primary); outline:none; }
.calc-block input:focus,.calc-block select:focus { border-color:#f59e0b; box-shadow:0 0 0 3px #f59e0b22; }
.field-hint { margin:4px 0 0; font-size:0.8rem; color:var(--text-muted); }
.calc-block button { width:100%; margin-top:22px; padding:13px; background:linear-gradient(135deg,#f59e0b,#f59e0bdd); color:#fff; border:none; border-radius:10px; font-size:1rem; font-weight:700; cursor:pointer; }
.result-block { background:var(--glass-bg); padding:26px; border:1px solid var(--glass-border); border-radius:20px; box-shadow:var(--glass-shadow); min-width:300px; position:sticky; top:20px; }
.result-block h2 { margin:0 0 14px; color:#f59e0b; font-size:1.2rem; }
.result-hero { text-align:center; padding:20px; background:#f59e0b11; border-radius:12px; margin-bottom:14px; }
.result-hero .hero-value { font-size:2.2rem; font-weight:800; color:#f59e0b; }
.result-hero .hero-label { font-size:0.9rem; color:var(--text-muted); }
.result-grid { display:flex; flex-wrap:wrap; gap:10px; }
.result-grid .metric { flex:1; min-width:120px; background:var(--result-bg); padding:14px; border-radius:10px; text-align:center; }
.metric .metric-value { font-size:1.3rem; font-weight:700; color:var(--text-primary); }
.metric .metric-label { font-size:0.8rem; color:var(--text-muted); }
.breakdown { margin-top:16px; padding:14px; background:var(--result-bg); border-radius:10px; font-size:0.9rem; line-height:1.6; color:var(--text-primary); }
.error-msg { color:#dc2626; padding:12px; background:rgba(220,38,38,0.1); border-radius:8px; font-weight:600; }
.calculator-description { max-width:800px; margin:40px auto; padding:28px; background:var(--desc-bg); border:1px solid var(--glass-border); border-radius:18px; line-height:1.65; color:var(--text-primary); }
.calculator-description h2,.calculator-description h3 { color:#f59e0b; margin-top:18px; }
@media(max-width:768px){ .calculator-layout{ flex-direction:column; } .calc-block{ max-width:100%; } .result-block{ position:static; } }
