.rdn-budget-page {
  --budget-ink: #172033;
  --budget-muted: #5f6f85;
  --budget-blue: #0277bd;
  --budget-blue-bright: #03a9f4;
  --budget-blue-soft: #eaf6fb;
  --budget-coral: var(--rdn-red, #ed5b55);
  --budget-line: rgba(23, 32, 51, 0.16);
  --budget-stroke: #d8e1eb;
  --budget-surface: #fff;
  overflow: clip;
  color: var(--budget-ink);
  background: var(--rdn-bg);
}

.rdn-budget-page a,
.rdn-budget-page button,
.rdn-budget-page input,
.rdn-budget-page select,
.rdn-budget-page textarea {
  font-family: inherit;
}

.rdn-budget-page a:focus-visible,
.rdn-budget-page button:focus-visible,
.rdn-budget-page input:focus-visible,
.rdn-budget-page select:focus-visible,
.rdn-budget-page textarea:focus-visible,
.rdn-budget-page summary:focus-visible {
  outline: 3px solid rgba(2, 119, 189, 0.38);
  outline-offset: 3px;
}

.rdn-budget-breadcrumb {
  padding-block: 18px;
}

.rdn-budget-breadcrumb ol {
  display: flex;
  gap: 9px;
  margin: 0;
  padding: 0;
  color: #8190a6;
  font-size: 11px;
  list-style: none;
}

.rdn-budget-breadcrumb li + li::before {
  margin-right: 9px;
  color: #b1bdcc;
  content: "/";
}

.rdn-budget-breadcrumb a {
  color: #51627a;
  font-weight: 700;
  text-decoration: none;
}

.rdn-budget-hero {
  position: relative;
  isolation: isolate;
  height: var(--rdn-secondary-hero-height);
  padding: var(--rdn-secondary-hero-padding-start) 0 var(--rdn-secondary-hero-padding-end);
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 92%, rgba(3, 169, 244, 0.12), transparent 25%),
    radial-gradient(circle at 88% 4%, rgba(237, 91, 85, 0.1), transparent 24%),
    linear-gradient(135deg, #f4fbfe 0%, #f9fcfd 58%, #fff8f5 100%);
}

.rdn-budget-hero__grid {
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(rgba(23, 32, 51, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 32, 51, 0.025) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.78), transparent 92%);
}

.rdn-budget-hero__ambient {
  position: absolute;
  z-index: -2;
  border-radius: 50%;
  filter: blur(42px);
  pointer-events: none;
}

.rdn-budget-hero__ambient--blue {
  right: 18%;
  bottom: -280px;
  width: 620px;
  height: 620px;
  background: rgba(3, 169, 244, 0.14);
}

.rdn-budget-hero__ambient--coral {
  top: -280px;
  right: -170px;
  width: 590px;
  height: 590px;
  background: rgba(237, 91, 85, 0.12);
}

.rdn-budget-hero__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(390px, 0.62fr);
  gap: clamp(44px, 6vw, 84px);
  align-items: center;
}

.rdn-budget-hero__copy {
  max-width: 790px;
}

.rdn-budget-kicker {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 6px 13px;
  border: 2px solid rgba(3, 169, 244, 0.18);
  border-radius: 999px;
  color: var(--budget-blue);
  background: rgba(234, 246, 251, 0.78);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.rdn-budget-kicker > span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--budget-blue-bright);
  box-shadow: 0 0 0 5px rgba(3, 169, 244, 0.12);
}

.rdn-budget-hero h1 {
  max-width: 790px;
  margin: 16px 0 0;
  color: var(--budget-ink);
  font-size: var(--rdn-secondary-hero-title-size);
  font-weight: 900;
  line-height: 0.99;
  letter-spacing: -0.052em;
  text-wrap: balance;
}

.rdn-budget-hero h1 em {
  display: block;
  color: var(--budget-blue);
  font-style: normal;
}

.rdn-budget-hero__lead {
  max-width: 710px;
  margin: 18px 0 0;
  color: #53627a;
  font-size: clamp(16px, 1.4vw, 18px);
  line-height: 1.6;
}

.rdn-budget-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin-top: 24px;
}

.rdn-budget-button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 28px;
  border: 2px solid transparent;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.01em;
  text-align: center;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.rdn-budget-button:hover,
.rdn-budget-button:focus-visible {
  transform: translateY(-2px);
}

