
  .rx-thermal-page {
    --rx-navy: #102a43;
    --rx-blue: #2563eb;
    --rx-blue-dark: #0b4fb3;
    --rx-blue-soft: #eaf2ff;
    --rx-slate: #52616f;
    --rx-border: #d9e2ec;
    --rx-bg: #f7f9fc;
    --rx-white: #ffffff;
    --rx-shadow: 0 18px 45px rgba(16, 42, 67, 0.10);
    --rx-radius-lg: 24px;
    --rx-radius-md: 16px;

    max-width: 1200px;
    margin: 0 auto;
    padding: 48px 22px 64px;
    font-family: Calibri, Arial, Helvetica, sans-serif;
    color: var(--rx-navy);
    line-height: 1.75;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    box-sizing: border-box;
  }

  .rx-thermal-page * {
    box-sizing: border-box;
  }

  .rx-thermal-page img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 18px;
    margin: 0 auto;
    box-shadow: 0 12px 32px rgba(16, 42, 67, 0.12);
    background: #eef2f7;
  }

  .rx-hero {
    position: relative;
    overflow: hidden;
    padding: 58px 46px;
    border-radius: 30px;
    background:
      linear-gradient(135deg, rgba(16, 42, 67, 0.96), rgba(37, 99, 235, 0.82)),
      radial-gradient(circle at top right, rgba(255, 255, 255, 0.26), transparent 34%);
    color: #ffffff;
    margin-bottom: 56px;
    box-shadow: var(--rx-shadow);
  }

  .rx-hero::after {
    content: "";
    position: absolute;
    inset: auto -90px -130px auto;
    width: 300px;
    height: 300px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.10);
  }

  .rx-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px;
    margin-bottom: 22px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #dbeafe;
    background: rgba(255, 255, 255, 0.10);
  }

  .rx-hero h1 {
    max-width: 760px;
    margin: 0 0 18px;
    font-size: clamp(34px, 5vw, 58px);
    line-height: 1.08;
    letter-spacing: -0.045em;
    font-weight: 800;
    color: #ffffff;
  }

  .rx-hero p {
    max-width: 780px;
    margin: 0;
    color: #e5edf8;
    font-size: 18px;
  }

  .rx-banner {
    margin-top: 34px;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.22);
  }

  .rx-section {
    margin-bottom: 52px;
    padding: 38px;
    border: 1px solid var(--rx-border);
    border-radius: var(--rx-radius-lg);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 10px 34px rgba(16, 42, 67, 0.06);
  }

  .rx-section-header {
    max-width: 860px;
    margin-bottom: 26px;
  }

  .rx-kicker {
    margin: 0 0 10px;
    color: var(--rx-blue);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  .rx-section h2 {
    margin: 0 0 18px;
    font-size: clamp(26px, 3vw, 38px);
    line-height: 1.18;
    letter-spacing: -0.03em;
    color: var(--rx-navy);
  }

  .rx-section p {
    margin: 0 0 18px;
    color: var(--rx-slate);
    font-size: 16px;
  }

  .rx-media-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    margin: 28px 0 30px;
  }

  .rx-media-grid.rx-single {
    grid-template-columns: 1fr;
  }

  .rx-feature-list,
  .rx-number-list {
    display: grid;
    gap: 14px;
    margin: 22px 0 26px;
    padding: 0;
    list-style: none;
  }

  .rx-feature-list li,
  .rx-number-list li {
    position: relative;
    padding: 17px 18px 17px 48px;
    border: 1px solid var(--rx-border);
    border-radius: var(--rx-radius-md);
    background: var(--rx-bg);
    color: #334e68;
  }

  .rx-feature-list li::before {
    content: "";
    position: absolute;
    left: 18px;
    top: 23px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--rx-blue);
    box-shadow: 0 0 0 6px var(--rx-blue-soft);
  }

  .rx-number-list {
    counter-reset: rx-counter;
  }

  .rx-number-list li {
    counter-increment: rx-counter;
  }

  .rx-number-list li::before {
    content: counter(rx-counter);
    position: absolute;
    left: 16px;
    top: 16px;
    width: 24px;
    height: 24px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: var(--rx-blue);
    color: #ffffff;
    font-size: 13px;
    font-weight: 800;
  }

  .rx-highlight {
    margin-top: 26px;
    padding: 24px 26px;
    border-radius: 20px;
    border: 1px solid #bfdbfe;
    background: linear-gradient(135deg, #eff6ff, #ffffff);
    color: #1f3a5f;
  }

  .rx-highlight strong {
    color: var(--rx-blue);
  }

  .rx-case-result {
    display: grid;
    grid-template-columns: 170px 1fr;
    gap: 24px;
    align-items: center;
    margin-top: 28px;
    padding: 28px;
    border-radius: 24px;
    background: var(--rx-navy);
    color: #ffffff;
    box-shadow: var(--rx-shadow);
  }

  .rx-result-number {
    font-size: 50px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: -0.05em;
    color: #93c5fd;
    white-space: nowrap;
  }

  .rx-case-result p {
    margin: 0;
    color: #e6eef8;
  }

  .rx-quote-section {
    text-align: center;
    padding: 56px 32px;
    border-radius: 30px;
    background:
      linear-gradient(135deg, rgba(16, 42, 67, 0.98), rgba(37, 99, 235, 0.88)),
      radial-gradient(circle at top right, rgba(255, 255, 255, 0.25), transparent 36%);
    color: #ffffff;
    box-shadow: var(--rx-shadow);
  }

  .rx-quote-section h2 {
    margin: 0 0 16px;
    color: #ffffff;
    font-size: clamp(28px, 3vw, 42px);
    letter-spacing: -0.03em;
  }

  .rx-quote-section p {
    max-width: 760px;
    margin: 0 auto 30px;
    color: #e5edf8;
    font-size: 17px;
  }

  .rx-quote-button {
    display: inline-block;
    padding: 15px 36px;
    border-radius: 999px;
    background: #ffffff;
    color: var(--rx-navy);
    text-decoration: none;
    font-size: 17px;
    font-weight: 800;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.20);
    transition: all 0.25s ease;
  }

  .rx-quote-button:hover {
    transform: translateY(-2px);
    background: #eaf2ff;
    color: var(--rx-blue-dark);
  }

  @media (max-width: 860px) {
    .rx-thermal-page {
      padding: 34px 16px 48px;
    }

    .rx-hero,
    .rx-section,
    .rx-quote-section {
      padding: 30px 22px;
    }

    .rx-media-grid,
    .rx-case-result {
      grid-template-columns: 1fr;
    }

    .rx-result-number {
      font-size: 42px;
    }
  }
