:root {
  font-family: "SBSansDisplay", "Segoe UI", Arial, sans-serif;
  --page-bg: #FFFFFF;
  --text: #738189;
  --bold-text: #586267;
  --muted: #71839a;
  --blue: #1c73d1;
  --blue-deep: #0757a9;
  --green: #22c176;
  --line: #c7dfeb;
  --card: #ffffff;
  --shadow: 0 18px 40px rgba(46, 88, 116, 0.14);
  --radius-lg: 24px;
  --radius: 8px;
  --content: min(100%, 1440px);
  color: var(--text);
  background: var(--page-bg);
}

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

@font-face {
  font-family: "SBSansDisplay";
  src: url("fonts/SBSansDisplay-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

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

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  user-select: none;
}

body {
  margin: 0;
  min-width: 320px;
  font-weight: 400;
  color: var(--text);
  /* background:
    radial-gradient(circle at 18% 32%, rgba(69, 204, 221, 0.18), transparent 26rem),
    radial-gradient(circle at 88% 8%, rgba(61, 155, 218, 0.14), transparent 24rem),
    var(--page-bg); */
    background: linear-gradient(0deg, #FFFFFF, #FFFFFF),
      linear-gradient(161.13deg, rgba(240, 245, 255, 0.6) 3.83%, rgba(230, 255, 247, 0.6) 97.32%);
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

hr {
  margin-top: 70px;
  margin-bottom: 0;
  height: 1px;
  border: 1px solid var(--line);
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

img {
  display: block;
  max-width: 100%;
  -webkit-user-drag: none;
  user-drag: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.page-shell {
  width: var(--content);
  margin: 0 auto;
  padding: 20px 20px 32px;
}

.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: min(44.44vw, 640px);
  padding: 0;
  border-radius: 30px;
  overflow: hidden;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.4) 0%, rgba(102, 102, 102, 0) 100%),
    radial-gradient(61.42% 134% at 19.32% 113.53%, #79EFD3 3.41%, #0068D8 52.01%, rgba(0, 104, 216, 0.1) 79.95%, rgba(13, 100, 191, 0) 100%),
    url("img/first_screen_bg.webp");
  background-position: center;
  background-size: cover;
  isolation: isolate;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 45%;
  background: linear-gradient(0deg, rgba(30, 184, 202, 0.8), transparent);
  pointer-events: none;
  z-index: -1;
}

.hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: auto;
  max-width: min(63.9vw, 920px);
  margin-inline: min(6.25vw, 90px);
  padding: min(6.53vw, 94px) 0 min(11.8vw, 170px);
}

.hero__title {
  margin: 0;
  max-width: 860px;
  color: #fff;
  font-size: min(3.47vw, 50px);
  line-height: 1;
  font-weight: 600;
}

.hero__lead {
  max-width: 52ch;
  margin: min(1.67vw, 24px) 0 0;
  color: #fff;
  font-size: min(2.08vw, 30px);
  line-height: 1.12;
  font-weight: 600;
}

.hero__subtitle {
  max-width: 68ch;
  margin: min(2.22vw, 32px) 0 0;
  color: #fff;
  font-size: min(1.39vw, 20px);
  line-height: 1.25;
}

.desktop-break {
  display: inline;
}

.promo-pill,
.promo-wide {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 90px;
  padding: 16px 52px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  cursor: pointer;
  background: linear-gradient(100deg, #2d87e9, #26c47a, #2d87e9);
  background-size: 220% 100%;
  animation: gradientFlow 5.5s ease-in-out infinite, promoGlow 4.8s ease-in-out infinite;
  box-shadow:
    0 18px 42px rgba(0, 116, 206, 0.26),
    0 0 0 1px rgba(255, 255, 255, 0.12) inset;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: -8px -7px 64px 0px rgba(121, 239, 211, 1);

}

.promo-pill::before,
.promo-wide::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -14px -18px;
  border-radius: inherit;
  background:
    radial-gradient(circle at 22% 50%, rgba(47, 139, 235, 0.5), transparent 52%),
    radial-gradient(circle at 78% 50%, rgba(38, 196, 122, 0.42), transparent 54%);
  filter: blur(18px);
  opacity: 0.74;
  pointer-events: none;
}

.promo-pill:hover,
.promo-wide:hover {
  transform: translateY(-2px);
  box-shadow:
    0 24px 50px rgba(0, 116, 206, 0.32),
    0 0 0 1px rgba(255, 255, 255, 0.15) inset;
  box-shadow: 0px 0px 64px 0px rgba(121, 239, 211, 1);

}

.promo-pill span,
.promo-wide span {
  display: block;
  width: 100%;
  font-size: 16px;
  line-height: 1;
  font-weight: 700;
  opacity: 0.86;
}

.promo-pill strong,
.promo-wide strong {
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1;
  letter-spacing: 0;
  font-weight: 700;
}

.promo-pill {
  position: relative;
  margin-top: 30px;
  flex-wrap: wrap;
  width: min(619px, 100%);
  min-height: 92px;
  padding: 20px 52px;
}

.promo-pill span {
  font-size: 19px;
}

.promo-pill strong {
  font-size: 39px;
}

.promo-pill img,
.promo-wide img {
  position: relative;
  z-index: 1;
  width: 27px;
  height: 27px;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.promo-pill span,
.promo-pill strong,
.promo-wide span,
.promo-wide strong {
  position: relative;
  z-index: 1;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  border-radius: var(--radius);
  padding: 0 30px;
  border: 1px solid transparent;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.15;
  cursor: pointer;
  transition: color 0.22s ease, background 0.22s ease, border-color 0.22s ease, transform 0.22s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button--white {
  margin-top: 40px;
  min-width: 299px;
  min-height: 60px;
  padding: 0 26px;
  font-size: 20px;
  color: var(--blue-deep);
  background: #fff;
}

.button--white:hover,
.button--outline:hover {
  color: #fff;
  background: var(--blue-deep);
  border-color: var(--blue-deep);
}

.button--gradient {
  width: 100%;
  min-height: 50px;
  color: #fff;
  background: linear-gradient(100deg, #2d87e9, #23bd77, #2d87e9);
  background-size: 220% 100%;
  animation: gradientFlow 5.5s ease-in-out infinite;
  border: 0;
}

.button--outline {
  width: 100%;
  min-height: 48px;
  color: var(--blue-deep);
  background: #fff;
  border-color: var(--blue-deep);
}

.return-scenarios {
  position: relative;
  z-index: 2;
  width: min(1360px, calc(100% - 40px));
  min-height: min(19.86vw, 286px);
  margin: max(-11.67vw, -168px) auto 0;
  padding: min(2.78vw, 40px) min(2.22vw, 32px) min(2.36vw, 34px);
  border-radius: 23px;
  background: #fff;
  box-shadow: var(--shadow);
}

.return-scenarios__heading {
  text-align: center;
}

.return-scenarios__heading h2 {
  font-size: min(2.22vw, 32px);
}

.return-scenarios__heading p {
  margin: min(0.83vw, 12px) 0 0;
  color: #4a6582;
  font-size: min(1.11vw, 16px);
  line-height: 1.35;
}

.return-scenarios__metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: min(2.78vw, 40px);
}

.return-metric {
  min-width: 0;
  padding: 0 min(1.67vw, 24px);
  text-align: center;
  border-right: 1px solid #d5e1e7;
}

.return-metric:last-child {
  border-right: 0;
}

.return-metric h3 {
  margin: 0;
  font-size: min(1.18vw, 17px);
  line-height: 1.2;
  font-weight: 600;
}

.return-metric p {
  margin: min(0.9vw, 13px) 0 0;
  color: #33475f;
  font-size: min(3vw, 42px);
  line-height: 1;
}

.return-metric--positive h3 { color: #1f8468; }
.return-metric--neutral h3 { color: #cbab09; }
.return-metric--negative h3 { color: #f33c73; }

.privileges {
  padding-top: 46px;
}

.section {
  padding: clamp(44px, 6vw, 80px) clamp(6px, 2.3vw, 38px) 0;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
}

h2 {
  margin: 0;
  color: #33475f;
  font-size: clamp(32px, 3.1vw, 42px);
  line-height: 1.16;
  font-weight: 600;
}

.section-heading p {
  margin: 14px auto 0;
  max-width: 660px;
  color: #4a6582;
  font-size: clamp(15px, 1.35vw, 18px);
  line-height: 1.45;
}

.section-heading a {
  color: #1d7cd9;
  transition: color 0.2s ease;
}

.section-heading a:hover {
  color: #22a66d;
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.partner-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 560px;
  padding: 20px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 36px rgba(49, 87, 109, 0.14);
  transform-style: preserve-3d;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  will-change: transform;
}

.partner-card:hover {
  box-shadow: 0 22px 44px rgba(49, 87, 109, 0.22);
}

.partner-card__logo-wrap {
  display: grid;
  grid-template-rows: 42px 34px;
  align-items: center;
  justify-items: center;
  row-gap: 6px;
  min-height: 82px;
  margin-bottom: 12px;
  text-align: center;
}

.partner-card__logo {
  width: 184px;
  height: 38px;
  object-fit: contain;
}

.partner-card__logo--sbermobile {
  width: 190px;
}

.partner-card__logo--manzherok {
  width: 170px;
}

.partner-card__logo-wrap p {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  min-height: 34px;
  margin: 0;
  color: #70849a;
  font-size: 13px;
  line-height: 1.18;
}

.partner-card__image {
  width: 100%;
  aspect-ratio: 421 / 180;
  border-radius: 8px;
  object-fit: cover;
  background: #edf6f8;
}

.partner-card__image--citydrive {
  object-fit: cover;
  object-position: center;
}

.discounts {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 112px;
  margin: 20px 0 20px;
}

.discounts--single {
  justify-content: flex-start;
}

.discounts p {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  color: #73859b;
}

.discounts strong {
  flex: 0 0 auto;
  color: transparent;
  /* background: linear-gradient(100deg, #006fd1 0%, #1ebc78 100%); */
  background: linear-gradient(90deg, #184EA1 0%, #1F8468 100%);
  -webkit-background-clip: text;
  background-clip: text;
  font-size: clamp(25px, 2.4vw, 35px);
  line-height: 1;
  font-weight: 600;
  filter: drop-shadow(0 0 0 rgba(31, 185, 121, 0));
  animation: discountPulse 3.8s ease-in-out infinite;
}

.discounts span {
  color: #6f8195;
  font-size: clamp(13px, 1.1vw, 16px);
  line-height: 1.2;
}

.info-tip {
  position: relative;
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: help;
}

.info-tip img {
  width: 13px;
  height: 13px;
}

.info-tip::after {
  content: attr(data-tooltip);
  position: absolute;
  z-index: 99;
  left: -350%;
  bottom: calc(100% + 10px);
  width: min(260px, 70vw);
  padding: 10px 12px;
  border-radius: 8px;
  color: #fff;
  background: #22384f;
  box-shadow: 0 12px 28px rgba(20, 44, 66, 0.24);
  font-size: 12px;
  line-height: 1.35;
  text-align: left;
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 6px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  white-space: pre-line;
}

.info-tip:hover::after,
.info-tip.is-active::after,
.info-tip:focus-visible::after {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.partner-card__actions {
  display: grid;
  gap: 12px;
  margin-top: auto;
}

.partner-card__actions .button {
  min-height: 58px;
  border-radius: 99px;
  font-size: 18px;
}

.promo-wide {
  display: flex;
  width: min(980px, 88%);
  min-height: 92px;
  margin: 68px auto 0;
  flex-wrap: wrap;
}

.promo-wide span {
  text-align: center;
}

.howto {
  padding-top: clamp(64px, 7vw, 98px);
  text-align: center;
}

.steps-slider {
  position: relative;
  margin-top: 28px;
}

.steps-track {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: clamp(12px, 2.5vw, 36px);
}

.step {
  width: 160px;
  display: grid;
  justify-items: center;
  gap: 8px;
}

.step p span::after {
  content: "";
  display: inline-block;
  width: 18px;
  /* ширина вашей иконки */
  height: 18px;
  /* высота вашей иконки */
  background: url('img/Copy.png') no-repeat center center;
  margin-left: 6px;
  /* отступ от текста span */
  vertical-align: middle;
  /* выравнивание по вертикали */
}

.step img:not(.step-arrow) {
  width: clamp(92px, 8.4vw, 124px);
  height: clamp(92px, 8.4vw, 124px);
  object-fit: contain;
  border-radius: 8px;
  background-color: white;
  border-radius: 20px;
}

.step p {
  margin: 0;
  color: #33475f;
  font-size: clamp(12px, 1.05vw, 15px);
  line-height: 1.18;
  font-weight: 500;
}

.step p span {
  color: #1d7cd9;
}

.step-arrow {
  width: 28px;
  height: 28px;
  margin-top: 46px;
  object-fit: contain;
}

.slider-dots {
  display: none;
}

.slider-arrow {
  display: none;
}

.faq {
  width: min(1050px, 100%);
  margin: 0 auto;
  padding-top: clamp(56px, 6vw, 82px);
  text-align: center;
}

.faq-list {
  display: grid;
  gap: 10px;
  margin-top: 36px;
  text-align: left;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 15px;
  background: transparent;
  overflow: hidden;
}

.faq-item button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 63px;
  padding: 0 18px;
  border: 0;
  color: #33475f;
  background: transparent;
  font-family: "SBSansDisplay";
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2;
  text-align: left;
  cursor: pointer;
  padding: 10px 18px;
}

.faq-item__icon {
  position: relative;
  width: 24px;
  height: 24px;
  margin-left: 16px;
  flex: 0 0 auto;
  background: url("img/chevron-up.png") center / 24px 24px no-repeat;
  transform: rotate(180deg);
  transition: transform 0.22s ease;
}

.faq-item.is-open .faq-item__icon {
  transform: rotate(0deg);
}

.faq-item__body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.5s ease;
}

.faq-item__body p {
  min-height: 0;
  margin: 0;
  overflow: hidden;
  color: #71849a;
  font-size: 14px;
  line-height: 1.42;
  padding-left: 18px;
}

.faq-item.is-open .faq-item__body {
  grid-template-rows: 1fr;
}

.faq-item.is-open .faq-item__body p {
  padding: 0 18px 20px;
}

.footer {
  padding: 64px clamp(6px, 2.3vw, 0px) 6px;
  color: #6f8195;
  font-size: 20px;
  line-height: 1.45;
  width: 100%;
}

.footer__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  padding-bottom: 5px;
  width: 100%;
}

.footer__links {
    width: 100%;
    max-width: 960px;

    display: flex;
    flex-direction: column;
    gap: 26px;
}

.footer__links_list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;

    width: 100%;
}

.footer__links a {
    font-size: 16px;
    text-decoration: none;

    overflow-wrap: break-word;
}

.footer__links p {
    font-size: 14px;
    margin: 0;
}

.footer p {
  margin: 0;
}

.footer a {
  color: #1d6fbd;
  transition: color 0.2s ease;
}

.footer a:hover {
  color: #22a66d;
}

.footer__contacts {
  min-width: 220px;
  text-align: right;
}

.footer__phone {
  display: inline-block;
  color: #33475f !important;
  font-size: 30px;
  line-height: 1.1;
  font-weight: 700;
}

.footer__contacts p {
  margin-top: 5px;
  font-size: 14px;
  color: #8a9caf;
}

.footer__legal {
  display: grid;
  gap: 10px;
  padding-top: 15px;
  color: #77899c;
  font-size: 10px;
  line-height: 1.45;
}

.footer__legal p {
  color: #A4AEB3;
  font-size: 12px;
  font-weight: 400;

}


.modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  padding: 20px;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.22s ease, visibility 0.22s ease;
}

.modal.is-open {
  opacity: 1;
  visibility: visible;
}

.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(39, 58, 77, 0.58);
}

.modal__dialog {
  position: relative;
  width: min(451px, calc(100vw - 40px));
  max-width: 100%;
  overflow: auto;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  /* padding: 168px 24px 42px; */
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 18px 46px rgba(26, 52, 76, 0.18);
  padding: 50px 30px;
}

.modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 18px;
  height: 18px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
}

.modal__close::before,
.modal__close::after {
  content: "";
  position: absolute;
  top: 8px;
  left: 3px;
  width: 12px;
  height: 1px;
  background: #7d91a6;
  transform: rotate(45deg);
}

.modal__close::after {
  transform: rotate(-45deg);
}

.modal h3 {
  margin: 0 0 16px;
  color: #0757a9;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 600;
  text-align: center;
}

.modal-steps {
  width: 100%;
  max-width: 370px;
  margin: 0 auto;
  color: #7d91a6;
}

.modal-steps__list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 18px;
  color: #7d91a6;
  font-size: 18px;
  line-height: 1.22;
}

.modal-steps__section {
  display: grid;
  gap: 8px;
}

.modal-steps__section+.modal-steps__section {
  margin-top: 18px;
}

.modal-steps h4 {
  margin: 0;
  color: #0757a9;
  font-size: 18px;
  line-height: 1.18;
  font-weight: 600;
  text-align: left;
}

.modal[data-variant="sbermobile"] .modal__dialog {
  /* padding-top: 104px;
  padding-bottom: 44px; */
}

.modal[data-variant="sbermobile"] .modal-steps {
  max-width: 390px;
}

.modal[data-variant="sbermobile"] .modal-steps__list {
  font-size: 16px;
  line-height: 1.18;
}

.toast {
  position: fixed;
  z-index: 80;
  left: 50%;
  bottom: 24px;
  padding: 12px 18px;
  border-radius: 8px;
  color: #fff;
  background: #22384f;
  box-shadow: 0 16px 36px rgba(19, 44, 66, 0.2);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 12px);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
}

