:root {
  --bg: #f0f5fa;
  --surface: #ffffff;
  --surface-soft: #f5f9fd;
  --surface-muted: #e8edf2;
  --text: #555555;
  --title: #283d4a;
  --muted: #6b7280;
  --border: #e5eaef;
  --border-strong: #cbd5e1;
  --green: #4caf50;
  --green-hover: #43a047;
  --green-press: #228a4a;
  --blue: #6a89cc;
  --dark: #253946;
  --dark-2: #1f313d;
  --danger: #b91c1c;
  --radius: 12px;
  --radius-md: 12px;
  --shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-soft: 0 2px 8px rgba(0, 0, 0, 0.06);
}

html {
  background: var(--bg);
  overflow-x: hidden;
}

body {
  min-width: 320px;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
}

body,
button,
input,
select,
textarea {
  letter-spacing: 0;
}

.container {
  width: min(1400px, calc(100% - 32px));
  margin: 0 auto;
}

.header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--dark);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.08);
}

.header__inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  font-size: 22px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
}

.logo::before {
  content: "";
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--green), #7bd66d);
  box-shadow: inset 0 0 0 5px rgba(255, 255, 255, 0.2);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
  flex-wrap: wrap;
}

.nav a {
  color: rgba(255, 255, 255, 0.88);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.18s ease;
}

.nav a:hover,
.nav a:focus-visible {
  color: #ffffff;
}

.hero {
  background: var(--bg);
  padding: 0 0 8px;
}

.hero__notice {
  min-height: 34px;
  padding: 8px 0;
  color: rgba(65, 73, 82, 0.72);
  font-size: 11px;
  line-height: 1.4;
  text-align: center;
  white-space: normal;
  overflow-wrap: anywhere;
  border-bottom: 1px solid rgba(194, 192, 192, 0.72);
}

.hero__content {
  padding: 22px 8px 10px;
  text-align: center;
}

.hero h1 {
  max-width: 100%;
  color: var(--title);
  font-size: 30px;
  font-weight: 650;
  line-height: 1.25;
  margin: 0 auto 8px;
  overflow-wrap: anywhere;
}

.hero__divider {
  width: 100%;
  height: 2px;
  margin: 0 auto 20px;
  border-radius: 2px;
  background: var(--green);
}

.hero__summary {
  width: 100%;
  max-width: 1150px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin: 0 auto 16px;
  padding: 8px 14px;
  list-style: none;
  background: #ffffff;
  border: 1px solid #eef0f2;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  color: #0f172a;
  font-size: 13px;
  line-height: 1.25;
}

.hero__summary li {
  position: relative;
  padding-left: 21px;
  white-space: nowrap;
}

.hero__summary li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 15px;
  height: 15px;
  transform: translateY(-50%);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 15px 15px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23059B66' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
}

.hero__text {
  max-width: 1150px;
  margin: 0 auto 18px;
  color: #334155;
  font-size: 14px;
  line-height: 1.7;
  text-align: justify;
}

.eyebrow {
  color: var(--green);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}

.selection-panel {
  width: 100%;
  min-width: 0;
  max-width: 1150px;
  display: grid;
  grid-template-columns: minmax(190px, 1fr) repeat(3, minmax(150px, 210px)) auto;
  align-items: end;
  gap: 12px;
  margin: 0 auto;
  padding: 14px;
  background: #ffffff;
  border: 1px solid #eef0f2;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  text-align: left;
}

.selection-panel__head {
  display: grid;
  gap: 4px;
}

.selection-panel h2 {
  color: var(--title);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
}

.selector-field {
  min-width: 0;
  display: grid;
  gap: 6px;
  color: var(--title);
  font-size: 13px;
  font-weight: 700;
}

.selector-field input,
.selector-field select,
.calculator-field input[type="number"],
.calculator-field select,
.field input,
.field select,
.field textarea {
  width: 100%;
  min-width: 0;
  min-height: 40px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #ffffff;
  color: #475569;
  padding: 8px 12px;
  outline: none;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.selector-field input:focus,
.selector-field select:focus,
.calculator-field input[type="number"]:focus,
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--green);
}

