.hero-calculator {
  background: #fff;
  color: var(--ink);
  border-radius: 18px;
  padding: 26px;
  box-shadow: 0 25px 70px rgba(0, 0, 0, .25);
}

.hero-calc-head > span {
  color: #087f7c;
  font-size: .69rem;
  font-weight: 950;
  letter-spacing: .12em;
}

.hero-calc-head h2 {
  font-size: 1.55rem;
  line-height: 1.12;
  margin: 5px 0;
}

.hero-calc-head p {
  color: var(--muted);
  font-size: .88rem;
  margin: 0;
}

.hero-calc-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 17px 0 12px;
}

.hero-calc-fields label {
  position: relative;
  color: #405964;
  font-size: .72rem;
  font-weight: 900;
}

.hero-calc-fields input {
  width: 100%;
  margin-top: 5px;
  padding: 11px 44px 11px 12px;
  border: 1px solid #bcd0d4;
  border-radius: 9px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-weight: 850;
}

.hero-calc-fields small {
  position: absolute;
  right: 12px;
  bottom: 11px;
  color: #60757e;
  font-size: .7rem;
}

.hero-calc-results {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.hero-calc-results > div {
  padding: 12px;
  border-radius: 10px;
  background: #edf7f7;
}

.hero-calc-results span,
.hero-calc-savings span {
  display: block;
  color: #597078;
  font-size: .66rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-calc-results strong {
  display: block;
  color: #087f77;
  font-size: 1.18rem;
}

.hero-calc-results small {
  color: #60757e;
  font-size: .7rem;
}

.hero-calc-savings {
  margin: 9px 0 12px;
  padding: 13px 14px;
  border-left: 5px solid var(--gold);
  border-radius: 8px;
  background: #fff4d9;
}

.hero-calc-savings strong {
  display: block;
  color: var(--ink);
  font-size: 2rem;
  line-height: 1.05;
}

.hero-calculator .btn {
  width: 100%;
  min-height: 45px;
}

.hero-calc-note {
  margin: 10px 0 0 !important;
  color: #667b84 !important;
  font-size: .68rem !important;
  line-height: 1.35;
}

@media (max-width: 620px) {
  .hero-calc-fields,
  .hero-calc-results {
    grid-template-columns: 1fr;
  }

  .hero-calculator {
    padding: 21px;
  }
}