.toast.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.reveal {
  opacity: 0;
  transition:
    opacity 0.72s ease var(--delay, 0ms),
    transform 0.72s ease var(--delay, 0ms);
}

.reveal-left {
  transform: translateX(-42px);
}

.reveal-up {
  transform: translateY(46px);
}

.reveal-fade {
  transform: translateY(18px);
}

.reveal-step {
  transform: translateX(-24px);
}

.reveal.is-visible {
  opacity: 1;
  transform: translate(0, 0);
}

@keyframes gradientFlow {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@keyframes promoGlow {

  0%,
  100% {
    filter: saturate(1);
  }

  50% {
    filter: saturate(1.12);
  }
}

@keyframes discountPulse {

  0%,
  100% {
    filter: drop-shadow(0 0 0 rgba(31, 185, 121, 0));
  }

  50% {
    filter: drop-shadow(0 0 11px rgba(31, 185, 121, 0.42));
  }
}

@media (max-width: 1120px) {
  .return-scenarios {
    width: calc(100% - 40px);
  }

  .partner-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 421px) and (max-width: 1199px) {
  .modal {
    align-items: center;
    justify-content: center;
    padding: 16px;
  }

  .modal__dialog {
    width: min(451px, calc(100vw - 32px));
    /* min-height: min(558px, calc(100vh - 32px));
    min-height: min(558px, calc(100dvh - 32px));
    max-height: calc(100vh - 32px);
    max-height: calc(100dvh - 32px); */
    margin: 0 auto;
    padding: 50px 30px;
    /* padding: clamp(104px, 18vh, 156px) clamp(18px, 3.8vw, 24px) clamp(30px, 6vh, 42px); */
  }

  .modal-steps {
    max-width: min(370px, 100%);
  }
  

  .modal[data-variant="sbermobile"] .modal__dialog {
    /* padding-top: clamp(56px, 10vh, 96px); */
  }
}

@media (max-width: 760px) {
  .page-shell {
    padding: 20px 15px 24px;
  }

  .hero {
    min-height: 430px;
    border-radius: 24px;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 92, 188, 0.42)),
      radial-gradient(100% 72% at 18% 100%, rgba(54, 218, 209, 0.8), rgba(0, 104, 216, 0.5) 58%, transparent 100%),
      url("img/img_mob_bg.webp");
    background-size: cover;
    background-position: center;
  }
  .footer__links_list {
        flex-wrap: nowrap;
        flex-direction: column;
    }

  .hero::before {
    display: none;
  }

  .hero::after {
    display: none;
  }

  .hero__content {
    width: 100%;
    margin-left: 0;
    padding: 42px 24px 125px;
    align-items: stretch;
  }

  .hero__title {
    max-width: none;
    margin: 0;
    color: #fff;
    font-size: 32px;
    line-height: 1.05;
    text-align: left;
  }

  .hero__lead {
    max-width: none;
    margin: 18px 0 0;
    color: #fff;
    font-size: 21px;
    line-height: 1.15;
  }

  .hero__subtitle {
    max-width: none;
    margin: 25px 0 0;
    color: #fff;
    font-size: 15px;
    line-height: 1.25;
    text-align: left;
  }

  .desktop-break {
    display: none;
  }

  .promo-pill {
    width: 100%;
    min-height: 92px;
    margin: 50px 0 0;
    padding: 15px 20px;
    flex-direction: column;
    gap: 10px;
  }

  .promo-pill span {
    font-size: 16px;
  }

  .promo-pill strong {
    font-size: 30px;
    letter-spacing: 1px;
  }

  .promo-pill img {
    position: absolute;
    right: 40px;
    bottom: 22px;
    width: 22px;
    height: 22px;
  }

  .button--white {
    width: auto;
    min-width: 0;
    min-height: 60px;
    margin: 20px auto 0;
    padding: 0 16px;
    border-radius: 9px;
    color: #fff;
    background: var(--blue-deep);
    font-size: 16px;
  }

  .return-scenarios {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    width: calc(100% - 24px);
    min-height: 0;
    margin: -96px auto 0;
    padding: 25px 18px 22px;
    border-radius: 18px;
    overflow: hidden;
  }

  .toast {
    width: 80%;
  }

  .return-scenarios__heading h2 {
    font-size: 22px;
  }

  .return-scenarios__heading p {
    margin-top: 8px;
    font-size: 13px;
  }

  .return-scenarios__metrics {
    grid-template-columns: 1fr;
    margin-top: 24px;
  }

  .return-metric {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 8px;
    border-right: 0;
    border-bottom: 1px solid #d5e1e7;
  }

  .return-metric:last-child {
    border-bottom: 0;
  }

  .return-metric h3 {
    font-size: 13px;
  }

  .return-metric p {
    margin: 0;
    font-size: clamp(24px, 7vw, 34px);
  }

  /* .hero-benefit:first-child,
  .hero-benefit:last-child {
    padding-left: 4px;
    padding-right: 4px;
  }

  .hero-benefit:last-child {
    border-bottom: 0;
  } */

  .section {
    padding-left: 0;
    padding-right: 0;
  }

  .partner-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .partner-card {
    min-height: 0;
    padding: 16px;
  }

  .partner-card__logo-wrap {
    grid-template-rows: 42px auto;
    min-height: 88px;
    margin-bottom: 12px;
  }

  .partner-card__actions .button {
    min-height: 54px;
    border-radius: 99px;
  }

  .discounts {
    min-height: auto;
  }

  .promo-wide {
    width: 100%;
    min-height: 78px;
    margin-top: 36px;
    padding: 12px 26px;
  }

  .steps-slider {
    overflow: hidden;
    min-height: 440px;
    margin-top: 20px;
    padding: 10px 0 0;
  }

  .steps-slider .reveal,
  .steps-slider .reveal-step {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .slider-arrow {
    position: absolute;
    z-index: 3;
    top: 166px;
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
  }

  .slider-arrow:hover {
    transform: translateY(-1px);
  }

  .slider-arrow img {
    width: 44px;
    height: 44px;
  }

  .slider-arrow--prev {
    left: 4px;
  }

  .slider-arrow--next {
    right: 4px;
  }

  .slider-arrow.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }

  .steps-track {
    justify-content: flex-start;
    gap: 0;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding-bottom: 0;
  }

  .steps-track::-webkit-scrollbar {
    display: none;
  }

  .step {
    width: 100%;
    min-width: 100%;
    min-height: 344px;
    align-content: start;
    gap: 18px;
    scroll-snap-align: center;
  }

  .step img {
    background-color: white;
  }

  .step img:not(.step-arrow) {
    width: 200px;
    height: 200px;
    border-radius: 32px;
  }

  .step p {
    max-width: 280px;
    font-size: 22px;
    line-height: 1.08;
  }

  .step p span {
    display: block;
    font-size: 20px;
  }

  .step-arrow {
    display: none;
  }

  .slider-dots {
    display: flex;
    justify-content: center;
    gap: 7px;
    margin-top: 0;
  }

  .slider-dots button {
    width: 7px;
    height: 7px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: #b9d5e4;
  }

  .slider-dots button.is-active {
    background: var(--blue);
  }

  .footer {
    padding-left: 0;
    padding-right: 0;
  }

  .footer__top {
    flex-direction: column;
    gap: 22px;
  }

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