.selector-reset,
.cookie-banner__button {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 10px;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.selector-reset {
  background: var(--green);
  color: #ffffff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
}

.selector-reset:hover {
  background: var(--green-hover);
  transform: translateY(-1px);
}

.steps-strip {
  background: var(--bg);
  padding: 16px 0 8px;
}

.steps-list {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.steps-list__item {
  position: relative;
  flex: 1;
  display: grid;
  justify-items: center;
  gap: 10px;
  text-align: center;
}

.steps-list__icon {
  position: relative;
  z-index: 1;
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--border-strong);
  border-radius: 50%;
  background: #ffffff;
  color: #475569;
  font-size: 18px;
  font-weight: 700;
}

.steps-list__connector {
  position: absolute;
  top: 28px;
  left: -50%;
  right: 50%;
  height: 1.5px;
  background: var(--border-strong);
}

.steps-list h2 {
  color: var(--title);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: 4px;
}

.steps-list p {
  max-width: 220px;
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.4;
}

.section {
  padding: 34px 0;
}

.section--catalog {
  background: var(--bg);
}

.section--calculator,
.section--guide,
.section--light {
  background: var(--bg);
}

.catalog-head,
.calculator-head {
  max-width: 1150px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin: 0 auto 18px;
}

.catalog-head h2,
.calculator-head h2,
.guide-grid h2,
.info-card h2,
.disclaimer h1,
.legal-document h1 {
  color: var(--title);
  font-weight: 650;
  line-height: 1.25;
}

.catalog-head h2,
.calculator-head h2,
.guide-grid h2 {
  font-size: 26px;
  margin-top: 4px;
}

.catalog-head p,
.calculator-head p,
.guide-lead {
  max-width: 700px;
  color: #475569;
  font-size: 14px;
  line-height: 1.6;
}

.offers-count {
  flex: 0 0 auto;
  color: var(--title);
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}

.filters {
  max-width: 1400px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 0 auto 20px;
}

.filter-btn {
  min-height: 36px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--surface-soft);
  color: var(--text);
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.18s ease, border-color 0.18s ease;
}

.filter-btn:hover,
.filter-btn.active {
  background: #dde3ea;
  border-color: var(--border);
}

.status {
  max-width: 1150px;
  margin: 0 auto 16px;
  padding: 16px;
  color: #475569;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.status.hidden,
.hidden {
  display: none !important;
}

.offers-table-head {
  display: none;
}

.offers-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(260px, 1fr));
  gap: 20px;
  max-width: 1400px;
  margin: 0 auto;
}

