@font-face {
  font-family: "Yandex Sans Display";
  src: url("../font/YandexSansDisplay-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Yandex Sans Display";
  src: url("../font/YandexSansDisplay-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* Базовые токены из макета Figma (узел 235:4692) */
:root {
  --bg-page: #171717;
  --bg-header: #18181a;
  --border-subtle: rgba(255, 255, 255, 0.2);
  --text-primary: #ffffff;
  --text-muted: rgba(255, 255, 255, 0.45);
  --accent: #f8604a;
  --field-bg: rgba(255, 255, 255, 0.1);
  --card-gradient: radial-gradient(
    120% 120% at 100% 0%,
    #fdde55 0%,
    #fb9f50 50%,
    #f9804d 75%,
    #f8604a 100%
  );
  --font: "Yandex Sans Display", "Inter", system-ui, -apple-system, sans-serif;
  --radius-pill: 100px;
  --radius-card: 20px;
  --radius-card-outer: 24px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  font-family: var(--font);
  background: var(--bg-page);
  color: var(--text-primary);
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
}

button {
  font: inherit;
  color: inherit;
  border: none;
  background: none;
  cursor: pointer;
  padding: 0;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

/* Header */
.header {
  background: var(--bg-header);
  border-bottom: 1px solid var(--border-subtle);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.35);
}

.header__search-wrap {
  padding: 16px 16px 0;
}

.search-bar {
  display: flex;
  align-items: center;
  min-height: 56px;
  padding: 2px 6px 2px 2px;
  background: var(--bg-header);
  border: 2px solid var(--border-subtle);
  border-radius: 28px;
  gap: 0;
}

.search-bar__logo {
  flex-shrink: 0;
  padding: 4px 0 4px 4px;
  line-height: 0;
}

.search-bar__field {
  flex: 1;
  min-width: 0;
  padding: 0 8px 0 12px;
  display: flex;
  align-items: center;
  min-height: 52px;
}

.search-bar__query {
  font-size: 18px;
  font-weight: 400;
  color: var(--text-primary);
}

.search-bar__close {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Nav */
.nav {
  padding-left: 16px;
  min-height: 44px;
}

.nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: nowrap;
  gap: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.nav__list::-webkit-scrollbar {
  display: none;
}

.nav__link {
  display: block;
  padding: 0 10px;
  font-size: 15px;
  font-weight: 400;
  line-height: 44px;
  text-transform: lowercase;
  color: var(--text-muted);
  text-decoration: none;
  white-space: nowrap;
  position: relative;
}

.nav__link:first-child {
  padding-left: 0;
}

.nav__link--active {
  font-weight: 700;
  color: var(--text-primary);
}

.nav__link--active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
}

/* Main */
.main {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 16px;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
}

.hero {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  text-align: left;
}

.hero__title {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  line-height: normal;
  width: 100%;
}

.hero__badge {
  display: flex;
  align-items: center;
  gap: 4px;
}

.hero__badge-text {
  font-size: 14px;
  font-weight: 400;
}

/* Cards */
.cards-strip {
  margin: 0 -16px;
}

.cards-strip__scroll {
  display: flex;
  gap: 4px;
  padding: 0 16px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
}

.cards-strip__scroll::-webkit-scrollbar {
  display: none;
}

.info-card {
  flex: 0 0 auto;
  scroll-snap-align: start;
  padding: 3px;
  border: 1px solid var(--accent);
  border-radius: var(--radius-card-outer);
}

.info-card__inner {
  position: relative;
  width: 90px;
  height: 90px;
  padding: 8px;
  border-radius: var(--radius-card);
  overflow: hidden;
  background: var(--card-gradient);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.info-card__deco {
  position: absolute;
  top: 0px;
  left: 71%;
  transform: translateX(-50%);
  width: 56px;
  height: 56px;
  object-fit: contain;
  object-position: center;
  pointer-events: none;
}

.info-card__text {
  position: relative;
  margin: 0;
  align-self: flex-start;
  text-align: left;
  font-size: 12px;
  font-weight: 700;
  line-height: normal;
  color: var(--text-primary);
}

/* Field pills + range */
.field-pill {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 56px;
  padding: 8px 24px 32px;
  background: var(--field-bg);
  border-radius: var(--radius-pill);
  width: 100%;
}

.field-pill__label {
  font-size: 12px;
  font-weight: 400;
  color: var(--text-muted);
}

.field-pill__value {
  font-size: 16px;
  font-weight: 700;
  margin-top: 2px;
}

.field-pill__slider {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 8px;
  padding: 0 24px;
}

.range {
  --range-pct: 50%;
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 24px;
  margin: 0;
  background: transparent;
}

.range:focus {
  outline: none;
}

.range:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 4px;
}

.range::-webkit-slider-runnable-track {
  height: 4px;
  border-radius: 4px;
  background: linear-gradient(
    to right,
    var(--accent) 0%,
    var(--accent) var(--range-pct),
    rgba(255, 255, 255, 0.15) var(--range-pct),
    rgba(255, 255, 255, 0.15) 100%
  );
}

.range::-moz-range-track {
  height: 4px;
  border-radius: 4px;
  background: linear-gradient(
    to right,
    var(--accent) 0%,
    var(--accent) var(--range-pct),
    rgba(255, 255, 255, 0.15) var(--range-pct),
    rgba(255, 255, 255, 0.15) 100%
  );
}

.range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 16px;
  height: 16px;
  margin-top: -6px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.2);
}

.range::-moz-range-thumb {
  width: 16px;
  height: 16px;
  border: none;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.2);
}

