  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  :root {
    --blue: #04519f;
    --blue-dark: #03407e;
    --blue-light: #76bde9;
    --blue-pale: #e8f3fb;
    --white: #ffffff;
    --gray-100: #eef2f7;
    --gray-500: #4a5f75;
    --gray-900: #1a2533;

	--yellow: white;
  }
  /*
  body {
    font-family: 'Open Sans', sans-serif;
    background: #edf4fb;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    padding: 48px 16px;
  }
  */
  .calc-card { position: relative; z-index: 99;
    background: #ffffff;
    border-radius: 20px;
    padding: 32px 28px 16px;
    box-shadow: 0 24px 64px rgba(4,81,159,0.22);
    width: 100%;
    max-width: 480px;
    height: fit-content;
  }
  .calc-headline {
    font-size: clamp(16px, 4vw, 22px);
    font-weight: 800;
    color: var(--blue);
    line-height: 1.2;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
    white-space: nowrap;
  }
  .calc-title {
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--blue);
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--blue-pale);
  }
  .slider-group { margin-bottom: 18px; }
  .slider-top { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 7px; }
  .slider-label { font-size: 14px; color: var(--gray-500); font-weight: 600; }
  .slider-value { font-size: 18px; font-weight: 800; color: var(--blue); }
  input[type="range"] {
    -webkit-appearance: none; appearance: none;
    width: 100%; height: 5px; border-radius: 3px;
    background: var(--gray-100); outline: none; cursor: pointer;
  }
  input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none; appearance: none;
    width: 20px; height: 20px; border-radius: 50%;
    background: var(--blue); border: 3px solid var(--white);
    box-shadow: 0 2px 8px rgba(4,81,159,0.35); cursor: pointer;
    transition: transform 0.1s;
  }
  input[type="range"]::-webkit-slider-thumb:hover { transform: scale(1.15); }
  input[type="range"]::-moz-range-thumb {
    width: 20px; height: 20px; border-radius: 50%;
    background: var(--blue); border: 3px solid var(--white);
    box-shadow: 0 2px 8px rgba(4,81,159,0.35); cursor: pointer;
  }
  .result-block { background: var(--blue); border-radius: 14px; padding: 20px 22px; margin-top: 20px; }
  .result-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 16px; gap: 12px; flex-wrap: wrap; }
  .save-label { font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; color: white/*rgba(255,255,255,0.6)*/; margin-bottom: 4px; }
  .save-amount { font-size: 36px; font-weight: 800; color: var(--white); line-height: 1; }
  .save-sub { font-size: 13px; color: white/*rgba(255,255,255,0.55)*/; margin-top: 4px; }
  .compare-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
  .compare-box { background: rgba(255,255,255,0.1); border-radius: 10px; padding: 10px 12px; }
  .compare-box-label { font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.06em; color: white/*rgba(255,255,255,0.5)*/; margin-bottom: 4px; }
  .compare-box-val { font-size: 18px; font-weight: 600; color: var(--yellow); }
  .compare-box-rate { font-size: 12px; color: white/*rgba(255,255,255,0.4)*/; margin-top: 2px; }
  .calc-cta-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 16px; }
  .calc-cta-col { display: flex; flex-direction: column; gap: 6px; }
  .calc-cta-label { font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.07em; color: var(--gray-500); text-align: center; }
  .calc-cta-btn {
    display: block; width: 100%; /*font-family: 'Open Sans', sans-serif;*/
    font-size: 16px; font-weight: 800; padding: 13px; border-radius: 10px;
    text-align: center; text-decoration: none; letter-spacing: 0.01em;
    transition: background 0.15s, transform 0.1s;
  }
  .calc-cta-btn.join { background: var(--white); color: var(--blue); border: 2px solid var(--blue); }
  .calc-cta-btn.join:hover { background: var(--blue-pale); transform: scale(1.02); }
  .calc-cta-btn.apply { color: white; background-color: var(--blue); border: 2px solid var(--blue); }
  .calc-cta-btn.apply:hover { color: white; background-color: var(--blue); transform: scale(1.02); }
  .pmi-note { font-size: 13px; color: var(--gray-500); margin-top: 20px; line-height: 1.5; text-align: center; }
