@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap");

/* ===== Container (dark theme) ===== */
#ota_calculator_2026 {
  background-color: transparent;
  color: #ffffff;
  padding: 30px;
}

#ota_calculator_2026,
#ota_calculator_2026 * {
  box-sizing: border-box;
  font-family: "Plus Jakarta Sans", sans-serif;
}

/* ===== Minimal grid ===== */
#ota_calculator_2026 .row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -16px;
  margin-right: -16px;
}

#ota_calculator_2026 .col-12,
#ota_calculator_2026 .col-lg-6 {
  width: 100%;
  padding-left: 16px;
  padding-right: 16px;
}

@media screen and (min-width: 992px) {
  #ota_calculator_2026 .col-lg-6 {
    width: 50%;
  }
}

/* ===== Heading ===== */
#ota_calculator_2026 .main-heading {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
  margin: 0 0 2.5rem;
  text-align: center;
}

#ota_calculator_2026 .main-heading .highlighted {
  border-bottom: 4px solid #ff7f00;
  color: #ff7f00;
  padding-top: 4px;
  padding-bottom: 4px;
  display: inline-block;
}

/* ===== Inputs column ===== */
#ota_calculator_2026 .input-item {
  margin-bottom: 36px;
}

#ota_calculator_2026 .range-label-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4px;
}

#ota_calculator_2026 .range-label-container .form-label {
  font-weight: 700;
  font-size: 18px;
  line-height: 1.4;
  color: #ffffff;
  margin: 0;
}

#ota_calculator_2026 .value-box {
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.04);
  padding: 8px 18px;
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
  min-width: 90px;
  text-align: center;
}

#ota_calculator_2026 input[type="range"] {
  width: 100%;
  margin: 14px 0 6px;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 12px;
  /* JS paints the filled portion; this is the fallback track */
  background: linear-gradient(to right, #ff7f00 50%, rgba(255, 255, 255, 0.15) 50%);
  cursor: pointer;
  height: 8px;
}

#ota_calculator_2026 input[type="range"]:focus-visible {
  outline: 2px solid #ff7f00;
  outline-offset: 4px;
}

#ota_calculator_2026 input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  background-color: #ffffff;
  border: 4px solid #ff7f00;
  border-radius: 50%;
  height: 24px;
  width: 24px;
  box-shadow: rgba(0, 0, 0, 0.3) 0px 2px 4px 0px;
}

#ota_calculator_2026 input[type="range"]::-moz-range-thumb {
  background-color: #ffffff;
  border: 4px solid #ff7f00;
  border-radius: 50%;
  height: 16px;
  width: 16px;
  box-shadow: rgba(0, 0, 0, 0.3) 0px 2px 4px 0px;
}

#ota_calculator_2026 .range-minmax {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
}

#ota_calculator_2026 .input-helper {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  margin: 10px 0 0;
}

/* ===== Result card ===== */
#ota_calculator_2026 .result-card {
  background-color: #17181c;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 36px 32px;
  height: 100%;
}

#ota_calculator_2026 .result-label {
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 4px;
}

#ota_calculator_2026 .result-eyebrow {
  font-size: 15px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.65);
  margin: 0 0 10px;
}

#ota_calculator_2026 .big-number {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.15;
  color: #ff7f00;
  overflow-wrap: break-word;
}

#ota_calculator_2026 .result-sub {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  margin: 6px 0 28px;
}

#ota_calculator_2026 .fee-row-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 8px 0;
}

#ota_calculator_2026 .fee-row-label {
  font-size: 16px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
}

#ota_calculator_2026 .fee-row-value {
  font-size: 17px;
  font-weight: 600;
  color: #ffffff;
  white-space: nowrap;
}

#ota_calculator_2026 .keep-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  background-color: rgba(255, 127, 0, 0.14);
  border-radius: 10px;
  padding: 14px 18px;
  margin-top: 10px;
}

#ota_calculator_2026 .keep-row-label,
#ota_calculator_2026 .keep-row-value {
  font-size: 17px;
  font-weight: 700;
  color: #ff9d3d;
  white-space: nowrap;
}

#ota_calculator_2026 .card-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin: 22px 0;
}

#ota_calculator_2026 .result-headline {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.45;
  color: #ffffff;
  margin: 28px 0 0;
}

#ota_calculator_2026 .highlighted-text,
#ota_calculator_2026 #text-extra-profit-inline {
  color: #ff7f00;
}

#ota_calculator_2026 .supporting-line {
  font-size: 15px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  margin: 12px 0 0;
}

/* ===== CTA ===== */
#ota_calculator_2026 .cta-block {
  margin-top: 32px;
}

#ota_calculator_2026 .cta-title {
  font-size: 24px;
  font-weight: 800;
  color: #ffffff;
}

#ota_calculator_2026 .cta-sub {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  margin: 6px 0 16px;
}

/* ===== Stats row ===== */
#ota_calculator_2026 .stats-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  text-align: center;
}

#ota_calculator_2026 .stat {
  flex: 1;
}

#ota_calculator_2026 .stat-number {
  font-size: 20px;
  font-weight: 800;
  color: #ff9d3d;
}

#ota_calculator_2026 .stat-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 2px;
}

/* ===== Guarantee box ===== */
#ota_calculator_2026 .guarantee-box {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 18px;
  margin-top: 24px;
}

#ota_calculator_2026 .guarantee-icon {
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 2px;
}

#ota_calculator_2026 .guarantee-title {
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
}

#ota_calculator_2026 .guarantee-text {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.65);
  margin: 4px 0 0;
}

/* ===== Responsive ===== */
@media screen and (max-width: 991.98px) {
  #ota_calculator_2026 .main-heading {
    font-size: 2.25rem;
  }
  #ota_calculator_2026 .result-card {
    margin-top: 40px;
    height: auto;
  }
}

@media screen and (max-width: 767px) {
  #ota_calculator_2026 {
    padding: 20px;
  }
  #ota_calculator_2026 .main-heading {
    font-size: 2rem;
  }
  #ota_calculator_2026 .result-card {
    padding: 28px 22px;
  }
  #ota_calculator_2026 .big-number {
    font-size: 44px;
  }
}

@media screen and (max-width: 479px) {
  #ota_calculator_2026 .main-heading {
    font-size: 1.75rem;
  }
  #ota_calculator_2026 .big-number {
    font-size: 38px;
  }
}