/* Toggle */
.toggle-row {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
}

.toggle-row__text {
  flex: 1;
  min-width: 0;
}

.toggle-row__title {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
}

.toggle-row__sub {
  margin: 2px 0 0;
  font-size: 14px;
  font-weight: 400;
  color: var(--text-muted);
}

.switch {
  position: relative;
  flex-shrink: 0;
  width: 40px;
  height: 24px;
  cursor: pointer;
}

.switch__input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.switch__track {
  position: absolute;
  inset: 0;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.2);
  transition: background 0.2s ease;
}

.switch__track::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  transition: transform 0.2s ease;
}

.switch__input:checked + .switch__track {
  background: var(--accent);
}

.switch__input:checked + .switch__track::after {
  transform: translateX(16px);
}

.switch__input:focus-visible + .switch__track {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* CTA */
.cta {
  width: 100%;
  min-height: 56px;
  padding: 0 24px;
  border-radius: var(--radius-pill);
  background: var(--accent);
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta:active {
  filter: brightness(0.95);
}

.calculator {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Шаг 2 — выбор МФО (узел 237:4999) */
.main--step2 {
  gap: 20px;
}

.param-summary {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.param-summary__icon-wrap {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-pill);
  background: var(--field-bg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.param-summary__text {
  flex: 1;
  min-width: 0;
}

.param-summary__label {
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  color: var(--text-muted);
}

.param-summary__value {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  color: var(--text-primary);
}

.param-summary__edit {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-pill);
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  background: transparent;
  cursor: pointer;
}

.param-summary__edit:active {
  opacity: 0.85;
}

.step2-intro {
  display: flex;
  flex-direction: column;
  gap: 2px;
  width: 100%;
}

.step2-intro__title {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  line-height: normal;
}

.step2-intro__text {
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  color: var(--text-primary);
}

.reg-info {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 56px;
  padding: 8px 12px;
  background: var(--field-bg);
  border-radius: var(--radius-card);
  width: 100%;
}

.reg-info__icon-wrap {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: var(--radius-pill);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.reg-info__icon {
  width: 32px;
  height: 32px;
  object-fit: cover;
}

.reg-info__text {
  margin: 0;
  flex: 1;
  min-width: 0;
  font-size: 12px;
  font-weight: 400;
  line-height: normal;
}

.mfo-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
}

.mfo-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 0;
  width: 100%;
}

.mfo-row__logo-wrap {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: var(--radius-pill);
  background: var(--field-bg);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mfo-row__logo {
  width: 32px;
  height: 32px;
  object-fit: cover;
}

.mfo-row__text {
  flex: 1;
  min-width: 0;
}

.mfo-row__title {
  margin: 0;
  font-size: 14px;
  font-weight: 400;
}

.mfo-row__sub {
  margin: 2px 0 0;
  font-size: 12px;
  font-weight: 400;
  color: var(--text-muted);
}

/* Переключатели МФО: в макете фон «вкл» нейтральный серый, не коралловый */
.switch--neutral .switch__input:checked + .switch__track {
  background: rgba(255, 255, 255, 0.32);
}

.switch--neutral .switch__input:focus-visible + .switch__track {
  outline-color: rgba(255, 255, 255, 0.5);
}

.cta--compact {
  min-height: 44px;
  font-size: 14px;
  font-weight: 700;
}

.mfo-consent {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  cursor: pointer;
}

.mfo-consent__input {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.mfo-consent__box {
  width: 20px;
  height: 20px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.08);
  flex-shrink: 0;
  position: relative;
}

.mfo-consent__box::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 10px;
  height: 10px;
  border-radius: 2px;
  background: var(--accent);
  opacity: 0;
  transition: opacity 0.15s ease;
}

.mfo-consent__input:checked + .mfo-consent__box::after {
  opacity: 1;
}

.mfo-consent__input:indeterminate + .mfo-consent__box::after {
  opacity: 1;
  width: 10px;
  height: 2px;
  border-radius: 1px;
}

.mfo-consent__text {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-primary);
}

/* Шаг 3 — лист «Параметры» поверх шага 2 (Figma 240:2261) */
.sheet-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
}

.sheet-overlay[hidden] {
  display: none !important;
}

.sheet-overlay__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  border: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
}