@media (max-width: 420px) {
  .hero {
    min-height: 0;
  }

  .hero__title {
    font-size: 28px;
  }

  .promo-pill strong,
  .promo-wide strong {
    font-size: 30px;
  }

  .promo-pill span,
  .promo-wide span {
    font-size: 16px;
  }

  .hero__lead {
    font-size: 18px;
  }

  .privileges {
    padding-top: 54px;
  }

  .discounts p {
    align-items: flex-start;
  }


  .discounts strong {
    font-size: 24px;
  }

  .modal__dialog {
    width: min(316px, calc(100vw - 30px));
    /* min-height: 572px;
    max-height: calc(100vh - 30px);
    max-height: calc(100dvh - 30px); */
    padding: 50px 30px;
    border-radius: 22px;
  }

  .modal[data-variant="sbermobile"] .modal__dialog {
    padding: 50px 30px;
  }

  .footer__top {
    flex-direction: column-reverse;
  }


  .footer__links_list  {
        flex-wrap: nowrap;
        flex-direction: column;
    }

  .modal h3 {
    font-size: 24px;
  }

  .modal-steps {
    max-width: 100%;
  }

  .modal-steps__list {
    font-size: 16px;
    line-height: 1.18;
  }

  .modal-steps h4 {
    font-size: 16px;
  }

  .faq-item button {
    padding: 10px 18px;
  }

  .info-tip::after {
    left: -500%;

  }
}