.offer-card {
  width: 100%;
  min-height: 260px;
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 10px;
  padding: 20px;
  background: #ffffff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.offer-card__header,
.offer-card__brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.offer-card__header {
  justify-content: space-between;
}

.offer-card__brand {
  min-width: 0;
}

.offer-card__logo {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 12px;
  background: #d9d9d9;
  color: var(--title);
  font-size: 15px;
  font-weight: 800;
  text-align: center;
  line-height: 1;
}

.offer-card__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.offer-card__company {
  min-width: 0;
  color: var(--title);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.offer-card__info {
  width: 30px;
  height: 30px;
  min-width: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e6e6e6;
  border-radius: 6px;
  background: #ffffff;
  color: #aaaaaa;
  cursor: default;
  padding: 0;
}

.offer-card__info:disabled {
  opacity: 1;
}

.offer-card__info span {
  width: 14px;
  height: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 10px;
  font-weight: 600;
  line-height: 1;
}

.offer-card__badge,
.badge,
.benefit {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--surface-soft);
  color: var(--text);
  padding: 4px 14px;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.3;
}

.badge--ok {
  background: #dcfce7;
  color: #166534;
  border-color: #bbf7d0;
}

.badge--off {
  background: #fee2e2;
  color: #991b1b;
  border-color: #fecaca;
}

.offer-card__details {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.offer-card__row {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.offer-card__detail-icon {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  color: var(--blue);
}

.offer-card__detail-icon svg {
  width: 18px;
  height: 18px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.offer-card__label {
  flex: 0 0 auto;
  color: var(--title);
  font-size: 14px;
  font-weight: 700;
}

.offer-card__value {
  flex: 1 1 auto;
  min-width: 0;
  color: var(--text);
  font-size: 14px;
  text-align: right;
  overflow-wrap: anywhere;
}

.offer-card__button {
  justify-self: center;
  min-height: 41px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: var(--green);
  color: #ffffff;
  padding: 12px 30px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
  transition: background 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.offer-card__button:hover {
  background: var(--green-hover);
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.offer-card__button:visited {
  color: #ffffff;
}

.offer-card__button:active {
  background: var(--green-press);
  transform: translateY(0);
}

.catalog-pagination {
  max-width: 1150px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin: 24px auto 0;
}

.catalog-pagination__status {
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.calculator-grid {
  max-width: 1150px;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: 20px;
  margin: 0 auto;
}

.calculator-form,
.calculator-result,
.guide-list article,
.info-card,
.disclaimer,
.legal-document {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.calculator-form,
.calculator-result {
  padding: 22px;
}

.calculator-form {
  display: grid;
  gap: 18px;
}

.calculator-form__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.calculator-form__top h3 {
  color: var(--title);
  font-size: 20px;
  line-height: 1.2;
}

.segmented-control {
  display: inline-grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 10px;
}

.segmented-control__button {
  min-height: 38px;
  border: none;
  background: var(--surface-soft);
  color: var(--muted);
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}

.segmented-control__button.is-active {
  background: var(--green);
  color: #ffffff;
}

.calculator-field {
  display: grid;
  gap: 9px;
}

.calculator-field__row,
.calculator-field--single {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(130px, 180px);
  gap: 12px;
  align-items: center;
}

.calculator-field label,
.calculator-field--single span {
  color: var(--title);
  font-size: 14px;
  font-weight: 700;
}

.calculator-field input[type="range"] {
  width: 100%;
  accent-color: var(--green);
}

.calculator-result {
  display: grid;
  align-content: start;
  gap: 18px;
  background: var(--dark);
  color: #ffffff;
}

.calculator-result .eyebrow {
  color: #b6f3b9;
}

.calculator-result__main {
  display: grid;
  gap: 6px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.calculator-result__main span {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 700;
}

.calculator-result__main strong {
  font-size: 34px;
  line-height: 1.05;
}

.calculator-result__stats {
  display: grid;
  gap: 10px;
}

.calculator-result__stats div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.calculator-result__stats dt,
.calculator-result__summary {
  color: rgba(255, 255, 255, 0.72);
}

.calculator-result__stats dd {
  margin: 0;
  font-weight: 800;
  text-align: right;
}

.guide-grid,
.info-grid {
  max-width: 1150px;
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  gap: 20px;
  margin: 0 auto;
}

.info-grid--single {
  grid-template-columns: 1fr;
}

.guide-list {
  display: grid;
  gap: 12px;
}

.guide-list article,
.info-card,
.disclaimer {
  padding: 22px;
}

.guide-list span {
  color: var(--green);
  font-weight: 800;
}

.guide-list h3,
.info-card h2 {
  color: var(--title);
  font-size: 20px;
  line-height: 1.25;
  margin: 8px 0;
}

.guide-list p,
.info-card p,
.info-card li,
.disclaimer p {
  color: #475569;
}

.info-card ul {
  padding-left: 20px;
}

.info-card li + li {
  margin-top: 8px;
}

.info-card--warning {
  border-color: #cfe8d1;
}

.footer {
  background: var(--dark);
  color: #ffffff;
}

.footer__inner {
  display: grid;
  grid-template-columns: minmax(220px, 1.2fr) repeat(3, minmax(160px, 1fr));
  gap: 28px;
  padding: 36px 0 28px;
}

.footer__brand {
  display: grid;
  gap: 14px;
}

.footer__brand p,
.footer__col p,
.footer__bottom {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

.footer__col {
  display: grid;
  align-content: start;
  gap: 8px;
}

.footer__col h2 {
  color: #ffffff;
  font-size: 16px;
  margin-bottom: 4px;
}

.footer__col a,
.footer__links a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  text-decoration: none;
}

.footer__col a:hover,
.footer__links a:hover {
  color: #ffffff;
}

.footer__bottom {
  padding: 16px 0 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.cookie-banner {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  width: min(560px, calc(100% - 36px));
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 12px 34px rgba(23, 32, 51, 0.16);
}

.cookie-banner__content {
  display: flex;
  gap: 18px;
  align-items: center;
  padding: 18px;
}

.cookie-banner__text strong {
  display: block;
  color: var(--title);
  margin-bottom: 4px;
}

.cookie-banner__text p {
  color: #475569;
  font-size: 14px;
}

.cookie-banner__text a {
  color: var(--green);
  text-decoration: none;
}

.cookie-banner__actions {
  display: flex;
  gap: 8px;
  flex: 0 0 auto;
}

.cookie-banner__button--accept {
  background: var(--green);
  color: #ffffff;
}

.cookie-banner__button--decline {
  background: var(--surface-soft);
  color: var(--title);
  border-color: var(--border);
}

.legal-page {
  background: var(--bg);
}

.legal-document {
  max-width: 920px;
  margin: 0 auto;
  padding: 34px;
}

.legal-document h1 {
  font-size: 34px;
  margin-bottom: 12px;
}

.legal-document h2 {
  color: var(--title);
  font-size: 22px;
  line-height: 1.3;
  margin: 26px 0 10px;
}

.legal-document p,
.legal-document li {
  color: #475569;
  line-height: 1.7;
}

.legal-document p + p,
.legal-document ul + p,
.legal-document ol + p {
  margin-top: 12px;
}

.legal-document ul,
.legal-document ol {
  padding-left: 22px;
  margin: 10px 0 0;
}

.legal-document a {
  color: var(--green);
  text-decoration: none;
}

.legal-document a:hover {
  text-decoration: underline;
}

.legal-document__lead {
  color: var(--muted);
  font-size: 18px;
  margin-bottom: 24px;
}

.legal-contacts {
  background: var(--surface-soft);
  border-radius: var(--radius);
  padding: 20px;
  margin: 18px 0;
}

.disclaimer {
  max-width: 820px;
  margin: 0 auto;
}

.disclaimer h1 {
  font-size: 34px;
  margin-bottom: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #ffffff;
  color: var(--title);
  padding: 10px 14px;
  font-size: 14px;
  cursor: pointer;
}

.btn--primary {
  background: var(--green);
  color: #ffffff;
  border-color: var(--green);
}

.btn--secondary {
  background: var(--surface-soft);
}

.btn--ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.28);
  color: #ffffff;
}

.btn--danger {
  background: #fee2e2;
  border-color: #fecaca;
  color: #991b1b;
}

.btn--small {
  padding: 6px 10px;
  font-size: 13px;
}

@media (max-width: 1200px) {
  .offers-list {
    grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  }
}

@media (max-width: 980px) {
  .selection-panel,
  .calculator-grid,
  .guide-grid,
  .info-grid,
  .footer__inner {
    grid-template-columns: 1fr;
  }

  .catalog-head,
  .calculator-head {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .container {
    width: min(100% - 24px, 1400px);
  }

  .header__inner {
    min-height: 68px;
  }

  .nav {
    gap: 14px;
  }

  .hero__notice {
    max-width: 320px;
    min-height: auto;
    padding: 7px 8px;
  }

  .hero h1 {
    max-width: 340px;
    font-size: 24px;
    line-height: 1.15;
  }

  .hero__text {
    text-align: left;
  }

  .hero__summary {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    padding: 10px;
    font-size: 15px;
  }

  .hero__summary li {
    white-space: normal;
  }

  .steps-list {
    flex-direction: column;
    gap: 16px;
  }

  .steps-list__item {
    grid-template-columns: 56px minmax(0, 1fr);
    justify-items: start;
    align-items: start;
    text-align: left;
  }

  .steps-list__connector {
    display: none;
  }

  .steps-list p {
    max-width: none;
  }

  .filters {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 4px 2px 8px;
    scroll-snap-type: x mandatory;
  }

  .filter-btn {
    flex: 0 0 auto;
    scroll-snap-align: start;
  }

  .filters::-webkit-scrollbar {
    height: 0;
  }

  .cookie-banner__content,
  .cookie-banner__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-banner {
    right: 12px;
    left: 12px;
    width: auto;
  }
}

@media (max-width: 560px) {
  .header__inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    padding: 14px 0;
  }

  .nav {
    justify-content: flex-start;
  }

  .nav a {
    font-size: 14px;
  }

  .hero__content {
    padding-top: 18px;
  }

  .selection-panel,
  .calculator-form,
  .calculator-result,
  .guide-list article,
  .info-card,
  .legal-document {
    padding: 18px;
  }

  .offers-list {
    grid-template-columns: 1fr;
  }

  .offer-card__company,
  .offer-card__label,
  .offer-card__value {
    font-size: 13px;
  }

  .offer-card__button {
    width: 100%;
    padding: 11px 18px;
    font-size: 14px;
  }

  .calculator-field__row,
  .calculator-field--single {
    grid-template-columns: 1fr;
  }

  .calculator-result__main strong {
    font-size: 30px;
  }

  .catalog-head h2,
  .calculator-head h2,
  .guide-grid h2,
  .legal-document h1,
  .disclaimer h1 {
    font-size: 26px;
  }
}