.rdn-budget-button--primary {
  min-width: 220px;
  color: #fff;
  background: var(--budget-coral);
  box-shadow: 0 12px 26px rgba(237, 91, 85, 0.3);
}

.rdn-budget-button--secondary {
  min-width: 158px;
  border-color: rgba(2, 119, 189, 0.3);
  color: #076ca6;
  background: rgba(255, 255, 255, 0.76);
}

.rdn-budget-button > span {
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
}

.rdn-budget-hero__proofs {
  display: flex;
  flex-wrap: wrap;
  gap: 13px 24px;
  margin: 20px 0 0;
  padding: 0;
  color: #58677d;
  font-size: 11px;
  list-style: none;
}

.rdn-budget-hero__proofs li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.rdn-budget-hero__proofs li > span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2e9b5d;
  box-shadow: 0 0 0 4px rgba(46, 155, 93, 0.12);
}

.rdn-budget-hero__sheet {
  position: relative;
  padding: 23px;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.94);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 32px 80px rgba(34, 52, 86, 0.16);
  -webkit-backdrop-filter: blur(22px) saturate(135%);
  backdrop-filter: blur(22px) saturate(135%);
}

.rdn-budget-hero__sheet::after {
  position: absolute;
  top: -86px;
  right: -72px;
  width: 240px;
  height: 240px;
  border: 44px solid rgba(3, 169, 244, 0.06);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.rdn-budget-hero__sheet > header {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--budget-line);
}

.rdn-budget-hero__sheet > header div {
  display: grid;
  gap: 6px;
}