/* Единая пропорциональная адаптация контента по принципу первого экрана */
@media (min-width: 761px) {
  .section {
    padding: min(5.56vw, 80px) min(2.64vw, 38px) 0;
  }

  .privileges {
    padding-top: min(3.2vw, 46px);
  }

  .section-heading {
    max-width: min(52.78vw, 760px);
    margin-bottom: min(2.36vw, 34px);
  }

  h2 {
    font-size: min(2.92vw, 42px);
  }

  .section-heading p {
    max-width: min(45.83vw, 660px);
    margin-top: min(0.97vw, 14px);
    font-size: min(1.25vw, 18px);
  }

  .partner-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: min(1.67vw, 24px);
  }

  .partner-card {
    min-height: min(38.89vw, 560px);
    padding: min(1.39vw, 20px);
    border-radius: min(0.56vw, 8px);
  }

  .partner-card__logo-wrap {
    grid-template-rows: min(2.92vw, 42px) min(2.36vw, 34px);
    row-gap: min(0.42vw, 6px);
    min-height: min(5.69vw, 82px);
    margin-bottom: min(0.83vw, 12px);
  }

  .partner-card__logo {
    width: min(12.78vw, 184px);
    height: min(2.64vw, 38px);
  }

  .partner-card__logo--sbermobile { width: min(13.19vw, 190px); }
  .partner-card__logo--manzherok { width: min(11.81vw, 170px); }

  .partner-card__logo-wrap p {
    min-height: min(2.36vw, 34px);
    font-size: min(0.9vw, 13px);
  }

  .discounts {
    gap: min(0.69vw, 10px);
    min-height: min(7.78vw, 112px);
    margin: min(1.39vw, 20px) 0;
  }

  .discounts p { gap: min(0.69vw, 10px); }
  .discounts strong { font-size: min(2.43vw, 35px); }
  .discounts span { font-size: min(1.11vw, 16px); }

  .info-tip {
    width: min(1.25vw, 18px);
    height: min(1.25vw, 18px);
  }

  .info-tip img {
    width: min(0.9vw, 13px);
    height: min(0.9vw, 13px);
  }

  .partner-card__actions { gap: min(0.83vw, 12px); }
  .partner-card__actions .button {
    min-height: min(4.03vw, 58px);
    font-size: min(1.25vw, 18px);
  }

  .promo-wide {
    min-height: min(6.39vw, 92px);
    margin-top: min(4.72vw, 68px);
  }

  .promo-wide span { font-size: min(1.11vw, 16px); }
  .promo-wide strong { font-size: min(2.78vw, 40px); }

  .howto { padding-top: min(6.81vw, 98px); }
  .steps-slider { margin-top: min(1.94vw, 28px); }
  .steps-track { gap: min(2.5vw, 36px); }

  .step {
    width: min(11.11vw, 160px);
    gap: min(0.56vw, 8px);
  }

  .step img:not(.step-arrow) {
    width: min(8.61vw, 124px);
    height: min(8.61vw, 124px);
    border-radius: min(1.39vw, 20px);
  }

  .step p { font-size: min(1.04vw, 15px); }
  .step-arrow {
    width: min(1.94vw, 28px);
    height: min(1.94vw, 28px);
    margin-top: min(3.19vw, 46px);
  }

  .faq {
    width: min(72.92vw, 1050px);
    padding-top: min(5.69vw, 82px);
  }

  .faq-list {
    gap: min(0.69vw, 10px);
    margin-top: min(2.5vw, 36px);
  }

  .faq-item { border-radius: min(1.04vw, 15px); }
  .faq-item button {
    min-height: min(4.38vw, 63px);
    padding: min(0.69vw, 10px) min(1.25vw, 18px);
    font-size: min(1.25vw, 18px);
  }

  .faq-item__icon {
    width: min(1.67vw, 24px);
    height: min(1.67vw, 24px);
    margin-left: min(1.11vw, 16px);
    background-size: min(1.67vw, 24px) min(1.67vw, 24px);
  }

  .faq-item__body p {
    padding-left: min(1.25vw, 18px);
    font-size: min(0.97vw, 14px);
  }

  .faq-item.is-open .faq-item__body p {
    padding: 0 min(1.25vw, 18px) min(1.39vw, 20px);
  }

  .footer {
    padding-top: min(4.44vw, 64px);
    font-size: min(1.39vw, 20px);
  }

  .footer__top { gap: min(2.22vw, 32px); }
  .footer__links {
    max-width: min(66.67vw, 960px);
    gap: min(1.81vw, 26px);
  }

  .footer__links_list { gap: min(0.69vw, 10px); }
  .footer__links a { font-size: min(1.11vw, 16px); }
  .footer__links p,
  .footer__contacts p { font-size: min(0.97vw, 14px); }
  .footer__contacts { min-width: min(15.28vw, 220px); }
  .footer__phone { font-size: min(2.08vw, 30px); }
  .footer__legal { font-size: min(0.69vw, 10px); }
  .footer__legal p { font-size: min(0.83vw, 12px); }
}