.sheet-panel {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 390px;
  margin: 0 auto;
  padding: 16px;
  padding-bottom: max(16px, env(safe-area-inset-bottom));
  background: #232325;
  border-radius: 16px 16px 0 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-height: min(90vh, 800px);
  overflow-y: auto;
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.45);
}

.sheet-panel__header {
  display: flex;
  justify-content: flex-end;
  width: 100%;
}

.sheet-close {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: var(--radius-pill);
  background: var(--field-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  cursor: pointer;
}

.sheet-close:active {
  opacity: 0.9;
}

.sheet-panel__title {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  line-height: normal;
}

body.sheet-open {
  overflow: hidden;
}

/* Шаг 3 — анкета (Figma 238:1423) */
.main--step3 {
  gap: 20px;
  padding-bottom: 32px;
}

.step3-hero {
  display: flex;
  flex-direction: column;
  gap: 2px;
  width: 100%;
}

.step3-hero__title {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  line-height: normal;
}

.step3-hero__text {
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.form-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.form-section__title {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  line-height: normal;
}

.form-pill-wrap {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
}

.form-pill {
  display: flex;
  align-items: center;
  min-height: 56px;
  padding: 0 24px;
  background: var(--field-bg);
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  width: 100%;
}

.form-pill--stacked {
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  padding-top: 8px;
  padding-bottom: 8px;
}

.form-pill__label {
  font-size: 12px;
  font-weight: 400;
  color: var(--text-muted);
  margin-bottom: 2px;
}

.form-pill__value-input {
  width: 100%;
  border: none;
  background: transparent;
  font: inherit;
  font-size: 16px;
  font-weight: 400;
  color: var(--text-primary);
  padding: 0;
  margin: 0;
}

.form-pill__value-input:focus {
  outline: none;
}

.form-pill__input {
  width: 100%;
  border: none;
  background: transparent;
  font: inherit;
  font-size: 16px;
  font-weight: 400;
  color: var(--text-primary);
  padding: 0;
}

.form-pill__input::placeholder {
  color: var(--text-muted);
}

.form-pill__input:focus {
  outline: none;
}

.form-pill--error {
  border-color: var(--accent);
}

.form-pill__error {
  margin: 0;
  padding: 4px 8px 0;
  font-size: 12px;
  font-weight: 400;
  color: var(--accent);
}

.form-pill--select {
  position: relative;
  padding-right: 40px;
  background-image: url("../assets/step3-arrow-down.svg");
  background-repeat: no-repeat;
  background-position: right 20px center;
  background-size: 12px 12px;
}

.form-pill__select {
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  border: none;
  background: transparent;
  font: inherit;
  font-size: 16px;
  font-weight: 400;
  color: var(--text-muted);
  padding: 0;
  cursor: pointer;
}

.form-pill__select:focus {
  outline: none;
  color: var(--text-primary);
}

.form-pill__select option {
  color: #111;
  background: #fff;
}

.form-hint {
  margin: 0;
  font-size: 12px;
  font-weight: 400;
  line-height: normal;
  color: var(--text-muted);
}

.consent {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  width: 100%;
  cursor: pointer;
  font-size: 14px;
  line-height: normal;
}

.consent__input {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.consent__box {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 8px;
  background: var(--field-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

.consent__tick {
  opacity: 0;
  transition: opacity 0.15s ease;
}

.consent__input:checked + .consent__box .consent__tick {
  opacity: 1;
}

.consent__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.consent__line {
  color: var(--text-primary);
}

.consent__more {
  color: var(--text-muted);
}

/* Шаг 4 — получение расчётов (Figma 242:2245) */
.main--step4 {
  gap: 20px;
  padding-bottom: 32px;
}

.progress-card {
  width: 100%;
  padding: 24px 20px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  text-align: center;
}

.progress-ring-wrap {
  position: relative;
  width: 140px;
  height: 140px;
  margin: 0 auto 20px;
}

.progress-ring {
  display: block;
  width: 140px;
  height: 140px;
}

.progress-ring__track {
  stroke: rgba(255, 255, 255, 0.12);
}

.progress-ring__value {
  stroke: var(--accent);
  transform: rotate(-90deg);
  transform-origin: 70px 70px;
}

.progress-ring__label {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  pointer-events: none;
}

.progress-card__title {
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 700;
  line-height: normal;
}

.progress-card__sub {
  margin: 0 0 24px;
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  color: var(--text-muted);
}

.status-list {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.status-list__item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 400;
  line-height: normal;
}

.status-list__icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}

.status-list__icon--spinner {
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: step4-spin 0.75s linear infinite;
}

@keyframes step4-spin {
  to {
    transform: rotate(360deg);
  }
}

.extra-offers {
  width: 100%;
}

.extra-offers__title {
  margin: 0 0 12px;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  line-height: normal;
}

.extra-offers__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  width: 100%;
}

.offer-card {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 12px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  min-width: 0;
}

.offer-card__head {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 12px;
}

.offer-card__logo {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.offer-card__names {
  min-width: 0;
  text-align: left;
}

.offer-card__name {
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  line-height: normal;
}

.offer-card__tag {
  margin: 4px 0 0;
  font-size: 11px;
  font-weight: 400;
  line-height: normal;
  color: var(--text-muted);
}

.offer-card__sum-label {
  margin: 0;
  font-size: 11px;
  font-weight: 400;
  color: var(--text-muted);
  text-align: left;
}

.offer-card__sum {
  margin: 4px 0 12px;
  font-size: 15px;
  font-weight: 700;
  text-align: left;
  line-height: normal;
}

.offer-card__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 36px;
  padding: 0 8px;
  border: none;
  border-radius: 12px;
  background: var(--accent);
  color: var(--text-primary);
  font: inherit;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  margin-top: auto;
}

.offer-card__btn:active {
  filter: brightness(0.95);
}

/* Шаг 5 — экран предложений (Figma 240:2075) */
.main--step5 {
  gap: 20px;
  padding-bottom: 32px;
}

.offers-approved {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.offers-approved__title {
  margin: 0 0 4px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.25;
}

.offer-wide {
  background: #2a2a2a;
  border-radius: 16px;
  padding: 14px 16px 16px;
  width: 100%;
}

.offer-wide__top {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

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

.offer-wide__logo {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  object-fit: contain;
}

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

.offer-wide__name {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  line-height: normal;
}

.offer-wide__tag {
  margin: 4px 0 0;
  font-size: 13px;
  font-weight: 400;
  line-height: normal;
  color: var(--text-muted);
}

.offer-wide__cta {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border: none;
  border-radius: 12px;
  background: var(--accent);
  color: var(--text-primary);
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
}

.offer-wide__cta:active {
  filter: brightness(0.95);
}

.offer-wide__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.offer-wide__stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.offer-wide__stat-label {
  font-size: 12px;
  font-weight: 400;
  color: var(--text-muted);
}

.offer-wide__stat-value {
  font-size: 16px;
  font-weight: 700;
  line-height: normal;
}

.offers-pre {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.offers-pre__title {
  margin: 0;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.3;
}

.offers-pre__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  width: 100%;
}

.offer-tile {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 12px;
  background: #2a2a2a;
  border-radius: 14px;
  min-width: 0;
}

.offer-tile__head {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 10px;
}

.offer-tile__logo {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.offer-tile__name {
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  line-height: normal;
}

.offer-tile__tag {
  margin: 2px 0 0;
  font-size: 11px;
  font-weight: 400;
  line-height: normal;
  color: var(--text-muted);
}

.offer-tile__sum-label {
  margin: 0;
  font-size: 11px;
  font-weight: 400;
  color: var(--text-muted);
}

.offer-tile__sum {
  margin: 2px 0 10px;
  font-size: 15px;
  font-weight: 700;
  line-height: normal;
}

.offer-tile__btn {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 36px;
  padding: 0 8px;
  border: none;
  border-radius: 10px;
  background: var(--accent);
  color: var(--text-primary);
  font: inherit;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}

.offer-tile__btn:active {
  filter: brightness(0.95);
}