.rdn-budget-hero__sheet > header small {
  color: #6c7b90;
  font-family: ui-monospace, "Cascadia Code", monospace;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.rdn-budget-hero__sheet > header strong {
  font-family: var(--rdn-heading-font);
  font-size: 27px;
  line-height: 1.1;
}

.rdn-budget-hero__sheet > header > span {
  color: #dce6f1;
  font-family: var(--rdn-heading-font);
  font-size: 64px;
  font-weight: 800;
  line-height: 0.82;
  letter-spacing: -0.07em;
}

.rdn-budget-hero__sheet ol {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
}

.rdn-budget-hero__sheet li {
  position: relative;
  display: grid;
  gap: 3px;
  min-height: 68px;
  padding: 14px 48px 13px 0;
  border-bottom: 1px solid var(--budget-line);
}

.rdn-budget-hero__sheet li span {
  color: var(--budget-blue);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.rdn-budget-hero__sheet li strong {
  color: var(--budget-ink);
  font-size: 14px;
}

.rdn-budget-hero__sheet li i {
  position: absolute;
  top: 50%;
  right: 3px;
  color: #c7d3e1;
  font-family: var(--rdn-heading-font);
  font-size: 24px;
  font-style: normal;
  font-weight: 800;
  transform: translateY(-50%);
}

.rdn-budget-hero__sheet > p {
  display: flex;
  gap: 10px;
  align-items: center;
  margin: 16px 0 0;
  color: #526278;
  font-size: 12px;
  line-height: 1.5;
}

.rdn-budget-hero__sheet > p span {
  display: grid;
  width: 23px;
  height: 23px;
  flex: 0 0 23px;
  place-items: center;
  border-radius: 50%;
  color: #176a39;
  background: #e5f7ec;
  font-weight: 900;
}

.rdn-budget-builder {
  padding: clamp(66px, 8vw, 112px) 0;
  background: #fff;
}

.rdn-budget-heading {
  max-width: 780px;
  margin-bottom: 42px;
}

.rdn-budget-heading--center {
  margin-inline: auto;
  text-align: center;
}

.rdn-budget-heading h2 {
  margin: 16px 0 0;
  color: var(--budget-ink);
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.rdn-budget-heading > p:last-child {
  max-width: 720px;
  margin: 16px 0 0;
  color: var(--budget-muted);
  font-size: 16px;
  line-height: 1.7;
}

.rdn-budget-heading--center > p:last-child {
  margin-inline: auto;
}

.rdn-budget-builder__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.39fr);
  gap: clamp(34px, 5vw, 70px);
  align-items: start;
}

.rdn-budget-form {
  display: grid;
  gap: 22px;
}

.rdn-budget-form__section {
  min-width: 0;
  margin: 0;
  padding: clamp(22px, 3vw, 34px);
  border: 2px solid var(--budget-stroke);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 16px 38px rgba(15, 23, 42, 0.055);
}

.rdn-budget-form__section > legend {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 0 9px;
  color: var(--budget-ink);
  font-family: var(--rdn-heading-font);
  font-size: 20px;
  font-weight: 900;
}

.rdn-budget-form__section > legend span {
  display: grid;
  width: 29px;
  height: 29px;
  place-items: center;
  border-radius: 9px;
  color: var(--budget-blue);
  background: var(--budget-blue-soft);
  font-family: var(--rdn-font);
  font-size: 10px;
  font-weight: 900;
}

.rdn-budget-equipment-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.rdn-budget-equipment {
  position: relative;
  display: grid;
  min-height: 118px;
  padding: 18px 17px;
  grid-template-columns: 42px minmax(0, 1fr) 18px;
  gap: 13px;
  align-items: center;
  border: 2px solid var(--budget-stroke);
  border-radius: 16px;
  background: #fbfdff;
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.rdn-budget-equipment:hover,
.rdn-budget-equipment:focus-within,
.rdn-budget-equipment.is-selected {
  border-color: color-mix(in srgb, var(--rdn-option-accent) 78%, transparent);
  background: color-mix(in srgb, var(--rdn-option-accent) 5%, #fff);
  box-shadow: 0 12px 25px color-mix(in srgb, var(--rdn-option-accent) 12%, transparent);
  transform: translateY(-2px);
}

.rdn-budget-equipment input,
.rdn-budget-methods input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.rdn-budget-equipment__icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 13px;
  color: var(--rdn-option-accent);
  background: color-mix(in srgb, var(--rdn-option-accent) 11%, #fff);
}

.rdn-budget-equipment__svg {
  width: 22px;
  height: 22px;
}

.rdn-budget-equipment > span:nth-of-type(2) {
  display: grid;
  gap: 4px;
}

.rdn-budget-equipment strong {
  color: var(--budget-ink);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.25;
}

.rdn-budget-equipment small {
  color: #748298;
  font-size: 11px;
  line-height: 1.35;
}

.rdn-budget-equipment > i {
  width: 19px;
  height: 19px;
  border: 3px solid #b9c6d4;
  border-radius: 50%;
  box-shadow: inset 0 0 0 3px #fff;
}

.rdn-budget-equipment.is-selected > i {
  border-color: var(--rdn-option-accent);
  background: var(--rdn-option-accent);
}

.rdn-budget-fields {
  display: grid;
  gap: 17px;
}

.rdn-budget-fields--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.rdn-budget-field {
  display: grid;
  gap: 8px;
}

.rdn-budget-fields + .rdn-budget-field {
  margin-top: 18px;
}

.rdn-budget-field > span {
  color: #344258;
  font-size: 13px;
  font-weight: 900;
}

.rdn-budget-field > span small {
  color: #77859a;
  font-weight: 500;
}

.rdn-budget-field > span b {
  color: var(--budget-coral);
}

.rdn-budget-field input,
.rdn-budget-field select,
.rdn-budget-field textarea {
  width: 100%;
  border: 2px solid #c6d3e1;
  border-radius: 13px;
  color: var(--budget-ink);
  background: #fbfdff;
  font-size: 15px;
  transition: border-color 150ms ease, box-shadow 150ms ease, background-color 150ms ease;
}

.rdn-budget-field input,
.rdn-budget-field select {
  min-height: 54px;
  padding: 0 16px;
}

.rdn-budget-field textarea {
  min-height: 132px;
  padding: 14px 15px;
  line-height: 1.55;
  resize: vertical;
}

.rdn-budget-field input:focus,
.rdn-budget-field select:focus,
.rdn-budget-field textarea:focus {
  border-color: var(--budget-blue);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(2, 119, 189, 0.1);
}

.rdn-budget-field__help {
  color: #77859a;
  font-size: 11px;
  line-height: 1.5;
}

.rdn-budget-methods {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.rdn-budget-methods label {
  position: relative;
  display: flex;
  min-height: 82px;
  align-items: center;
  padding: 16px 17px 16px 48px;
  border: 2px solid var(--budget-stroke);
  border-radius: 15px;
  background: #fbfdff;
  cursor: pointer;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.rdn-budget-methods label::before {
  position: absolute;
  top: 50%;
  left: 17px;
  width: 18px;
  height: 18px;
  border: 3px solid #b9c6d4;
  border-radius: 50%;
  box-shadow: inset 0 0 0 4px #fff;
  content: "";
  transform: translateY(-50%);
}

.rdn-budget-methods label:hover,
.rdn-budget-methods label:focus-within,
.rdn-budget-methods label.is-selected {
  border-color: rgba(2, 119, 189, 0.72);
  box-shadow: 0 10px 24px rgba(2, 119, 189, 0.1);
  transform: translateY(-2px);
}

.rdn-budget-methods label.is-selected::before {
  border-color: var(--budget-blue);
  background: var(--budget-blue);
}

.rdn-budget-methods label > span {
  display: grid;
  gap: 3px;
}

.rdn-budget-methods strong {
  color: var(--budget-ink);
  font-size: 13px;
  font-weight: 900;
}

.rdn-budget-methods small {
  color: #77859a;
  font-size: 11px;
}

.rdn-budget-form__submit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 23px 24px;
  border: 2px solid rgba(2, 119, 189, 0.26);
  border-radius: 18px;
  background: var(--budget-blue-soft);
}

.rdn-budget-form__submit > div {
  display: grid;
  gap: 4px;
  max-width: 600px;
}

.rdn-budget-form__submit strong {
  color: #164b6a;
  font-size: 13px;
  font-weight: 900;
}

.rdn-budget-form__submit span {
  color: #4f6b7c;
  font-size: 12px;
  line-height: 1.5;
}

.rdn-budget-form__submit button {
  display: inline-flex;
  min-width: 210px;
  min-height: 54px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0 28px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: var(--budget-coral);
  box-shadow: 0 12px 26px rgba(237, 91, 85, 0.3);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.rdn-budget-form__submit button:hover,
.rdn-budget-form__submit button:focus-visible {
  box-shadow: 0 16px 32px rgba(237, 91, 85, 0.35);
  transform: translateY(-2px);
}

.rdn-budget-form__status {
  min-height: 20px;
  margin: -8px 3px 0;
  color: #476276;
  font-size: 12px;
  font-weight: 700;
}

.rdn-budget-form__noscript {
  margin: 0;
  padding: 14px;
  border-radius: 12px;
  color: #73431f;
  background: #fff5e8;
  font-size: 12px;
}

.rdn-budget-form__noscript a {
  color: #8a2f2b;
  font-weight: 800;
}

.rdn-budget-summary {
  position: sticky;
  top: 110px;
  padding: 27px;
  border: 2px solid rgba(23, 32, 51, 0.18);
  border-radius: 22px;
  background: linear-gradient(155deg, #192533, #23384f);
  box-shadow: 0 26px 56px rgba(15, 23, 42, 0.18);
  color: #fff;
}

.rdn-budget-summary > header {
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.rdn-budget-summary > header p {
  margin: 0 0 7px;
  color: #7fd4fb;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.rdn-budget-summary h3 {
  margin: 0;
  color: #fff;
  font-size: 24px;
  line-height: 1.15;
}

.rdn-budget-summary dl {
  display: grid;
  margin: 0;
}

.rdn-budget-summary dl > div {
  display: grid;
  gap: 5px;
  padding: 17px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
}

.rdn-budget-summary dt {
  color: #91a7bd;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.rdn-budget-summary dd {
  margin: 0;
  overflow-wrap: anywhere;
  color: #f1f6fa;
  font-size: 12px;
  font-weight: 650;
  line-height: 1.5;
}

.rdn-budget-summary__note {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 11px;
  margin-top: 20px;
  padding: 15px;
  border: 1px solid rgba(127, 212, 251, 0.16);
  border-radius: 14px;
  background: rgba(127, 212, 251, 0.07);
}

.rdn-budget-summary__note > span {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  color: #172033;
  background: #7fd4fb;
  font-family: Georgia, serif;
  font-size: 15px;
  font-weight: 900;
}

.rdn-budget-summary__note p {
  margin: 0;
  color: #c5d3df;
  font-size: 10px;
  line-height: 1.55;
}

.rdn-budget-summary__note strong {
  display: block;
  margin-bottom: 2px;
  color: #fff;
}

.rdn-budget-summary > a {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  margin-top: 20px;
  color: #8bdcff;
  font-size: 11px;
  font-weight: 800;
  text-decoration: none;
}

.rdn-budget-process {
  padding: clamp(66px, 8vw, 108px) 0;
  background: var(--rdn-bg);
}

.rdn-budget-process__steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: budget-process;
}

.rdn-budget-process__steps li {
  position: relative;
  min-height: 270px;
  padding: 30px;
  overflow: hidden;
  border: 2px solid var(--budget-stroke);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.06);
}

.rdn-budget-process__steps li > span {
  position: absolute;
  top: 22px;
  right: 24px;
  color: #e2e9f1;
  font-family: var(--rdn-heading-font);
  font-size: 48px;
  font-weight: 900;
  line-height: 1;
}

.rdn-budget-process__icon {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 17px;
  color: var(--budget-blue);
  background: var(--budget-blue-soft);
}

.rdn-budget-process__icon svg {
  width: 25px;
  height: 25px;
}

.rdn-budget-process__steps h3 {
  margin: 34px 0 0;
  color: var(--budget-ink);
  font-size: 23px;
  font-weight: 900;
  line-height: 1.2;
}

.rdn-budget-process__steps p {
  margin: 11px 0 0;
  color: var(--budget-muted);
  font-size: 14px;
  line-height: 1.65;
}

.rdn-budget-faq {
  padding: clamp(66px, 8vw, 108px) 0;
  background: #fff;
}

.rdn-budget-faq__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(440px, 1fr);
  gap: clamp(44px, 8vw, 116px);
  align-items: start;
}

.rdn-budget-faq .rdn-budget-heading {
  position: sticky;
  top: 110px;
  margin: 0;
}

.rdn-budget-faq__items {
  display: grid;
  border-top: 2px solid var(--budget-line);
}

.rdn-budget-faq details {
  border-bottom: 2px solid var(--budget-line);
}

.rdn-budget-faq summary {
  display: grid;
  min-height: 76px;
  padding: 21px 0;
  grid-template-columns: minmax(0, 1fr) 34px;
  gap: 22px;
  align-items: center;
  color: var(--budget-ink);
  font-family: var(--rdn-heading-font);
  font-size: 17px;
  font-weight: 900;
  cursor: pointer;
  list-style: none;
}

.rdn-budget-faq summary::-webkit-details-marker {
  display: none;
}

.rdn-budget-faq summary span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  border: 2px solid rgba(2, 119, 189, 0.12);
  color: var(--budget-blue);
  background: var(--budget-blue-soft);
  font-family: var(--rdn-font);
  font-size: 18px;
  transition: transform 160ms ease;
}

.rdn-budget-faq details[open] summary span {
  transform: rotate(45deg);
}

.rdn-budget-faq details p {
  max-width: 720px;
  margin: -2px 50px 23px 0;
  color: var(--budget-muted);
  font-size: 13px;
  line-height: 1.7;
}

.rdn-budget-final {
  padding: 96px 0;
  background: #fff;
}

.rdn-budget-final__panel {
  display: grid;
  min-height: 280px;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 42px;
  padding: 48px 62px;
  border-radius: 30px;
  color: #fff;
  background:
    radial-gradient(circle at 92% 10%, rgba(3, 169, 244, 0.27), transparent 30%),
    linear-gradient(120deg, #172534, #1e3b52 62%, #205f7f);
  box-shadow: 0 28px 62px rgba(23, 37, 52, 0.19);
}

.rdn-budget-final__panel > div:first-child {
  max-width: 760px;
}

.rdn-budget-final .rdn-budget-kicker {
  border-color: rgba(139, 220, 255, 0.28);
  color: #8bdcff;
  background: rgba(139, 220, 255, 0.08);
}

.rdn-budget-final h2 {
  margin: 17px 0 0;
  color: #fff;
  font-size: clamp(34px, 3.5vw, 48px);
  line-height: 1.04;
  letter-spacing: -0.045em;
}

.rdn-budget-final p:last-child {
  max-width: 760px;
  margin: 16px 0 0;
  color: #d6e3ec;
  font-size: 14px;
  line-height: 1.7;
}

.rdn-budget-final .rdn-budget-actions {
  flex: 0 0 auto;
  margin: 0;
  justify-content: flex-end;
}

.rdn-budget-button--light {
  min-width: 178px;
  color: #172033;
  background: #fff;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.17);
}

.rdn-budget-button--glass {
  border-color: rgba(255, 255, 255, 0.28);
  color: #fff;
  background: transparent;
}

@media (max-width: 1199px) {
  .rdn-budget-hero {
    height: auto;
    min-height: var(--rdn-secondary-hero-height);
  }

  .rdn-budget-hero__layout {
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.56fr);
    gap: 48px;
  }

  .rdn-budget-builder__layout {
    grid-template-columns: minmax(0, 1fr) 310px;
    gap: 32px;
  }

  .rdn-budget-equipment-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .rdn-budget-form__submit {
    align-items: stretch;
    flex-direction: column;
  }

  .rdn-budget-form__submit button {
    align-self: flex-start;
  }
}

@media (max-width: 1023px) {
  .rdn-budget-hero {
    height: auto;
    min-height: 0;
    padding-block: 52px 64px;
  }

  .rdn-budget-hero__layout,
  .rdn-budget-builder__layout,
  .rdn-budget-faq__layout {
    grid-template-columns: 1fr;
  }

  .rdn-budget-hero__copy {
    max-width: 780px;
  }

  .rdn-budget-hero h1 {
    font-size: clamp(42px, 8vw, 66px);
  }

  .rdn-budget-hero__sheet {
    max-width: 720px;
  }

  .rdn-budget-summary,
  .rdn-budget-faq .rdn-budget-heading {
    position: static;
  }

  .rdn-budget-summary {
    max-width: none;
  }

  .rdn-budget-process__steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
  }

  .rdn-budget-process__steps li {
    min-height: 250px;
    padding: 24px;
  }

  .rdn-budget-final__panel {
    align-items: flex-start;
    grid-template-columns: 1fr;
  }

  .rdn-budget-final .rdn-budget-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 767px) {
  .rdn-budget-breadcrumb {
    padding-block: 14px;
  }

  .rdn-budget-hero {
    padding-block: 40px 48px;
  }

  .rdn-budget-hero__layout {
    gap: 38px;
  }

  .rdn-budget-hero h1 {
    margin-top: 17px;
    font-size: clamp(34px, 10vw, 46px);
    line-height: 1.02;
  }

  .rdn-budget-hero__lead {
    margin-top: 20px;
    font-size: 15px;
  }

  .rdn-budget-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .rdn-budget-button {
    width: 100%;
  }

  .rdn-budget-hero__proofs {
    display: grid;
    gap: 10px;
  }

  .rdn-budget-hero__sheet {
    padding: 22px;
    border-radius: 21px;
  }

  .rdn-budget-hero__sheet > header strong {
    font-size: 23px;
  }

  .rdn-budget-hero__sheet > header > span {
    font-size: 52px;
  }

  .rdn-budget-builder,
  .rdn-budget-process,
  .rdn-budget-faq {
    padding-block: 58px;
  }

  .rdn-budget-heading {
    margin-bottom: 32px;
  }

  .rdn-budget-heading h2,
  .rdn-budget-final h2 {
    font-size: clamp(27px, 8vw, 36px);
  }

  .rdn-budget-heading > p:last-child {
    font-size: 14px;
  }

  .rdn-budget-form__section {
    padding: 20px;
    border-radius: 18px;
  }

  .rdn-budget-form__section > legend {
    font-size: 16px;
  }

  .rdn-budget-equipment-grid,
  .rdn-budget-fields--two,
  .rdn-budget-methods,
  .rdn-budget-process__steps {
    grid-template-columns: 1fr;
  }

  .rdn-budget-equipment {
    min-height: 88px;
  }

  .rdn-budget-methods label {
    min-height: 70px;
  }

  .rdn-budget-form__submit {
    padding: 20px;
  }

  .rdn-budget-form__submit button {
    width: 100%;
  }

  .rdn-budget-summary {
    padding: 23px;
  }

  .rdn-budget-process__steps li {
    min-height: 220px;
  }

  .rdn-budget-faq__layout {
    gap: 34px;
  }

  .rdn-budget-faq summary {
    min-height: 70px;
    font-size: 14px;
  }

  .rdn-budget-faq details p {
    margin-right: 0;
    font-size: 12px;
  }

  .rdn-budget-final {
    padding-block: 70px;
  }

  .rdn-budget-final__panel {
    width: calc(100% - 24px);
    min-height: 0;
    gap: 28px;
    padding: 34px 24px;
    border-radius: 26px;
  }

  .rdn-budget-final .rdn-budget-actions {
    width: 100%;
  }
}

@media (max-width: 420px) {
  .rdn-budget-kicker {
    font-size: 9px;
    letter-spacing: 0.11em;
  }

  .rdn-budget-form__section {
    padding-inline: 16px;
  }

  .rdn-budget-equipment {
    padding-inline: 14px;
  }

  .rdn-budget-form__submit,
  .rdn-budget-summary {
    padding-inline: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .rdn-budget-page,
  .rdn-budget-page *,
  .rdn-budget-page *::before,
  .rdn-budget-page *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