/* Контролируемые переносы во всех текстовых блоках */
h1,
h2,
h3,
.section-heading p,
.partner-card__logo-wrap p,
.discounts span,
.step p,
.faq-item button,
.footer__links p,
.footer__contacts p {
  text-wrap: balance;
}

.faq-item__body p,
.footer__legal p {
  text-wrap: pretty;
}

@media (max-width: 760px) {
  body {
    min-width: 0;
  }

  .page-shell {
    padding: 5.13vw 3.85vw 6.15vw;
  }

  .hero {
    min-height: 0;
    border-radius: 6.15vw;
  }

  .hero__content {
    max-width: none;
    padding: 10.77vw 6.15vw 24vw;
  }

  .hero__title {
    font-size: 8.21vw;
  }

  .hero__lead {
    width: 100%;
    max-width: none;
    margin-top: 4.62vw;
    font-size: 5.38vw;
    text-wrap: wrap;
  }

  .hero__subtitle {
    width: 100%;
    max-width: none;
    margin-top: 6.41vw;
    font-size: 3.85vw;
    text-wrap: wrap;
  }

  .return-scenarios {
    width: calc(100% - 6.15vw);
    margin-top: -18.21vw;
    padding: 6.41vw 4.62vw 5.64vw;
    border-radius: 4.62vw;
  }

  .return-scenarios__heading h2 {
    font-size: 5.64vw;
  }

  .return-scenarios__heading p {
    margin-top: 2.05vw;
    font-size: 3.33vw;
  }

  .return-scenarios__metrics {
    margin-top: 6.15vw;
  }

  .return-metric {
    padding: 3.59vw 2.05vw;
  }

  .return-metric h3 {
    font-size: 3.33vw;
  }

  .return-metric p {
    font-size: 8.72vw;
  }

  h2 { font-size: min(8.2vw, 32px); }

  .section {
    padding-top: min(11.28vw, 44px);
  }

  .privileges {
    padding-top: min(13.85vw, 54px);
  }

  .section-heading p {
    max-width: 92vw;
    font-size: min(4.1vw, 16px);
  }

  .partner-grid {
    gap: min(4.62vw, 18px);
  }

  .partner-card {
    padding: min(4.1vw, 16px);
    border-radius: min(2.05vw, 8px);
  }

  .partner-card__logo-wrap {
    grid-template-rows: min(10.77vw, 42px) auto;
    min-height: min(22.56vw, 88px);
    margin-bottom: min(3.08vw, 12px);
  }

  .partner-card__logo {
    width: min(47.18vw, 184px);
    height: min(9.74vw, 38px);
  }

  .partner-card__logo--sbermobile { width: min(48.72vw, 190px); }
  .partner-card__logo--manzherok { width: min(43.59vw, 170px); }

  .partner-card__image {
    border-radius: min(2.05vw, 8px);
  }

  .partner-card__logo-wrap p { font-size: min(3.6vw, 14px); }

  .discounts {
    gap: min(2.56vw, 10px);
    margin: min(5.13vw, 20px) 0;
  }

  .discounts p { gap: min(2.56vw, 10px); }
  .discounts strong { font-size: min(7.2vw, 28px); }
  .discounts span { font-size: min(4.1vw, 16px); }
  .partner-card__actions { gap: min(3.08vw, 12px); }
  .partner-card__actions .button {
    min-height: min(13.85vw, 54px);
    font-size: min(4.6vw, 18px);
  }

  .promo-wide {
    min-height: min(20vw, 78px);
    margin-top: min(9.23vw, 36px);
    padding: min(3.08vw, 12px) min(6.67vw, 26px);
  }

  .promo-wide span { font-size: min(4.1vw, 16px); }
  .promo-wide strong { font-size: min(7.69vw, 30px); }

  .howto > h2,
  .faq > h2 { max-width: 90vw; margin-inline: auto; }

  .howto { padding-top: min(16.41vw, 64px); }

  .steps-slider {
    min-height: 0;
    overflow: visible;
    padding-top: 0;
    margin-top: min(5.13vw, 20px);
  }

  .steps-track {
    flex-direction: column;
    align-items: center;
    gap: min(4.1vw, 16px);
    overflow: visible;
  }

  .step {
    width: 100%;
    min-width: 0;
    min-height: 0;
    gap: min(4.1vw, 16px);
    scroll-snap-align: none;
  }

  .step img:not(.step-arrow) {
    width: min(42vw, 164px);
    height: min(42vw, 164px);
    border-radius: min(7vw, 28px);
  }

  .step-arrow {
    display: block;
    width: min(7.2vw, 28px);
    height: min(7.2vw, 28px);
    margin: 0;
    transform: rotate(90deg);
  }

  .slider-arrow,
  .slider-dots {
    display: none;
  }

  .step p {
    max-width: 78vw;
    font-size: min(5.65vw, 22px);
  }

  .step p span { font-size: min(5.1vw, 20px); }
  .faq-item button { font-size: min(4.6vw, 18px); }

  .faq {
    padding-top: min(14.36vw, 56px);
  }

  .faq-list {
    gap: min(2.56vw, 10px);
    margin-top: min(9.23vw, 36px);
  }

  .faq-item {
    border-radius: min(3.85vw, 15px);
  }

  .faq-item button {
    min-height: min(16.15vw, 63px);
    padding: min(2.56vw, 10px) min(4.62vw, 18px);
  }

  .faq-item__icon {
    width: min(6.15vw, 24px);
    height: min(6.15vw, 24px);
    margin-left: min(4.1vw, 16px);
    background-size: min(6.15vw, 24px) min(6.15vw, 24px);
  }

  .faq-item__body p {
    padding-left: min(4.62vw, 18px);
    font-size: min(3.6vw, 14px);
  }

  .faq-item.is-open .faq-item__body p {
    padding: 0 min(4.62vw, 18px) min(5.13vw, 20px);
  }

  .footer {
    padding-top: min(16.41vw, 64px);
  }

  .footer__top { gap: min(5.64vw, 22px); }
  .footer__links { gap: min(6.67vw, 26px); }
  .footer__links_list { gap: min(2.56vw, 10px); }
  .footer__links a { font-size: min(4.1vw, 16px); }
  .footer__links p,
  .footer__contacts p { font-size: min(3.6vw, 14px); }
  .footer__phone { font-size: min(7.7vw, 30px); }
  .footer__legal {
    gap: min(2.56vw, 10px);
    padding-top: min(3.85vw, 15px);
  }
  .footer__legal p { font-size: min(3.1vw, 12px); }
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
