* { box-sizing: border-box; }
:root {
  --line: #e3e7f3;
}
body {
  margin: 0;
  min-height: 100vh;
  font-family: ui-sans-serif, system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  display: flex;
  justify-content: center;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.page {
  max-width: 660px;
}

.brand-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 8px;
}

.logo-pill {
  background: #eef1fb;
  border: 1px solid #d7dcf0;
  border-radius: 10px;
  padding: 8px 14px;
  font-weight: 700;
  font-size: 14px;
  color: #2b3a8f;
}

.logo-pill.outline {
  background: #fff;
  border-color: #cfe3d6;
  color: #1f6f4a;
}

.x {
  color: #9aa3bd;
  font-size: 14px;
}

.brand-logo {
  display: block;
  margin: 0 auto 0;
  height: 110px;
  width: 200px;
}

.title {
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 12px;
  font-weight: 700;
  color: #7F7F87;
  margin-bottom: 20px;
}

.card {
  background: #fff;
  border-radius: 16px;
  padding: 24px 22px;
  margin-bottom: 16px;
  box-shadow: 0 2px 10px rgba(20, 30, 70, 0.05);
}

.label {
  text-align: center;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 2px;
  font-weight: 700;
  color: #7F7F87;
  margin-bottom: 8px;
}

.stu-input {
  display: block;
  margin: 0 auto 10px;
  border: none;
  outline: none;
  text-align: center;
  font-size: 54px;
  font-weight: 800;
  color: #0f1b3d;
  width: 100%;
  background: transparent;
  font-family: ui-sans-serif, system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
}

.stu-underline {
  width: 180px;
  height: 3px;
  margin: 0 auto 16px;
  border-radius: 2px;
  background: #1c2b6b;
}

#slider {
  --fill: 0%;
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  height: 4px;
  background: #e3e7f3;
  border-radius: 4px;
  margin: 6px 0 8px;
}

#slider::-webkit-slider-runnable-track {
  height: 4px;
  border-radius: 4px;
  background: linear-gradient(
    to right,
    #1c2b6b 0%,
    #1c2b6b var(--fill),
    #e3e7f3 var(--fill),
    #e3e7f3 100%
  );
}

#slider::-moz-range-track {
  height: 4px;
  border-radius: 4px;
  background: #e3e7f3;
}

#slider::-moz-range-progress {
  height: 4px;
  border-radius: 4px;
  background: #1c2b6b;
}

#slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #1c2b6b;
  cursor: pointer;
  border: 3px solid #fff;
  box-shadow: 0 0 0 1px #1c2b6b;
  margin-top: -8px;
}

#slider::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #1c2b6b;
  cursor: pointer;
  border: 3px solid #fff;
}

.ticks {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: #7F7F87;
  margin-bottom: 10px;
}

.note {
  text-align: center;
  font-size: 12px;
  color: #7F7F87;
}

.msg-range {
  text-align: center;
  font-size: 12px;
  color: #d1483f;
  margin-top: 8px;
}

.contact-msg {
  text-align: center;
  font-size: 12px;
  color: #7F7F87;
  margin-top: 8px;
}

.contact-msg a {
  color: #1c2b6b;
  font-weight: 700;
  text-decoration: underline;
}

.hero .h-rate {
  text-align: center;
  font-size: 66px;
  font-weight: 800;
  color: #132447;
  margin-left: 32px;
}

.hero .h-rate small {
  font-size: 20px;
  font-weight: 700;
  color: #6a7188;
  margin-left: 4px;
}

.h-unit {
  text-align: center;
  text-transform: uppercase;
  font-size: 15px;
  letter-spacing: 1px;
  color: #7F7F87;
  margin-bottom: 18px;
}

.disc-big {
  text-align: center;
  font-size: 25px;
  font-weight: 700;
  color: #2E5495;
  margin-bottom: 4px;
}

.disc-sub {
  text-align: center;
  font-size: 12.5px;
  color: #000000;
  line-height: 1.5;
  margin-bottom: 14px;
}

.bar {
  margin: 18px auto 0;
  max-width: 380px;
  height: 10px;
  border-radius: 5px;
  background: var(--line);
  position: relative;
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #1e88e5, #1c2b6b);
  width: 0%;
  transition: width 0.15s ease;
}

.bar-fill-price {
  height: 100%;
  background: linear-gradient(70deg, #1e88e5, #1c2b6b);
  width: 0%;
  transition: width 0.15s ease;
}

.bar-labels {
  display: flex;
  justify-content: space-between;
  max-width: 380px;
  margin: 6px auto 0;
  font-size: 11px;
  color: #7F7F87;
}

.tot {
  text-align: center;
}

.tot .v {
  font-size: 30px;
  font-weight: 800;
  color: #0f1b3d;
}

.tot .k {
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 1.5px;
  color: #7F7F87;
  margin-top: 4px;
}

.tot .s {
  font-size: 13.5px;
  color: #2E5495;
  font-weight: 700;
  margin-top: 4px;
}

.tax {
  text-align: center;
  font-size: 11.5px;
  color: #7F7F87;
  margin-bottom: 14px;
}

.fine {
  text-align: center;
  font-size: 12.5px;
  color: #000000;
  line-height: 1.6;
  margin-bottom: 12px;
}

.fine.muted {
  font-size: 11px;
  color: #7F7F87;
}
