.jtech-calculator {
  --jtech-accent: #6ea72f;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 12px 35px rgba(21, 33, 42, .12);
  box-sizing: border-box;
  color: #15212a;
  margin-inline: auto;
  max-width: 780px;
  padding: clamp(24px, 5vw, 52px);
}
.jtech-calculator *, .jtech-calculator *::before, .jtech-calculator *::after { box-sizing: border-box; }
.jtech-calculator h2, .jtech-calculator h3 { color: inherit; line-height: 1.15; margin: 0 0 14px; }
.jtech-calculator h2 { font-size: clamp(28px, 5vw, 46px); }
.jtech-calculator h3 { font-size: clamp(22px, 3vw, 30px); }
.jtech-calculator p { margin: 0 0 18px; }
.jtech-progress { background: #e4e8eb; border-radius: 99px; height: 8px; margin-top: 28px; overflow: hidden; }
.jtech-progress__bar { background: var(--jtech-accent); display: block; height: 100%; transition: width .25s ease; width: 0; }
.jtech-progress__text { color: #5b6770; font-size: 13px; margin-top: 7px !important; text-align: right; }
.jtech-step[hidden], .jtech-field[hidden], .jtech-button[hidden], .jtech-validation[hidden], .jtech-submission-status[hidden] { display: none !important; }
.jtech-step { animation: jtech-fade-in .22s ease; min-height: 190px; }
.jtech-field-grid { display: grid; gap: 18px; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.jtech-field { display: flex; flex-direction: column; font-weight: 600; gap: 8px; margin-top: 18px; }
.jtech-field input, .jtech-field select { appearance: none; background: #fff; border: 1px solid #b7c0c7; border-radius: 6px; color: #15212a; min-height: 50px; padding: 10px 14px; width: 100%; }
.jtech-field input:focus, .jtech-field select:focus { border-color: var(--jtech-accent); box-shadow: 0 0 0 3px rgba(110, 167, 47, .2); outline: 0; }
.jtech-input-prefix { align-items: center; display: flex; position: relative; }
.jtech-input-prefix b { left: 14px; position: absolute; }
.jtech-input-prefix input { padding-left: 30px; }
.jtech-help, .jtech-program-wage { color: #5b6770; font-size: 14px; }
.jtech-program-wage { background: #f3f7ef; border-left: 4px solid var(--jtech-accent); padding: 12px 15px; }
.jtech-consent { align-items: flex-start; display: flex; gap: 12px; margin-top: 22px; }
.jtech-consent input { flex: 0 0 20px; height: 20px; margin-top: 2px; width: 20px; }
.jtech-actions { display: flex; gap: 12px; justify-content: space-between; margin-top: 28px; }
.jtech-button { border: 0; border-radius: 5px; cursor: pointer; font-weight: 700; min-height: 48px; padding: 11px 24px; transition: filter .15s ease, transform .15s ease; }
.jtech-button:hover { filter: brightness(.94); transform: translateY(-1px); }
.jtech-button:focus-visible { outline: 3px solid currentColor; outline-offset: 3px; }
.jtech-button--primary { background: var(--jtech-accent); color: #fff; margin-left: auto; }
.jtech-button--secondary { background: #e9edef; color: #15212a; }
.jtech-validation { color: #a32121; font-weight: 600; margin-top: 15px !important; }
.jtech-results { background: #f3f7ef; border-radius: 10px; padding: clamp(20px, 4vw, 36px); }
.jtech-result--primary { border-bottom: 1px solid rgba(21, 33, 42, .16); display: flex; flex-direction: column; margin-bottom: 18px; padding-bottom: 18px; }
.jtech-result__value { color: var(--jtech-accent); font-size: clamp(36px, 8vw, 64px); line-height: 1.05; margin-top: 6px; }
.jtech-result-list { margin: 0; }
.jtech-result-list div { display: flex; gap: 20px; justify-content: space-between; padding: 8px 0; }
.jtech-result-list dt { font-weight: 400; }
.jtech-result-list dd { font-weight: 700; margin: 0; text-align: right; }
.jtech-disclaimer { color: #5b6770; font-size: 12px; margin-top: 22px !important; }
.jtech-submission-status { border-radius: 5px; margin-top: 18px !important; padding: 12px 15px; }
.jtech-submission-status.is-pending { background: #e9edef; }
.jtech-submission-status.is-success { background: #dcefd2; color: #295b13; }
.jtech-submission-status.is-error { background: #f8dddd; color: #7b1919; }
@keyframes jtech-fade-in { from { opacity: 0; transform: translateY(5px); } to { opacity: 1; transform: none; } }
@media (max-width: 600px) {
  .jtech-field-grid { grid-template-columns: 1fr; gap: 0; }
  .jtech-result-list div { flex-direction: column; gap: 2px; }
  .jtech-result-list dd { text-align: left; }
  .jtech-button { padding-inline: 17px; }
}
@media (prefers-reduced-motion: reduce) { .jtech-step { animation: none; } .jtech-button, .jtech-progress__bar { transition: none; } }
