/* Собирается scripts/build-home-focus-css.mjs. Руками не править. */
@media screen and (min-width: 1200px) {

/* Слой с главной: уменьшен, поэтому для раскладки места становится больше —
   ровно столько же, сколько даёт масштаб браузера 80%. */
.home-focus {
  zoom: 0.8;
}

/* Общий вертикальный ритм главной.
 *
 * Экспорт задавал каждому блоку свои отступы, поэтому расстояния между
 * блоками и заголовками расходились: где-то 58 px до заголовка, где-то 140.
 * Здесь три величины, которыми пользуются все нативные секции:
 *
 *   --home-space-section — от того, что стоит выше (края блока или нижней
 *     границы иллюстрации), до первой строки заголовочного стека;
 *   --home-space-heading — от последней строки заголовочного стека до
 *     содержимого блока;
 *   --home-space-eyebrow и --home-space-lead — внутри стека: надзаголовок к
 *     заголовку и заголовок к подзаголовку.
 *
 * Ритм считается по строкам текста, а не по коробкам: иллюстрации и надписи
 * над заголовком входят в расчёт, поэтому наезда не возникает.
 */

:root {
  --home-space-section: 64px;
  --home-space-heading: 36px;
  --home-space-eyebrow: 18px;
  --home-space-lead: 20px;
}







/* Блоки, которые читаются одним экраном, влезают в экран целиком.
 *
 * На 13–14" ноутбуке — и особенно когда окно уменьшено доком — «Сравните!»,
 * тарифы, преимущества и заявка не помещались: их композиции собраны в
 * пикселях под большой экран. Здесь блок целиком ужимается ровно настолько,
 * чтобы поместиться, и не мельче заданного предела. Высота блока при этом
 * пересчитывается сама, поэтому соседние блоки не разъезжаются.
 *
 * Этапы, истории и подвал сознательно не входят: они длиннее экрана по
 * замыслу — четыре карточки, четыре проекта и контакты.
 */

.native-home-prelude,
.native-home-prelude *,
.native-home-prelude *::before,
.native-home-prelude *::after {
  box-sizing: border-box !important;
}

.native-home-prelude {
  display: block;
  width: 100%;
  margin: 0;
  color: #111;
  background: #fff;
  font-family: "Manrope", Arial, Helvetica, sans-serif;
}

.native-home-header-backdrop {
  position: absolute;
  z-index: 9998;
  top: 0;
  right: 0;
  left: 0;
  height: 116px;
  background: #fff;
  pointer-events: none;
}

.native-home-header {
  position: absolute;
  z-index: 9999;
  top: 9px;
  left: 50%;
  width: min(1440px, calc(100% - 48px));
  margin: 0;
  color: #262626;
  font-family: inherit;
  transform: translateX(-50%);
}

.native-home-header a {
  color: inherit;
  text-decoration: none;
}

.native-home-header__utility {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto minmax(260px, 1fr);
  min-height: 64px;
  align-items: center;
  gap: 28px;
  padding: 6px 34px;
  border: 1px solid #f0f1f2;
  border-radius: 12px;
  background: #fff;
}

.native-home-header__location {
  margin: 0;
  justify-self: start;
  color: #262626;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
}

.native-home-header__brand {
  display: flex;
  align-items: center;
  justify-content: center;
}

.native-home-header__brand img {
  display: block;
  width: 160px;
  height: auto;
  margin: 0;
}

.native-home-header__contacts {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
  font-size: 13px;
  font-weight: 600;
}

.native-home-header__nav {
  display: flex;
  min-height: 0;
  align-items: center;
  justify-content: space-between;
  gap: clamp(14px, 2.5vw, 30px);
  margin: 0;
  padding: 10px 34px 12px;
  background: #fff;
}

.native-home-header__nav a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.24;
  text-align: center;
}

.native-home-header__nav a:hover,
.native-home-header__nav a:focus-visible {
  color: #ad2c32;
}

.native-home-header__portfolio {
  color: #ad2f34 !important;
}

.native-home-header__mobile-actions,
.native-home-header__mobile-portfolio {
  display: none !important;
}

.native-home-header__brand:focus-visible,
.native-home-header__contacts a:focus-visible,
.native-home-header__location:focus-visible,
.native-home-header__nav a:focus-visible,
.native-home-header__cases:focus-visible,
.native-home-header__menu-button:focus-visible {
  border-radius: 6px;
  outline: 3px solid rgb(173 47 52 / 35%);
  outline-offset: 3px;
}

.native-home-hero {
  position: relative;
  display: block;
  width: 100%;
  height: max(125svh, 640px);
  min-height: 640px;
  margin: 0;
  overflow: hidden;
  background: #fff;
}

.native-home-hero__copy {
  position: absolute;
  z-index: 25;
  /* Заголовок стоит не впритык к меню: на невысоком экране ноутбука между
   * ними оставалось семь пикселей, и первый экран читался как одна сплошная
   * плашка. */
  top: clamp(150px, 21.25vh, 260px);
  left: 50%;
  width: min(1120px, calc(100% - 64px));
  color: #111;
  text-align: center;
  -webkit-font-smoothing: antialiased;
  transform: translateX(-50%);
}

.native-home-hero__copy h1,
.native-home-hero__copy h2 {
  max-width: 1080px;
  margin: 0 auto;
  color: #111;
  font-family: inherit;
  font-size: clamp(46px, 6.4375vw, 76px);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.055em;
  text-align: center;
  text-wrap: balance;
}

.native-home-hero__lead {
  max-width: 800px;
  margin: 24px auto 0;
  color: #4d5963;
  font-family: inherit;
  font-size: clamp(16px, 1.5625vw, 20px);
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
  text-wrap: balance;
}

.native-home-hero__desktop-art {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.native-home-hero__art-item {
  position: absolute;
  z-index: 3;
  display: table;
  height: auto;
  margin: 0;
  padding: 0;
  transform: none;
}

.native-home-hero__art-atom {
  display: table-cell;
  width: 100%;
  box-sizing: content-box !important;
  vertical-align: middle;
}

.native-home-hero__art-atom picture,
.native-home-hero__mobile-art picture {
  display: block;
  width: 100%;
}

.native-home-hero__art-item img,
.native-home-hero__mobile-art img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
  border: 0;
}

.native-home-hero__art-item img {
  box-sizing: content-box !important;
}

.native-home-hero__art-item--left {
  top: 409px;
  left: calc(50% - 1200px);
  width: 820px;
}

.native-home-hero__art-item--center {
  top: 441px;
  left: calc(50% - 464px);
  width: 889px;
}

.native-home-hero__art-item--right {
  top: 422px;
  left: calc(50% + 255px);
  width: 850px;
}

.native-home-hero__mobile-art {
  display: none;
}













/* На ноутбуке заголовок опущен: впритык к меню первый экран читался одной
 * сплошной плашкой. Узкие окна остаются как были. */


















@font-face {
  font-family: "Nevsky Strategy";
  src: url("/legacy/fonts/nevsky-caveat-variable.woff") format("woff");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

.native-home-steps,
.native-home-steps *,
.native-home-steps *::before,
.native-home-steps *::after {
  box-sizing: border-box !important;
}

.native-home-steps {
  --native-steps-grid: 1440px;
  --native-steps-grid-offset: -720px;
  --native-steps-content-lift: 0px;
  /* Холст подтянут под заголовок: так карточки начинаются сразу за текстом.
   * Белая плашка заголовка лежит выше холста и закрывает подтянутую часть,
   * поэтому видимый просвет до серого поля равен общему отступу главной. */
  --native-steps-stage-pull: 110px;
  --native-steps-heading-bottom-space: var(--home-space-heading);
  --native-steps-heading-top-space: var(--home-space-section);
  position: relative;
  display: block;
  width: 100%;
  margin: 0;
  color: #222;
  background: #fff;
  font-family: "Manrope", Arial, Helvetica, sans-serif;
  scroll-margin-top: 120px;
}

.native-home-steps__heading {
  /* Холст этапов подтянут вверх под заголовок, чтобы серое поле начиналось
   * сразу за текстом. Заголовок лежит выше и холста, и его растворяющего
   * градиента: иначе они съедали вторую строку заголовка и подзаголовок. */
  position: relative;
  z-index: 5;
  margin: 0;
  padding: var(--native-steps-heading-top-space) 32px
    var(--native-steps-heading-bottom-space);
  /* Белое поле заголовка не обрывается, а растворяется в сером холсте: холст
   * подтянут под заголовок, и в нижней полосе — ровно под последней строкой —
   * белое уходит в прозрачность. Текст остаётся выше этой полосы. */
  background: linear-gradient(
    to bottom,
    #fff 0,
    #fff calc(100% - var(--home-space-heading)),
    rgb(255 255 255 / 0%) 100%
  );
  color: #111;
  text-align: center;
}

.native-home-steps__eyebrow {
  margin: 0 0 var(--home-space-eyebrow);
  color: #ad2c32;
  font-size: clamp(14px, 1.375vw, 18px);
  font-weight: 650;
  letter-spacing: 0.08em;
  line-height: 1.3;
  text-transform: uppercase;
}

.native-home-steps__heading h2 {
  max-width: 1120px;
  margin: 0 auto;
  color: #111;
  font-family: inherit;
  font-size: clamp(46px, 6.4375vw, 76px);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.98;
  text-align: center;
  text-wrap: balance;
}

.native-home-steps__lead {
  max-width: 760px;
  margin: var(--home-space-lead) auto 0;
  color: #68747e;
  font-size: clamp(14px, 1.5625vw, 19px);
  font-weight: 400;
  line-height: 1.55;
  text-wrap: balance;
}

.native-home-steps__stage {
  position: relative;
  height: calc(1608px - var(--native-steps-content-lift));
  margin-top: calc(-1 * var(--native-steps-stage-pull));
  background: #f5f5f5;
}

.native-home-steps__stage::before {
  position: absolute;
  z-index: 4;
  top: 0;
  right: 0;
  left: 0;
  height: clamp(90px, 15vh, 190px);
  background: linear-gradient(to bottom, #fff, transparent);
  content: "";
  pointer-events: none;
}

.native-home-steps__canvas {
  position: absolute;
  z-index: 0;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.native-home-steps__surface,
.native-home-steps__art {
  display: none;
}

.native-home-steps__weeks {
  position: absolute;
  z-index: 1;
  top: calc(186px - var(--native-steps-content-lift));
  left: 50%;
  display: flex;
  width: var(--native-steps-grid);
  justify-content: space-between;
  padding: 0 40px;
  color: #777;
  font-size: 14px;
  font-weight: 600;
  line-height: 18px;
  transform: translateX(-50%);
}

.native-home-steps__list {
  position: absolute;
  z-index: 3;
  top: 0;
  left: 50%;
  width: var(--native-steps-grid);
  height: 100%;
  margin: 0;
  padding: 0;
  margin-left: var(--native-steps-grid-offset);
  list-style: none;
}

.native-home-steps__item {
  position: absolute;
  width: 488px;
  height: 242px;
  margin: 0;
  padding: 0;
  will-change: transform;
}

.native-home-steps__item--1 {
  --native-steps-fixed-top: calc(279px - var(--native-steps-content-lift));
  --native-steps-item-left: 41px;
  --native-steps-release-shift: 877px;
  top: calc(279px - var(--native-steps-content-lift));
  left: 41px;
}

.native-home-steps__item--2 {
  --native-steps-fixed-top: calc(349px - var(--native-steps-content-lift));
  --native-steps-item-left: 392px;
  --native-steps-release-shift: 505px;
  top: calc(721px - var(--native-steps-content-lift));
  left: 392px;
}

.native-home-steps__item--3 {
  --native-steps-fixed-top: calc(419px - var(--native-steps-content-lift));
  --native-steps-item-left: 625px;
  --native-steps-release-shift: 242px;
  top: calc(1054px - var(--native-steps-content-lift));
  left: 625px;
}

.native-home-steps__item--4 {
  top: calc(1366px - var(--native-steps-content-lift));
  left: 909px;
}

.native-home-steps__card {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  padding: 20px 20px 30px;
  border-radius: 10px;
  background: #fff;
  color: #222;
  -webkit-font-smoothing: antialiased;
}

.native-home-steps__card--dark {
  background: #2d3e50;
  color: #fff;
}

.native-home-steps__number {
  position: absolute;
  top: 20px;
  right: 20px;
  margin: 0;
  color: inherit;
  font-size: 20px;
  font-weight: 600;
  line-height: 26px;
  white-space: nowrap;
}

.native-home-steps__item--1 .native-home-steps__number {
  right: 38px;
}

.native-home-steps__card h3 {
  position: absolute;
  top: 20px;
  left: 20px;
  max-width: 370px;
  margin: 0;
  color: inherit;
  font-family: inherit;
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 0.9;
}

.native-home-steps__item--2 .native-home-steps__card h3 {
  top: 26px;
}

.native-home-steps__item--4 .native-home-steps__card h3 {
  max-width: 316px;
}

.native-home-steps__accent {
  position: relative;
  top: -1px;
  display: inline-block;
  font-family: "Nevsky Strategy", "Nevsky Caveat", Caveat, cursive;
  font-size: 38px;
  font-weight: 100;
  line-height: 0.9;
  white-space: nowrap;
}

.native-home-steps__item--2 .native-home-steps__accent {
  top: -1px;
}

.native-home-steps__item--4 .native-home-steps__accent {
  top: 3px;
  font-weight: 600;
}

.native-home-steps__body {
  position: absolute;
  right: 20px;
  bottom: 30px;
  left: 20px;
  margin: 0;
  color: inherit;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.native-home-steps__mobile-break {
  display: none;
}





































.native-home-comparison,
.native-home-comparison *,
.native-home-comparison *::before,
.native-home-comparison *::after {
  box-sizing: border-box !important;
}

.native-home-comparison {
  position: relative;
  display: block;
  width: 100%;
  /* Заголовок и композиция под ним двигаются вместе: якорь — исходная точка
   * макета, сдвиг — разница между ней и общим отступом до заголовка. */
  /* Заголовок стоит на пять пикселей ниже общего отступа — так просил
   * владелец: с ровным отступом он казался приподнятым. */
  --comparison-heading-nudge: 5px;
  --comparison-anchor: 140px;
  --comparison-canvas: 1329px;
  /* Колонки стоят по координатам макета, а высота заголовка на разных ширинах
   * разная. Поправка выравнивает просвет между заголовком и колонками. */
  --comparison-gap-fix: 18px;
  --comparison-shift: calc(
    var(--home-space-section) - var(--comparison-anchor) +
      var(--comparison-gap-fix)
  );
  min-height: calc(1329px + var(--comparison-shift));
  margin: -2px 0 0;
  overflow: hidden;
  background: #f5f5f5;
  color: #222;
  font-family: "Manrope", Arial, Helvetica, sans-serif;
}

.native-home-comparison__heading {
  position: absolute;
  z-index: 3;
  top: calc(var(--home-space-section) + var(--comparison-heading-nudge));
  left: 50%;
  width: min(100% - 40px, 720px);
  margin: 0;
  transform: translateX(-50%);
  text-align: center;
}

.native-home-comparison__heading h2 {
  margin: 0;
  color: #111;
  font: 900 62px/0.9 "Manrope", Arial, Helvetica, sans-serif;
  letter-spacing: -0.045em;
}

.native-home-comparison__heading p {
  width: 466px;
  /* Подзаголовок стоит вплотную к заголовку: в макете между ними была
   * пустая полоса в полсотни пикселей, и блок читался как два разных. */
  margin: 24px auto 0;
  color: #222;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.15;
  text-wrap: balance;
}

.native-home-comparison__columns {
  /* Композиция сдвигается вместе с заголовком, поэтому её собственная высота
   * задана явно: иначе при сдвиге вверх содержимое вылезает за контейнер. */
  transform: translateY(var(--comparison-shift));
  position: absolute;
  inset: 0 0 auto;
  height: var(--comparison-canvas);
  width: 100%;
}

.native-home-comparison__column {
  position: absolute;
  z-index: 2;
  top: 359px;
  width: 577px;
  margin: 0;
}

.native-home-comparison__column--staff {
  left: calc(50% - 720px + 86px);
}

.native-home-comparison__column--agency {
  top: 357px;
  left: calc(50% - 720px + 801px);
}

.native-home-comparison__copy {
  position: relative;
  z-index: 2;
  width: 100%;
}

.native-home-comparison__copy h3 {
  margin: 0;
  color: #222;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.15;
}

.native-home-comparison__column--agency .native-home-comparison__copy h3 {
  color: #9e2b2f;
}

.native-home-comparison__copy ul {
  display: grid;
  gap: 14px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.native-home-comparison__column--agency .native-home-comparison__copy ul {
  margin-top: 25px;
}

.native-home-comparison__copy li {
  display: grid;
  min-width: 0;
  align-items: center;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 14px;
  margin: 0;
  padding: 0;
  color: #222;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.85;
}

.native-home-comparison__column--agency .native-home-comparison__copy li {
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 14px;
}

.native-home-comparison__copy li img {
  display: block;
  width: 18px;
  height: auto;
  max-height: 42px;
  object-fit: contain;
}

.native-home-comparison__column--agency .native-home-comparison__copy li img {
  width: 34px;
  max-height: 38px;
}

.native-home-comparison__copy li:first-child img {
  align-self: start;
  margin-top: 6px;
}

.native-home-comparison__column--agency
  .native-home-comparison__copy
  li:first-child
  img {
  width: 48px;
  margin-top: -4px;
}

.native-home-comparison__separator {
  display: block;
  width: 100%;
  height: 10px;
  margin: 17px 0 0;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.native-home-comparison__separator--agency {
  background-image: url("/legacy/images/tild3136-6635-4230-a566-633665653565___.webp");
}

.native-home-comparison__separator--staff {
  background-image: url("/legacy/images/tild6135-3735-4630-a439-396431323630___.webp");
}

.native-home-comparison__column--staff .native-home-comparison__separator {
  margin-top: 16px;
}

.native-home-comparison__price {
  position: relative;
  z-index: 2;
  display: flex;
  width: max-content;
  align-items: baseline;
  gap: 10px;
  margin: 10px 0 0;
  color: #222;
  white-space: nowrap;
}

.native-home-comparison__column--agency .native-home-comparison__price {
  color: #9e2b2f;
}

.native-home-comparison__price strong {
  font-size: 64px;
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1.15;
}

.native-home-comparison__price span {
  font-size: 34px;
  font-weight: 600;
  line-height: 1.15;
}

.native-home-comparison__art {
  position: absolute;
  z-index: 1;
  margin: 0;
  pointer-events: none;
}

.native-home-comparison__art img,
.native-home-comparison__art picture {
  display: block;
}

.native-home-comparison__art--staff {
  top: 499px;
  left: -86px;
  width: 700px;
  height: 383px;
}

.native-home-comparison__staff-person {
  position: absolute;
  top: 0;
  left: 95px;
  width: 520px;
  height: auto;
}

.native-home-comparison__staff-leaves {
  position: absolute;
  height: auto;
}

.native-home-comparison__staff-leaves--left {
  top: 0;
  left: 0;
  width: 250px;
}

.native-home-comparison__staff-leaves--right {
  top: 89px;
  left: 480px;
  width: 220px;
  transform: rotate(-8deg);
}

.native-home-comparison__art--agency {
  top: 346px;
  left: -81px;
  width: 720px;
}

.native-home-comparison__art--agency img {
  width: 100%;
  height: auto;
}

.native-home-comparison__divider {
  position: absolute;
  z-index: 1;
  top: 349px;
  left: calc(50% - 10px);
  display: block;
  width: 13px;
  /* Линия тянется до низа холста: на невысоком экране холст короче, и
   * прибитая высота вылезала за него. */
  height: calc(var(--comparison-canvas) - 349px);
  object-fit: fill;
}



















.native-home-pricing,
.native-home-pricing *,
.native-home-pricing *::before,
.native-home-pricing *::after {
  box-sizing: border-box !important;
}

.native-home-pricing {
  position: relative;
  isolation: isolate;
  display: block;
  width: 100%;
  margin: 0;
  padding: var(--home-space-section) 20px var(--home-space-section);
  scroll-margin-top: 120px;
  overflow: visible;
  background: #f5f5f5;
  color: #222;
  font-family: "Manrope", Arial, Helvetica, sans-serif;
}

.native-home-pricing__inner {
  position: relative;
  z-index: 2;
  width: min(100%, 797px);
  margin: 0 auto;
}

.native-home-pricing__title {
  margin: 0;
  color: #000;
  font-family: inherit;
  font-size: 34px;
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 0.95;
  text-align: center;
  text-wrap: balance;
}

.native-home-pricing__grid {
  display: grid;
  width: min(100%, 388px);
  min-width: 0;
  grid-template-columns: minmax(0, 1fr);
  gap: 28px;
  margin: var(--home-space-heading) auto 0;
}

.native-home-pricing__card {
  display: flex;
  width: 100%;
  min-width: 0;
  min-height: 687px;
  flex-direction: column;
  margin: 0;
  border: 1px solid #fff;
  border-radius: 10px;
  color: #222;
  background: #fff;
}

.native-home-pricing__card--featured {
  color: #fff;
  background: #2d3e50;
}

.native-home-pricing__card-header {
  min-height: 198px;
  padding: 40px 25px 24px;
  border-radius: 9px 9px 0 0;
}

.native-home-pricing__card--featured .native-home-pricing__card-header {
  background: #35495d;
}

.native-home-pricing__price-line {
  display: flex;
  min-width: 0;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0;
}

.native-home-pricing__price {
  margin: 0;
  color: inherit;
  font-family: inherit;
  font-size: 40px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 0.9;
  white-space: nowrap;
}

.native-home-pricing__period {
  margin-left: 7px;
  color: inherit;
  font-size: 20px;
  font-weight: 600;
  line-height: 0.9;
  white-space: nowrap;
}

.native-home-pricing__popular {
  display: inline-flex;
  min-width: 95px;
  min-height: 20px;
  align-items: center;
  gap: 4px;
  margin-left: auto;
  padding: 4px 6px;
  border-radius: 999px;
  color: #222;
  background: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1;
  white-space: nowrap;
}

.native-home-pricing__flame {
  display: block;
  width: 9px;
  height: 12px;
  flex: 0 0 9px;
}

.native-home-pricing__description {
  margin: 27px 0 0;
  color: inherit;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
  opacity: 0.8;
}

.native-home-pricing__content {
  display: flex;
  min-width: 0;
  flex: 1 1 auto;
  flex-direction: column;
  padding: 25px 20px 0;
}

.native-home-pricing__tags {
  display: flex;
  min-width: 0;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.native-home-pricing__tags li {
  display: inline-flex;
  min-height: 22px;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 5px 7px 4px;
  border-radius: 999px;
  color: #222;
  background: #f5f5f5;
  font-size: 11px;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
}

.native-home-pricing__card--featured .native-home-pricing__tags li {
  color: #fff;
  background: #445970;
}

.native-home-pricing__tags .native-home-pricing__tag--seo {
  color: #fff;
  background: #9e2b2f;
}

.native-home-pricing__details {
  display: flex;
  min-width: 0;
  flex: 1 1 auto;
  flex-direction: column;
  margin-top: 18px;
}

.native-home-pricing__feature-list {
  display: grid;
  min-width: 0;
  gap: 0;
  margin: 0;
  padding: 0 0 0 18px;
  color: inherit;
  font-size: 13px;
  font-weight: 600;
  line-height: 2;
}

.native-home-pricing__feature-list li {
  min-width: 0;
  margin: 0;
  padding: 0;
}

.native-home-pricing__extra {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid currentcolor;
}

.native-home-pricing__extra p {
  margin: 0;
  padding-left: 18px;
  color: inherit;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.55;
}

.native-home-pricing__extra p::before {
  content: "•";
  display: inline-block;
  width: 18px;
  margin-left: -18px;
}

.native-home-pricing__cta {
  display: flex;
  width: calc(100% - 40px);
  min-height: 50px;
  flex: 0 0 50px;
  align-items: center;
  justify-content: center;
  margin: 20px;
  padding: 0 18px;
  border: 1px solid #fff;
  border-radius: 5px;
  color: #fff;
  background: #9e2b2f;
  font: 650 16px/1.2 "Manrope", Arial, Helvetica, sans-serif;
  letter-spacing: -0.015em;
  text-align: center;
  cursor: pointer;
  transition:
    color 160ms ease,
    background-color 160ms ease,
    border-color 160ms ease;
}

.native-home-pricing__card--featured .native-home-pricing__cta {
  color: #222;
  background: #fff;
}

.native-home-pricing__cta:hover {
  color: #fff;
  border-color: #fff;
  background: #2d3e50;
}

.native-home-pricing__cta:focus-visible {
  outline: 3px solid rgb(158 43 47 / 35%);
  outline-offset: 3px;
}

.native-home-pricing__card--featured .native-home-pricing__cta:focus-visible {
  outline-color: rgb(255 255 255 / 60%);
}

.native-home-pricing__decor,
.native-home-pricing__decor-item {
  display: none;
}






















@supports (overflow: clip) {
  @media screen and (min-width: 1200px) {
    .native-home-pricing {
      overflow: clip;
    }
  }
}







.native-home-stories,
.native-home-stories *,
.native-home-stories *::before,
.native-home-stories *::after {
  box-sizing: border-box !important;
}

.native-home-stories {
  /* Пустое поле под рисунком перехода: на него уменьшается отступ до
   * заголовка, чтобы расстояние считалось от самой картинки. */
  --stories-art-slack: 9.5625vw;
  position: relative;
  display: block;
  width: 100%;
  margin: 0;
  overflow: hidden;
  background: #f5f5f5;
  color: #172b3e;
  font-family: "Manrope", Arial, Helvetica, sans-serif;
}

.native-home-stories__transition {
  position: relative;
  width: 100%;
  height: 49.4791vw;
  overflow: hidden;
  background: #f5f5f5;
}

.native-home-stories__transition-art {
  position: absolute;
  z-index: 1;
  display: block;
  max-width: none;
  object-fit: fill;
  pointer-events: none;
  user-select: none;
}

/* Руки тянутся навстречу друг другу, когда полоса перехода входит в экран:
 * в экспорте это была пошаговая scroll-анимация, здесь — обычный переход,
 * который включает наблюдатель, а «сведено» остаётся конечным состоянием. */
.native-home-stories__transition[data-stories-reach] .native-home-stories__transition-art {
  opacity: 0;
  transition:
    opacity 520ms ease-out,
    transform 820ms cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: transform, opacity;
}

/* Руки наезжают сбоку и сверху — так это было в экспорте: половинки уходят
 * за края экрана и выше своей полосы, а затем сходятся к центру. */
.native-home-stories__transition[data-stories-reach="ready"]
  .native-home-stories__transition-art--left {
  transform: translate3d(-24%, -16%, 0) rotate(-6deg);
}

.native-home-stories__transition[data-stories-reach="ready"]
  .native-home-stories__transition-art--right {
  transform: translate3d(24%, -16%, 0) rotate(6deg);
}

.native-home-stories__transition[data-stories-reach="reached"]
  .native-home-stories__transition-art {
  opacity: 1;
  transform: translate3d(0, 0, 0) rotate(0deg);
}

.native-home-stories__transition-art--left {
  top: 11.7709vw;
  left: -10.4166vw;
  width: 72.2916vw;
  height: 28.125vw;
}

.native-home-stories__transition-art--right {
  top: 0;
  right: -10.4166vw;
  width: 72.7084vw;
  height: 35.4166vw;
}

.native-home-stories__anchor {
  position: relative;
  display: block;
  width: 0;
  height: 0;
  scroll-margin-top: 120px;
}

.native-home-stories__heading {
  position: relative;
  z-index: 2;
  display: grid;
  width: 100%;
  min-height: 124px;
  align-items: end;
  justify-items: center;
  /* Иллюстрация-переход стоит выше, поэтому отсчёт до заголовка идёт от самой
   * картинки, а не от края её полосы: внутри полосы под рисунком остаётся
   * пустое поле, и его вычитаем. */
  padding: max(0px, calc(var(--home-space-section) - var(--stories-art-slack)))
    20px var(--home-space-heading);
  background: #f5f5f5;
  text-align: center;
}

.native-home-stories__heading h2 {
  width: min(100%, 1920px);
  margin: 0;
  color: #222;
  font-size: 62px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 0.95;
  text-align: center;
  text-wrap: balance;
}

.native-home-stories__struck {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 301.5 15.33' preserveAspectRatio='none'%3E%3Cpath fill='none' stroke='%239e2b2f' stroke-width='3' d='M11 4.33C11 4.33 263.5 1.33 283.5 4.33C303.5 7.33 3 12.33 3 12.33C3 12.33 298.5 12.33 298.5 12.33'/%3E%3C/svg%3E")
    no-repeat center 58% / 104% 0.42em;
  text-decoration: none;
}

.native-home-stories__list {
  position: relative;
  display: grid;
  width: 100%;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  margin: 0;
  padding: 0;
}

/* Кейсы стоят на тёмном, а вокруг светлый фон страницы. Без растушёвки
 * граница читается как обрез. */
.native-home-stories__list::before,
.native-home-stories__list::after {
  content: "";
  position: absolute;
  z-index: 2;
  right: 0;
  left: 0;
  height: 56px;
  pointer-events: none;
}

.native-home-stories__list::before {
  top: 0;
  background: linear-gradient(to bottom, #f5f5f5, rgb(245 245 245 / 0%));
}

.native-home-stories__list::after {
  bottom: 0;
  background: linear-gradient(to top, #f5f5f5, rgb(245 245 245 / 0%));
}

.native-home-stories__case {
  --home-story-bg: #21384c;
  --home-story-fg: #fff;
  --home-story-muted: #d8e0e7;
  --home-story-button: #fff;

  display: block;
  width: 100%;
  margin: 0;
  overflow: hidden;
  color: var(--home-story-fg);
  background: var(--home-story-bg);
}

.native-home-stories__case-inner {
  display: grid;
  width: min(1440px, 100%);
  min-height: clamp(560px, 52.5vw, 680px);
  grid-template-areas:
    "copy media"
    "meta media";
  grid-template-columns: minmax(300px, 0.38fr) minmax(0, 0.62fr);
  gap: clamp(28px, 3.125vw, 38px) clamp(44px, 5.625vw, 66px);
  margin: 0 auto;
  padding: clamp(44px, 5vw, 60px) clamp(30px, 3.75vw, 46px)
    clamp(46px, 5vw, 62px);
}

.native-home-stories__copy {
  min-width: 0;
  grid-area: copy;
}

.native-home-stories__copy h3 {
  max-width: 560px;
  margin: 0;
  color: var(--home-story-fg);
  font-size: clamp(30px, 2.8125vw, 40px);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.native-home-stories__copy p {
  max-width: 520px;
  margin: clamp(20px, 2.75vw, 30px) 0 0;
  color: var(--home-story-muted);
  font-size: clamp(15px, 1.3125vw, 18px);
  font-weight: 350;
  line-height: 1.52;
}

.native-home-stories__media {
  display: block;
  width: 100%;
  min-width: 0;
  min-height: 460px;
  align-self: stretch;
  grid-area: media;
  margin-left: auto;
  overflow: hidden;
  border-radius: 7px;
  background: rgb(255 255 255 / 10%);
  box-shadow: 0 24px 64px rgb(0 0 0 / 18%);
}

.native-home-stories__media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 460px;
  border-radius: 0;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.5s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.native-home-stories__case:hover .native-home-stories__media img {
  transform: scale(1.006);
}

.native-home-stories__meta {
  display: grid;
  min-width: 0;
  align-content: end;
  grid-area: meta;
  gap: 26px;
}

.native-home-stories__metrics {
  display: flex;
  min-width: 0;
  flex-wrap: wrap;
  gap: 18px 28px;
  margin: 0;
}

.native-home-stories__metrics div {
  display: grid;
  min-width: 112px;
  gap: 5px;
}

.native-home-stories__metrics dt {
  color: var(--home-story-muted);
  font-size: clamp(13px, 1.125vw, 16px);
  font-weight: 350;
}

.native-home-stories__metrics dd {
  margin: 0;
  color: var(--home-story-fg);
  font-size: clamp(15px, 1.25vw, 18px);
  font-weight: 500;
}

.native-home-stories__project-link,
.native-home-stories__all {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  padding: 13px 24px;
  border: 1.5px solid var(--home-story-button);
  border-radius: 7px;
  color: var(--home-story-button) !important;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition:
    transform 0.2s ease,
    color 0.2s ease,
    background-color 0.2s ease;
}

.native-home-stories__project-link:hover,
.native-home-stories__all:hover {
  transform: translateY(-2px);
}

.native-home-stories__project-link:hover {
  color: var(--home-story-bg) !important;
  border-color: var(--home-story-button);
  background: var(--home-story-button);
}

.native-home-stories__project-link:focus-visible,
.native-home-stories__all:focus-visible {
  outline: 3px solid rgb(158 43 47 / 45%);
  outline-offset: 3px;
}

.native-home-stories__footer {
  display: flex;
  width: min(1440px, calc(100% - 64px));
  justify-content: center;
  margin: 0 auto;
  padding: 32px 0 92px;
}

.native-home-stories__all {
  min-width: 310px;
  min-height: 62px;
  border: 0;
  border-radius: 6px;
  color: #fff !important;
  background: #ad2c32;
  box-shadow: 0 14px 30px rgb(173 44 50 / 28%);
  font-size: 16px;
  font-weight: 650;
}

.native-home-stories__all-note {
  display: none;
}

.native-home-stories__all:hover {
  color: #fff !important;
  background: #91242a;
}



















.native-home-advantages,
.native-home-advantages *,
.native-home-advantages *::before,
.native-home-advantages *::after {
  box-sizing: border-box !important;
}

.native-home-advantages {
  position: relative;
  isolation: isolate;
  display: block;
  width: 100%;
  margin: 0;
  padding: var(--home-space-section) 20px
    calc(var(--home-space-section) + 40px);
  scroll-margin-top: 120px;
  overflow: hidden;
  background: linear-gradient(
    180deg,
    #f5f5f5 0,
    #f8f8f8 18%,
    #fff 58%,
    #fff 100%
  );
  color: #222;
  font-family: "Manrope", Arial, Helvetica, sans-serif;
}

.native-home-advantages__inner {
  position: relative;
  z-index: 2;
  width: min(100%, 1200px);
  margin: 0 auto;
}

.native-home-advantages__title {
  margin: 0;
  color: #9e2b2f;
  font-family: inherit;
  font-size: 62px;
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 0.95;
  text-align: center;
  text-wrap: balance;
}

.native-home-advantages__gallery {
  display: grid;
  width: min(100%, 1108px);
  min-width: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: var(--home-space-heading) auto 0;
}

.native-home-advantages__card {
  display: block;
  min-width: 0;
  margin: 0;
}

.native-home-advantages__card img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  border: 0;
  border-radius: 10px;
  object-fit: contain;
}

.native-home-advantages__document-panel {
  position: relative;
  z-index: 2;
  display: grid;
  width: 100%;
  min-width: 0;
  min-height: 281px;
  grid-template-columns: minmax(0, 372px) minmax(0, 346px) minmax(0, 246px);
  align-items: start;
  justify-content: space-between;
  gap: 42px;
  margin: 49px auto 0;
  padding: 41px 50px 30px;
  border-radius: 10px;
  color: #f0eeea;
  background: #2d3e50;
}

.native-home-advantages__document-title {
  min-width: 0;
  margin: 0;
  color: #f0eeea;
  font-family: inherit;
  font-size: 54px;
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.06;
}

.native-home-advantages__documents {
  display: grid;
  width: 100%;
  min-width: 0;
  gap: 14px;
  margin-top: 11px;
}

.native-home-advantages__document {
  position: relative;
  display: grid;
  width: 100%;
  min-width: 0;
  min-height: 52px;
  grid-template-columns: minmax(0, 1fr) 69px;
  overflow: hidden;
  border: 1px solid #fff;
  border-radius: 5px;
  color: #222;
  background: #fff;
  transition:
    color 160ms ease,
    background-color 160ms ease;
}

.native-home-advantages__document-open,
.native-home-advantages__document-download {
  display: flex;
  min-width: 0;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  color: inherit !important;
  background: transparent;
  font-family: inherit;
  line-height: 1.1;
  text-align: center;
  text-decoration: none !important;
}

.native-home-advantages__document-open {
  padding: 10px 12px;
  font-size: 18px;
  font-weight: 600;
}

.native-home-advantages__document-download {
  padding: 0 7px;
  border-left: 1px solid rgb(34 34 34 / 16%);
  color: #5f6b77 !important;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.native-home-advantages__document:hover {
  color: #fff;
  background: #2d3e50;
}

.native-home-advantages__document:hover
  .native-home-advantages__document-download {
  border-color: rgb(255 255 255 / 24%);
  color: #fff !important;
}

.native-home-advantages__document-open:focus-visible,
.native-home-advantages__document-download:focus-visible {
  position: relative;
  z-index: 1;
  outline: 3px solid #c95c61;
  outline-offset: -3px;
}

.native-home-advantages__hint {
  position: relative;
  width: 246px;
  height: 190px;
  justify-self: end;
  color: #fff;
}

.native-home-advantages__hint-oval {
  position: absolute;
  top: -12px;
  right: 0;
  display: block;
  width: 246px;
  height: 167px;
  overflow: visible;
}

.native-home-advantages__hint-copy {
  position: absolute;
  z-index: 1;
  top: 20px;
  right: 8px;
  display: block;
  width: 212px;
  color: #fff;
  font-family: "Nevsky Strategy", "Nevsky Caveat", Caveat, cursive;
  font-size: 38px;
  font-weight: 400;
  line-height: 0.86;
  text-align: center;
  transform: rotate(-2deg);
}

.native-home-advantages__hint-arrow-mobile {
  display: none;
}

.native-home-advantages__hint-arrow {
  position: absolute;
  right: 155px;
  bottom: -1px;
  display: block;
  width: 135px;
  height: 77px;
  overflow: visible;
  transform: rotate(21deg);
}

.native-home-advantages__desktop-decor {
  position: absolute;
  z-index: 0;
  bottom: 0;
  left: 50%;
  display: block;
  width: 2128px;
  max-width: none;
  height: 650px;
  object-fit: fill;
  pointer-events: none;
  user-select: none;
  transform: translateX(-50%);
}






















.native-home-final-offer,
.native-home-final-offer *,
.native-home-final-offer *::before,
.native-home-final-offer *::after {
  box-sizing: border-box !important;
}

.native-home-final-offer {
  position: relative;
  isolation: isolate;
  display: block;
  width: 100%;
  margin: 0;
  overflow: hidden;
  background: #f5f5f5;
  color: #222;
  font-family: "Manrope", Arial, Helvetica, sans-serif;
}

.native-home-final-offer__backdrop {
  position: absolute;
  z-index: 0;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  user-select: none;
}

/* Стена проступает из белого, а не начинается обрывом: тот же приём, что на
 * стыке первого и второго блоков. Предыдущий блок заканчивается белым, и
 * рисунок набирает силу на этой же полосе. */
.native-home-final-offer__backdrop::after {
  /* Полоса растворения короткая: она смягчает сам стык, а не съедает верх
   * рисунка. Раньше белое ложилось на две трети верхних окон и на надпись. */
  position: absolute;
  z-index: 5;
  top: 0;
  right: 0;
  left: 0;
  height: clamp(36px, 5.625vh, 68px);
  background: linear-gradient(to bottom, #fff, rgb(255 255 255 / 0%));
  content: "";
}

.native-home-final-offer__city,
.native-home-final-offer__paper {
  position: absolute;
  left: 50%;
  display: block;
  max-width: none;
  border: 0;
  object-fit: fill;
  transform: translateX(-50%);
}

.native-home-final-offer__city {
  display: none;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
}

.native-home-final-offer__paper {
  top: -92px;
  width: 1157px;
  height: auto;
}

.native-home-final-offer__inner {
  position: relative;
  z-index: 1;
  width: min(100%, 1920px);
  min-width: 0;
  margin: 0 auto;
  padding: 0 20px 22px;
}

.native-home-final-offer__character {
  display: none;
  margin: 0;
}

.native-home-final-offer__content {
  position: relative;
  width: min(100%, 415px);
  min-width: 0;
  margin: 0 auto;
  padding-top: 143px;
  text-align: center;
}

.native-home-final-offer__title {
  margin: 0 auto;
  color: #222;
  font-family: inherit;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1;
  text-align: center;
  text-wrap: balance;
}

.native-home-final-offer__title-main,
.native-home-final-offer__title-accent {
  display: inline;
}

.native-home-final-offer__title-accent {
  color: #9e2b2f;
  font-family: "Nevsky Strategy", "Nevsky Caveat", Caveat, cursive;
  font-size: 1.42em;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.81;
  white-space: nowrap;
}

.native-home-final-offer__lead {
  width: 100%;
  margin: 26px auto 0;
  color: #222;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.34;
  text-align: center;
}

.native-home-final-offer__form {
  display: grid;
  width: 100%;
  min-width: 0;
  gap: 0;
  margin: 24px auto 0;
  text-align: left;
}

.native-home-final-offer__visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  clip-path: inset(50%) !important;
  border: 0 !important;
  white-space: nowrap !important;
}

.native-home-final-offer__phone-field {
  display: grid;
  width: 100%;
  min-width: 0;
  min-height: 40px;
  grid-template-columns: 35px minmax(0, 1fr);
  align-items: center;
  border-bottom: 1px solid #222;
}

.native-home-final-offer__flag {
  display: inline-flex;
  width: 31px;
  height: 26px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 2px;
  font-size: 22px;
  line-height: 1;
}

.native-home-final-offer__phone-field input {
  display: block;
  width: 100%;
  min-width: 0;
  height: 40px;
  margin: 0;
  padding: 0 7px;
  border: 0;
  border-radius: 0;
  outline: 0;
  color: #222;
  background: transparent;
  box-shadow: none;
  font: 400 16px/1.2 "Manrope", Arial, Helvetica, sans-serif;
  appearance: none;
}

.native-home-final-offer__phone-field input::placeholder {
  color: #919191;
  opacity: 1;
}

.native-home-final-offer__phone-field:focus-within {
  border-bottom-color: #9e2b2f;
  box-shadow: 0 1px 0 #9e2b2f;
}

.native-home-final-offer__consent {
  position: relative;
  display: grid;
  min-width: 0;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  margin-top: 18px;
  color: #222;
  cursor: pointer;
}

.native-home-final-offer__consent input {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 24px;
  height: 24px;
  margin: 0;
  cursor: pointer;
  opacity: 0;
}

.native-home-final-offer__consent > span {
  position: relative;
  display: block;
  width: 24px;
  height: 24px;
  border: 2px solid #a3abb4;
  background: #fff;
}

.native-home-final-offer__consent input:checked + span::after {
  position: absolute;
  top: 1px;
  left: 6px;
  width: 7px;
  height: 14px;
  border: solid #9e2b2f;
  border-width: 0 2px 2px 0;
  content: "";
  transform: rotate(45deg);
}

.native-home-final-offer__consent input:focus-visible + span {
  outline: 3px solid rgb(158 43 47 / 35%);
  outline-offset: 3px;
}

.native-home-final-offer__consent em {
  margin: 0;
  color: #222;
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.25;
}

.native-home-final-offer__consent a {
  color: #ff8578 !important;
  text-decoration: none;
}

.native-home-final-offer__consent a:hover,
.native-home-final-offer__consent a:focus-visible {
  color: #9e2b2f !important;
  text-decoration: underline;
}

.native-home-final-offer__form button {
  display: flex;
  width: 100%;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  margin: 18px 0 0;
  padding: 0 18px;
  border: 1px solid #9e2b2f;
  border-radius: 5px;
  color: #fff;
  background: #9e2b2f;
  font: 700 14px/1.2 "Manrope", Arial, Helvetica, sans-serif;
  text-align: center;
  cursor: pointer;
  transition:
    color 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease;
}

.native-home-final-offer__form button:hover,
.native-home-final-offer__form button:focus-visible {
  border-color: #2d3e50;
  background: #2d3e50;
}

.native-home-final-offer__form button:focus-visible {
  outline: 3px solid rgb(45 62 80 / 30%);
  outline-offset: 3px;
}

.native-home-final-offer__form button:disabled {
  cursor: wait;
  opacity: 0.68;
}

.native-home-final-offer__status {
  min-height: 15px;
  margin: 6px 0 0;
  color: #5f6b77;
  font-size: 10px;
  font-weight: 500;
  line-height: 1.25;
  text-align: left;
}

.native-home-final-offer__status[data-status="error"] {
  color: #9e2b2f;
}

.native-home-final-offer__status[data-status="success"] {
  color: #2d6e4e;
}

.native-home-final-offer__callback {
  width: 100%;
  margin: 14px auto 0;
  color: #222;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.18;
  text-align: center;
}

.native-home-final-offer__lamp {
  --final-lamp-top: 39px;
  position: absolute;
  z-index: 3;
  top: var(--final-lamp-top);
  left: 50%;
  display: block;
  width: 48px;
  height: 97px;
  pointer-events: none;
  transform: translateX(-50%);
}

/* Лампа висит не в воздухе: шнур дотянут до верхнего края блока — до
 * «потолка» из рваной бумаги. Длина шнура равна собственному отступу лампы,
 * поэтому она одинаково верна на всех ширинах. */
/* Провод на самом рисунке идёт не по центру: его середина приходится на
 * 53.5% ширины, а толщина — 3.5% от неё. Дорисованная часть повторяет эти
 * доли, иначе на стыке видно ступеньку. */
.native-home-final-offer__lamp::before {
  position: absolute;
  bottom: 100%;
  left: 51.75%;
  width: 3.5%;
  min-width: 1px;
  height: var(--final-lamp-top);
  /* Верх шнура растворяется: он уходит за край блока, а не обрывается там
   * ровной чертой — иначе лампа выглядит подвешенной к небу. */
  background: linear-gradient(to bottom, rgb(34 38 42 / 0%), #22262a 55%);
  content: "";
}

.native-home-final-offer__lamp-image {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: fill;
}

.native-home-final-offer__lamp-image--on {
  opacity: 0;
  transition: opacity 200ms ease;
}

.native-home-final-offer__form:hover
  ~ .native-home-final-offer__lamp
  .native-home-final-offer__lamp-image--on,
.native-home-final-offer__form:focus-within
  ~ .native-home-final-offer__lamp
  .native-home-final-offer__lamp-image--on {
  opacity: 1;
}






















.native-home-team-gallery,
.native-home-team-gallery *,
.native-home-team-gallery *::before,
.native-home-team-gallery *::after {
  box-sizing: border-box !important;
}

.native-home-team-gallery {
  position: relative;
  display: block;
  width: 100%;
  height: 125vh;
  height: 125svh;
  min-height: 680px;
  margin: 0;
  overflow: hidden;
  background: #111;
  font-family: "Manrope", Arial, Helvetica, sans-serif;
}

/* Фотографии не начинаются обрывом: сверху они проступают из светлого блока
 * над галереей, снизу уходят в тёмный подвал. Полосы узкие — они смягчают
 * стык, а не съедают кадры. */
.native-home-team-gallery::before,
.native-home-team-gallery::after {
  position: absolute;
  z-index: 3;
  right: 0;
  left: 0;
  height: clamp(48px, 7.5vh, 96px);
  content: "";
  pointer-events: none;
}

.native-home-team-gallery::before {
  top: 0;
  background: linear-gradient(to bottom, #f5f5f5, rgb(245 245 245 / 0%));
}

.native-home-team-gallery::after {
  bottom: 0;
  background: linear-gradient(to top, #2f3f52, rgb(47 63 82 / 0%));
}

.native-home-team-gallery__grid {
  display: grid;
  width: 100%;
  height: 100%;
  grid-template-columns: 1.18fr 0.91fr 0.91fr;
  grid-template-rows: minmax(0, 1fr) minmax(0, 1fr);
  gap: 0;
}

.native-home-team-gallery__tile {
  position: relative;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  background: #171717;
}

.native-home-team-gallery__tile:nth-child(1) {
  grid-column: 1;
  grid-row: 1 / 3;
}

.native-home-team-gallery__tile:nth-child(2) {
  grid-column: 2;
  grid-row: 1;
}

.native-home-team-gallery__tile:nth-child(3) {
  grid-column: 3;
  grid-row: 1;
}

.native-home-team-gallery__tile:nth-child(4) {
  grid-column: 2 / 4;
  grid-row: 2;
}

.native-home-team-gallery__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  opacity: 0;
  transition: opacity 1.1s ease;
}

.native-home-team-gallery__media img,
.native-home-team-gallery__media video {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  border: 0;
  object-fit: cover;
  object-position: center;
}

.native-home-team-gallery__media.is-active {
  opacity: 1;
}







.native-home-footer {
  --footer-blue: #2d3e50;
  --footer-muted: rgba(255, 255, 255, 0.58);
  position: relative;
  isolation: isolate;
  box-sizing: border-box;
  min-height: 1410px;
  overflow: hidden;
  overflow: clip;
  padding: 272px 40px max(210px, calc(170px + env(safe-area-inset-bottom)));
  background: var(--footer-blue);
  color: #fff;
  font-family: "Manrope", Arial, sans-serif;
}

.native-home-footer *,
.native-home-footer *::before,
.native-home-footer *::after {
  box-sizing: border-box;
}

.native-home-footer a {
  color: inherit;
}

.native-home-footer__layout {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(188px, 1fr) minmax(228px, 1fr) minmax(360px, 1fr);
  grid-template-areas:
    "messengers navigation lead"
    "contacts office legal";
  column-gap: clamp(64px, 10vw, 180px);
  row-gap: 58px;
  width: min(1360px, 100%);
  margin: 0 auto;
}

.native-home-footer__contacts {
  grid-area: contacts;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 28px;
  min-width: 0;
}

.native-home-footer__contact-link {
  font-size: clamp(22px, 2.275vw, 26px);
  font-weight: 600;
  line-height: 0.95;
  white-space: nowrap;
}

.native-home-footer__group {
  min-width: 0;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
}

.native-home-footer__group h3,
.native-home-footer__group p,
.native-home-footer__group ul,
.native-home-footer__lead h3 {
  margin: 0;
}

.native-home-footer__group h3 {
  margin-bottom: 20px;
  color: var(--footer-muted);
  font-size: inherit;
  font-weight: 600;
  line-height: 1;
}

.native-home-footer__group h3 > a {
  color: inherit;
  text-decoration: none;
}

.native-home-footer__group ul {
  display: grid;
  gap: 16px;
  padding: 0;
  list-style: none;
}

.native-home-footer__group--messengers {
  grid-area: messengers;
}

.native-home-footer__group--navigation {
  grid-area: navigation;
}

.native-home-footer__group--office {
  grid-area: office;
}

.native-home-footer__group--office address {
  max-width: 360px;
  font-style: normal;
  line-height: 1.3;
}

.native-home-footer__group--legal {
  grid-area: legal;
}

.native-home-footer__group--legal p {
  margin-top: 20px;
}

.native-home-footer__subheading {
  margin-top: 28px !important;
}

.native-home-footer__link {
  position: relative;
  display: inline-block;
  max-width: 100%;
  text-underline-offset: 0.15em;
}

.native-home-footer__lead {
  grid-area: lead;
  width: 100%;
  min-width: 0;
}

.native-home-footer__lead h3 {
  margin-bottom: 20px;
  font-size: clamp(26px, 2.95vw, 34px);
  font-weight: 700;
  line-height: 1;
}

.native-home-footer__form {
  display: grid;
  width: 100%;
}

.native-home-footer__phone-field {
  display: flex;
  align-items: center;
  min-width: 0;
  min-height: 43px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

.native-home-footer__flag {
  flex: 0 0 auto;
  margin-right: 10px;
  font-size: 19px;
  line-height: 1;
}

.native-home-footer__flag::after {
  content: "";
  display: inline-block;
  margin: 0 0 3px 7px;
  border: 4px solid transparent;
  border-top-color: rgba(255, 255, 255, 0.48);
}

.native-home-footer__phone-field input {
  width: 100%;
  min-width: 0;
  padding: 0 0 9px;
  border: 0;
  outline: 0;
  background: transparent;
  color: #fff;
  font: 500 16px/1.2 "Manrope", Arial, sans-serif;
}

.native-home-footer__phone-field input::placeholder {
  color: rgba(255, 255, 255, 0.48);
  opacity: 1;
}

.native-home-footer__phone-field:focus-within {
  border-bottom-color: #fff;
}

.native-home-footer__consent {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  margin: 20px 0 24px;
  cursor: pointer;
}

.native-home-footer__consent input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
}

.native-home-footer__consent > span {
  position: relative;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.25);
}

.native-home-footer__consent input:checked + span::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 6px;
  width: 5px;
  height: 10px;
  transform: rotate(45deg);
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
}

.native-home-footer__consent input:focus-visible + span {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

.native-home-footer__consent em {
  color: #fff;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.25;
}

.native-home-footer__consent a {
  color: #ff856f;
}

.native-home-footer__form button {
  width: 100%;
  min-height: 50px;
  padding: 12px 20px;
  border: 0;
  border-radius: 5px;
  background: #fff;
  color: #222;
  cursor: pointer;
  font: 700 16px/1 "Manrope", Arial, sans-serif;
  transition: color 180ms ease, background-color 180ms ease, opacity 180ms ease;
}

.native-home-footer__form button:hover,
.native-home-footer__form button:focus-visible {
  background: #ae2c30;
  color: #fff;
}

.native-home-footer__form button:disabled {
  cursor: wait;
  opacity: 0.65;
}

.native-home-footer__status {
  min-height: 18px;
  margin: 9px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  line-height: 1.25;
}

.native-home-footer__status[data-status="error"] {
  color: #ff9a88;
}

.native-home-footer__status[data-status="success"] {
  color: #d7f7dc;
}

.native-home-footer__art,
.native-home-footer__paper,
.native-home-footer__city,
.native-home-footer__statue,
.native-home-footer__watermark {
  position: absolute;
  pointer-events: none;
  user-select: none;
}

.native-home-footer__art {
  z-index: 1;
  inset: 0;
  overflow: hidden;
}

.native-home-footer__paper {
  z-index: 4;
  top: 0;
  left: 50%;
  width: max(100%, 960px);
  height: 190px;
  transform: translateX(-50%);
  object-fit: cover;
  object-position: center bottom;
}

/* Надпись держат атланты: она набрана крупно и выходит за края экрана, а её
 * нижний край приходится на поднятые руки статуй. Мелкая надпись, вписанная
 * в ширину экрана, разрывала эту связку — казалось, что статуи держат воздух. */
.native-home-footer__watermark {
  z-index: 1;
  bottom: 424px;
  left: 50%;
  display: flex;
  width: max-content;
  align-items: center;
  gap: 0.18em;
  transform: translateX(-50%);
  color: #fff;
  font-size: clamp(104px, 17.625vw, 244px);
  font-weight: 500;
  line-height: 0.78;
  opacity: 0.1;
  white-space: nowrap;
}

.native-home-footer__watermark b {
  display: block;
  width: 0.46em;
  height: 1.02em;
  background: currentColor;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 79 118'%3E%3Cpath fill='%23fff' d='M79 31.5632 25.4253 117.828 46.2734 42.5424 79 31.5632Z'/%3E%3Cpath fill='%23fff' d='M52.6668 0.6896 0 85.138 31.89 74.4011 52.6668 0.6896Z'/%3E%3C/svg%3E") no-repeat center / contain;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 79 118'%3E%3Cpath fill='%23fff' d='M79 31.5632 25.4253 117.828 46.2734 42.5424 79 31.5632Z'/%3E%3Cpath fill='%23fff' d='M52.6668 0.6896 0 85.138 31.89 74.4011 52.6668 0.6896Z'/%3E%3C/svg%3E") no-repeat center / contain;
  font-size: 0.64em;
  font-weight: 700;
}

.native-home-footer__city {
  z-index: 2;
  bottom: -105px;
  left: 50%;
  width: var(--footer-stage);
  transform: translateX(-50%);
  height: clamp(237px, 68.75vw, 882px);
  object-fit: cover;
  object-position: center top;
}

/* Композиция подвала собрана под экран примерно в 1920 px. На более широком
 * мониторе статуи расходились к краям, а надпись упиралась в свой предел —
 * получалось, что атланты держат воздух. Поэтому статуи и корабль считаются
 * от центра, а не от краёв окна. */
.native-home-footer {
  --footer-stage: min(100%, 1920px);
  --footer-stage-edge: calc(50% - var(--footer-stage) / 2);
}

.native-home-footer__statue {
  z-index: 3;
  bottom: -3px;
  width: clamp(167px, 33vw, 380px);
  height: auto;
}

.native-home-footer__statue--left {
  left: calc(var(--footer-stage-edge) - 48px);
}

.native-home-footer__statue--right {
  right: calc(var(--footer-stage-edge) - 41px);
}

.native-home-footer__visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}






















}
@media screen and (min-width: 512px) and (min-width: 1200px) {

  :root {
    --home-space-section: 88px;
    --home-space-heading: 44px;
  }

}
@media screen and (min-width: 768px) and (min-width: 1200px) {

  :root {
    --home-space-section: 120px;
    --home-space-heading: 56px;
  }

}
@media screen and (max-width: 1535px) and (min-width: 1200px) {

  .native-home-hero__art-item--left {
    top: 423px;
    left: calc(50% - 1002px);
    width: 751px;
  }

  .native-home-hero__art-item--center {
    top: 440px;
    left: calc(50% - 458px);
    width: 884px;
  }

  .native-home-hero__art-item--right {
    top: 459px;
    left: calc(50% + 241px);
    width: 702px;
  }

}
@media screen and (max-width: 1151px) and (min-width: 1200px) {

  .native-home-hero__art-item--left {
    top: 484px;
    left: calc(50% - 748px);
    width: 548px;
  }

  .native-home-hero__art-item--center {
    top: 449px;
    left: calc(50% - 369px);
    width: 698px;
  }

  .native-home-hero__art-item--right {
    top: 493px;
    left: calc(50% + 188px);
    width: 520px;
  }

}
@media screen and (max-width: 959px) and (min-width: 1200px) {

  .native-home-hero__art-item--left {
    top: 477px;
    left: calc(50% - 538px);
    width: 381px;
  }

  .native-home-hero__art-item--center {
    top: 422px;
    left: calc(50% - 292px);
    width: 550px;
  }

  .native-home-hero__art-item--right {
    top: 484px;
    left: calc(50% + 163px);
    width: 381px;
  }

}
@media screen and (min-width: 768px) and (max-height: 656px) and (min-width: 1200px) {

  .native-home-hero__copy {
    top: 118px;
  }

  .native-home-hero__copy h1,
  .native-home-hero__copy h2 {
    font-size: clamp(42px, 5.625vw, 62px);
  }

  .native-home-hero__lead {
    margin-top: 17px;
  }

}
@media screen and (min-width: 960px) and (max-height: 656px) and (min-width: 1200px) {

  .native-home-hero__copy {
    top: 150px;
  }

}
@media screen and (max-width: 767px) and (min-width: 1200px) {

  .native-home-header-backdrop {
    height: 112px;
  }

  .native-home-header {
    position: fixed;
    top: 8px;
    width: calc(100% - 20px);
    overflow: visible;
  }

  .native-home-header__utility {
    grid-template-columns: minmax(0, 1fr) auto;
    min-height: 62px;
    gap: 7px;
    padding: 6px 8px 6px 14px;
    border-radius: 12px;
    box-shadow: 0 8px 28px rgb(0 0 0 / 6%);
  }

  .native-home-header__location,
  .native-home-header__contacts {
    display: none;
  }

  .native-home-header__brand {
    display: flex;
    height: 100%;
    align-items: center;
    justify-self: start;
  }

  .native-home-header__brand img {
    width: 148px;
  }

  .native-home-header__mobile-actions {
    display: flex !important;
    align-items: center;
    gap: 8px;
  }

  .native-home-header__cases {
    display: grid;
    height: 48px;
    padding: 0 14px;
    border: 1px solid #e2e5e8;
    border-radius: 9px;
    background: #f7f7f6;
    color: #ad2f34 !important;
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
    place-items: center;
  }

  .native-home-header__menu-button {
    display: grid;
    width: 48px;
    height: 48px;
    margin: 0;
    padding: 0;
    border: 1px solid #e2e5e8;
    border-radius: 9px;
    background: #f7f7f6;
    color: #172b3e;
    font: 700 22px/1 Arial, sans-serif;
    cursor: pointer;
    appearance: none;
    place-items: center;
  }

  .native-home-header__nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    left: 0;
    display: none;
    grid-template-columns: 1fr;
    min-height: 0;
    max-height: calc(125dvh - 86px);
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: 8px;
    border: 1px solid #e2e5e8;
    border-radius: 0 0 14px 14px;
    background: #fff;
    box-shadow: 0 16px 38px rgb(31 48 64 / 16%);
    -webkit-overflow-scrolling: touch;
  }

  .native-home-header[data-menu-open="true"] .native-home-header__nav {
    display: grid;
  }

  .native-home-header__nav a {
    min-height: 44px;
    justify-content: flex-start;
    padding: 0 14px;
    border-radius: 9px;
    text-align: left;
  }

  .native-home-header__nav a:hover,
  .native-home-header__nav a:focus-visible {
    background: #f3f5f6;
  }

  .native-home-header__nav .native-home-header__mobile-portfolio {
    display: flex !important;
    color: #ad2f34;
  }

  .native-home-hero {
    height: max(125svh, 701px);
    min-height: 701px;
  }

  .native-home-hero__copy {
    top: 126px;
    width: calc(100% - 38px);
  }

  .native-home-hero__copy h1,
  .native-home-hero__copy h2 {
    font-size: clamp(34px, 10.375vw, 50px);
  }

  .native-home-hero__lead {
    margin-top: 16px;
    font-size: 15px;
    line-height: 1.42;
  }

  .native-home-hero__art-item--left {
    top: 389px;
    left: calc(50% - 471px);
    width: 381px;
  }

  .native-home-hero__art-item--center {
    top: 350px;
    left: calc(50% - 250px);
    width: 530px;
  }

  .native-home-hero__art-item--right {
    top: 397px;
    left: calc(50% + 88px);
    width: 381px;
  }

}
@media screen and (min-width: 384px) and (max-width: 511px) and (min-width: 1200px) {

  .native-home-hero {
    height: max(125svh, 561px);
    min-height: 561px;
  }

  .native-home-hero__art-item--left {
    top: 293px;
    left: calc(50% - 423px);
  }

  .native-home-hero__art-item--center {
    top: 299px;
    left: calc(50% - 192px);
    width: 393px;
  }

  .native-home-hero__art-item--right {
    top: 299px;
    left: calc(50% - 42px);
  }

}
@media screen and (max-width: 383px) and (min-width: 1200px) {

  .native-home-header__brand img {
    width: min(148px, 50vw);
  }

  .native-home-header__cases {
    height: 44px;
    padding: 0 11px;
    font-size: 12px;
  }

  .native-home-header__menu-button {
    width: 44px;
    height: 44px;
  }

  .native-home-hero {
    display: flex;
    height: max(125svh, 560px);
    min-height: 560px;
    flex-direction: column;
    padding-top: 124px;
    padding-bottom: calc(var(--nevsky-dock-height, 104px) + 16px);
  }

  .native-home-hero__copy {
    position: static;
    width: calc(100% - 40px);
    margin: 0 auto;
    transform: none;
  }

  .native-home-hero__copy h1,
  .native-home-hero__copy h2 {
    font-size: clamp(28px, 10.5vw, 33px);
  }

  .native-home-hero__lead {
    margin-top: 14px;
    font-size: 15px;
    line-height: 1.4;
  }

  .native-home-hero__desktop-art {
    display: none;
  }

  .native-home-hero__mobile-art {
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    margin-top: -26px;
    pointer-events: none;
  }

  .native-home-hero__mobile-art img {
    width: 100%;
    height: auto;
    max-height: calc(
      125svh - 250px - var(--nevsky-dock-height, 104px)
    );
    object-fit: contain;
  }

}
@media screen and (min-width: 384px) and (max-height: 384px) and (min-width: 1200px) {

  .native-home-hero {
    height: 125svh;
    min-height: 125svh;
  }

  .native-home-hero__copy {
    top: 120px;
  }

  .native-home-hero__copy h1,
  .native-home-hero__copy h2 {
    font-size: clamp(24px, 4.5vw, 34px);
  }

  .native-home-hero__lead {
    margin-top: 10px;
    font-size: clamp(13px, 1.875vw, 15px);
  }

}
@media (prefers-reduced-motion: reduce) and (min-width: 1200px) {

  .native-home-header__nav,
  .native-home-hero__art-item {
    scroll-behavior: auto;
    transition: none;
  }

}
@media screen and (min-width: 1152px) and (min-width: 1200px) {

  .native-home-steps__surface {
    position: absolute;
    top: calc(40px - var(--native-steps-content-lift));
    left: 50%;
    display: block;
    width: 1920px;
    height: 1368px;
    background: url("/legacy/images/tild3535-3066-4430-a330-666431626136__2__.png") center / 100% 100% no-repeat;
    transform: translateX(-50%);
  }

  .native-home-steps__surface[data-steps-position="fixed"] {
    position: fixed;
    transform: translateX(-50%) translateZ(0);
  }

  .native-home-steps__surface[data-steps-position="after"] {
    transform: translateX(-50%) translate3d(0, 877px, 0);
  }

}
@media screen and (min-width: 960px) and (min-width: 1200px) {

  .native-home-steps__card h3 {
    line-height: 25px;
  }

  .native-home-steps__accent {
    line-height: 34px;
  }

  .native-home-steps__item--1 .native-home-steps__accent {
    top: -6px;
  }

  .native-home-steps__item--2 .native-home-steps__accent {
    top: -6px;
  }

  .native-home-steps__item--3 .native-home-steps__accent {
    top: 0;
  }

  .native-home-steps__item--4 .native-home-steps__accent {
    top: 4px;
  }

  .native-home-steps__item--3 .native-home-steps__body {
    right: auto;
    width: 250px;
  }

  .native-home-steps__art {
    position: absolute;
    display: block;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    opacity: 0;
    visibility: hidden;
    will-change: transform;
  }

  .native-home-steps__art[data-steps-active="true"] {
    opacity: 1;
    visibility: visible;
  }

  .native-home-steps__art[data-steps-position="fixed"] {
    position: fixed;
    transform: translateZ(0);
  }

  .native-home-steps__art[data-steps-position="after"] {
    transform: translate3d(0, var(--native-steps-art-release), 0);
  }

  .native-home-steps__art--strategy {
    top: calc(186px - var(--native-steps-content-lift));
    left: calc(50% - 250px);
    width: 335px;
    height: 272px;
    --native-steps-art-release: 300px;
    background-image: url("/legacy/images/tild3535-3161-4961-b565-643365353437__1_.webp");
  }

  .native-home-steps__art--designer {
    top: calc(248px - var(--native-steps-content-lift));
    left: calc(50% + 85px);
    width: 335px;
    height: 208px;
    --native-steps-art-release: 600px;
    background-image: url("/legacy/images/tild3566-3561-4838-b634-323431633136__2_.webp");
  }

  .native-home-steps__art--advertising {
    top: calc(249px - var(--native-steps-content-lift));
    left: calc(50% + 149px);
    width: 531px;
    height: 296px;
    --native-steps-art-release: 900px;
    background-image: url("/legacy/images/tild3131-3035-4639-a661-396462393233___.webp");
  }

  .native-home-steps__art--growth {
    top: calc(202px - var(--native-steps-content-lift));
    left: calc(50% + 162px);
    width: 531px;
    height: 359px;
    --native-steps-art-release: 900px;
    background-image: url("/legacy/images/tild6531-3266-4334-b033-346535666239__4_.webp");
  }

  .native-home-steps__weeks[data-steps-position="fixed"] {
    position: fixed;
    transform: translateX(-50%) translateZ(0);
  }

  .native-home-steps__weeks[data-steps-position="after"] {
    transform: translateX(-50%) translate3d(0, 877px, 0);
  }

  .native-home-steps__item,
  .native-home-steps__art,
  .native-home-steps__weeks,
  .native-home-steps__surface {
    will-change: transform;
  }

  .native-home-steps__item[data-steps-position="fixed"] {
    position: fixed;
    top: var(--native-steps-fixed-top);
    left: calc(
      50% + var(--native-steps-grid-offset) + var(--native-steps-item-left)
    );
    transform: translateZ(0);
  }

  .native-home-steps__item[data-steps-position="after"] {
    transform: translate3d(0, var(--native-steps-release-shift), 0);
  }

}
@media screen and (min-width: 960px) and (max-width: 1151px) and (min-width: 1200px) {

  .native-home-steps {
    --native-steps-grid: 1200px;
    --native-steps-grid-offset: -600px;
  }

  .native-home-steps__weeks {
    padding-inline: 20px;
  }

  .native-home-steps__item--1 {
    --native-steps-item-left: 20px;
    left: 20px;
  }

  .native-home-steps__item--2 {
    --native-steps-item-left: 175px;
    left: 175px;
  }

  .native-home-steps__item--3 {
    --native-steps-item-left: 408px;
    left: 408px;
  }

  .native-home-steps__item--4 {
    left: 692px;
  }

  .native-home-steps__art--strategy {
    top: calc(146px - var(--native-steps-content-lift));
    left: calc(50% - 215px);
  }

  .native-home-steps__art--designer {
    top: calc(210px - var(--native-steps-content-lift));
    left: calc(50% + 6px);
  }

  .native-home-steps__art--advertising {
    left: calc(50% - 11px);
  }

  .native-home-steps__art--growth {
    left: calc(50% + 2px);
  }

}
@media screen and (min-width: 768px) and (min-width: 1200px) {

  .native-home-steps {
    --native-steps-content-lift: 20px;
    --native-steps-stage-pull: 150px;
  }

}
@media screen and (min-width: 768px) and (max-height: 656px) and (min-width: 1200px) {

  .native-home-steps__heading h2 {
    font-size: clamp(42px, 5.625vw, 62px);
  }

}
@media screen and (max-width: 959px) and (min-width: 1200px) {

  .native-home-steps__weeks,
  .native-home-steps__art,
  .native-home-steps__surface {
    display: none;
  }

}
@media screen and (min-width: 768px) and (max-width: 959px) and (min-width: 1200px) {

  .native-home-steps {
    --native-steps-grid: 960px;
    --native-steps-grid-offset: -480px;
  }

  .native-home-steps__item--1 {
    left: 20px;
  }

  .native-home-steps__item--2 {
    left: 124px;
  }

  .native-home-steps__item--3 {
    left: 281px;
  }

  .native-home-steps__item--4 {
    left: 472px;
  }

}
@media screen and (min-width: 512px) and (max-width: 767px) and (min-width: 1200px) {

  .native-home-steps {
    --native-steps-grid: 640px;
    --native-steps-grid-offset: -320px;
  }

  .native-home-steps__item {
    left: 20px;
  }

}
@media screen and (min-width: 384px) and (max-width: 511px) and (min-width: 1200px) {

  .native-home-steps {
    --native-steps-grid: 480px;
    --native-steps-grid-offset: -240px;
  }

  .native-home-steps {
    --native-steps-stage-pull: 170px;
  }

  .native-home-steps__stage {
    height: 1640px;
  }

  .native-home-steps__item {
    left: 20px;
    width: 440px;
  }

  .native-home-steps__item--1 {
    top: 279px;
  }

  .native-home-steps__item--2 {
    top: 721px;
  }

  .native-home-steps__item--3 {
    top: 1054px;
  }

  .native-home-steps__item--4 {
    top: 1366px;
  }

  .native-home-steps__number {
    font-size: 18px;
    line-height: 23.4px;
  }

  .native-home-steps__item--1 .native-home-steps__number {
    right: 20px;
    font-size: 16px;
    line-height: 20.8px;
  }

  .native-home-steps__card h3 {
    top: 55px;
    max-width: 330px;
    font-size: 18px;
    line-height: 0.9;
  }

  .native-home-steps__item--1 .native-home-steps__card h3 {
    top: 53px;
  }

  .native-home-steps__item--2 .native-home-steps__card h3 {
    top: 55px;
  }

  .native-home-steps__item--4 .native-home-steps__card h3 {
    max-width: 210px;
    font-size: 17px;
    line-height: 1.05;
  }

  .native-home-steps__accent {
    font-size: 28px;
    line-height: 0.9;
  }

  .native-home-steps__item--4 .native-home-steps__accent {
    font-size: 24px;
    line-height: 0.7;
  }

  .native-home-steps__body {
    font-size: 12px;
    line-height: 18px;
  }

  .native-home-steps__item--1 .native-home-steps__body {
    top: 122px;
    bottom: auto;
  }

  .native-home-steps__item--2 .native-home-steps__body {
    top: 164px;
    bottom: auto;
  }

  .native-home-steps__item--3 .native-home-steps__body {
    top: 182px;
    bottom: auto;
  }

  .native-home-steps__item--4 .native-home-steps__body {
    top: 164px;
    bottom: auto;
  }

  .native-home-steps__mobile-break {
    display: inline;
  }

}
@media screen and (max-width: 511px) and (min-width: 1200px) {

  .native-home-steps__heading {
    padding: var(--home-space-section) 20px
      var(--native-steps-heading-bottom-space);
  }

  .native-home-steps__stage::before {
    content: none;
  }

  .native-home-steps__eyebrow {
    margin-bottom: var(--home-space-eyebrow);
    font-size: 12px;
    line-height: 1.3;
  }

  .native-home-steps__heading h2 {
    font-size: clamp(28px, 10.5vw, 33px);
    line-height: 1.03;
  }

}
@media screen and (max-width: 383px) and (min-width: 1200px) {

  .native-home-steps {
    --native-steps-grid: 125vw;
    --native-steps-grid-offset: -62.5vw;
  }

  .native-home-steps {
    --native-steps-stage-pull: min(170px, 54.2969vw);
  }

  .native-home-steps__stage {
    height: calc(max(1218px, 452.5vw) - max(0px, 170px - 54.2969vw));
  }

  .native-home-steps__item {
    left: 7.8125vw;
    width: 109.375vw;
    height: 94.5313vw;
  }

  .native-home-steps__item--1 {
    top: 54.2969vw;
  }

  .native-home-steps__item--2 {
    top: 156.6406vw;
  }

  .native-home-steps__item--3 {
    top: 258.9844vw;
  }

  .native-home-steps__item--4 {
    top: 361.3281vw;
  }

  .native-home-steps__card {
    padding: 7.8125vw 7.8125vw 11.7188vw;
    border-radius: 3.9063vw;
  }

  .native-home-steps__number {
    top: 7.8125vw;
    right: 7.8125vw;
    font-size: 7.0313vw;
    line-height: 9.1406vw;
  }

  .native-home-steps__item--1 .native-home-steps__number {
    right: 7.8125vw;
    font-size: 6.25vw;
    line-height: 8.125vw;
  }

  .native-home-steps__card h3 {
    top: 21.4844vw;
    left: 7.8125vw;
    max-width: 82.0313vw;
    font-size: 7.0313vw;
    line-height: 0.9;
  }

  .native-home-steps__item--1 .native-home-steps__card h3 {
    top: 20.7031vw;
  }

  .native-home-steps__item--2 .native-home-steps__card h3 {
    top: 21.4844vw;
  }

  .native-home-steps__item--4 .native-home-steps__card h3 {
    max-width: 82.0313vw;
    font-size: 6.6406vw;
    line-height: 1.05;
  }

  .native-home-steps__accent {
    font-size: 10.9375vw;
    line-height: 0.9;
  }

  .native-home-steps__item--4 .native-home-steps__accent {
    font-size: 9.375vw;
    line-height: 0.7;
  }

  .native-home-steps__body {
    right: 7.8125vw;
    left: 7.8125vw;
    font-size: 4.6875vw;
    line-height: 6.8906vw;
  }

  .native-home-steps__item--1 .native-home-steps__body {
    top: 47.6563vw;
    bottom: auto;
  }

  .native-home-steps__item--2 .native-home-steps__body {
    top: 64.0625vw;
    bottom: auto;
  }

  .native-home-steps__item--3 .native-home-steps__body {
    top: 71.0938vw;
    bottom: auto;
  }

  .native-home-steps__item--4 .native-home-steps__body {
    top: 64.0625vw;
    bottom: auto;
  }

  .native-home-steps__mobile-break {
    display: inline;
  }

}
@media (prefers-reduced-motion: reduce) and (min-width: 1200px) {

  .native-home-steps__item,
  .native-home-steps__art {
    transition: none !important;
    transform: none !important;
  }

}
@media screen and (min-width: 960px) and (max-width: 1151px) and (min-width: 1200px) {

  .native-home-comparison {
    --comparison-gap-fix: -5px;
  }

  .native-home-comparison__heading p {
    width: 618px;
  }

  .native-home-comparison__column--staff {
    left: calc(50% - 600px + 20px);
    width: 540px;
  }

  .native-home-comparison__column--agency {
    left: calc(50% - 600px + 675px);
    width: 505px;
  }

  .native-home-comparison__column--agency .native-home-comparison__copy li {
    grid-template-columns: 34px minmax(0, 1fr);
  }

  .native-home-comparison__art--staff {
    top: 504px;
    left: -48px;
    width: 580px;
    height: 372px;
  }

  .native-home-comparison__staff-person {
    left: 38px;
    width: 505px;
  }

  .native-home-comparison__staff-leaves--left {
    width: 227px;
  }

  .native-home-comparison__staff-leaves--right {
    top: 201px;
    left: 421px;
    width: 187px;
  }

  .native-home-comparison__art--agency {
    top: 411px;
    left: -51px;
    width: 576px;
  }

  .native-home-comparison__divider {
    left: calc(50% + 10px);
  }

}
@media screen and (min-width: 768px) and (max-width: 959px) and (min-width: 1200px) {

  .native-home-comparison {
    --comparison-anchor: 53px;
    --comparison-canvas: 1146px;
    --comparison-gap-fix: 13px;
    min-height: calc(1146px + var(--comparison-shift));
  }

  .native-home-comparison__heading p {
    width: 435px;
    margin-top: 24px;
    font-size: 18px;
  }

  .native-home-comparison__column {
    top: 269px;
    width: 392px;
  }

  .native-home-comparison__column--staff {
    left: calc(50% - 480px + 20px);
  }

  .native-home-comparison__column--agency {
    top: 274px;
    left: calc(50% - 480px + 533px);
  }

  .native-home-comparison__copy h3 {
    font-size: 24px;
  }

  .native-home-comparison__copy ul,
  .native-home-comparison__column--agency .native-home-comparison__copy ul {
    margin-top: 17px;
  }

  .native-home-comparison__copy li {
    line-height: 1.85;
  }

  .native-home-comparison__separator {
    margin-top: 17px;
  }

  .native-home-comparison__price {
    gap: 6px;
    margin-top: 14px;
  }

  .native-home-comparison__price strong,
  .native-home-comparison__price span {
    font-size: 24px;
    letter-spacing: 0;
  }

  .native-home-comparison__art--staff {
    top: 567px;
    left: -20px;
    width: 407px;
    height: 274px;
  }

  .native-home-comparison__staff-person {
    left: 36px;
    width: 371px;
  }

  .native-home-comparison__staff-leaves--left {
    width: 191px;
  }

  .native-home-comparison__staff-leaves--right {
    top: 94px;
    left: 283px;
    width: 140px;
  }

  .native-home-comparison__art--agency {
    top: 488px;
    left: -53px;
    width: 486px;
  }

  .native-home-comparison__divider {
    top: 269px;
    left: calc(50% - 42px);
    width: 10px;
    height: 754px;
  }

}
@media screen and (min-width: 512px) and (max-width: 767px) and (min-width: 1200px) {

  .native-home-comparison {
    --comparison-anchor: 53px;
    --comparison-canvas: 1023px;
    --comparison-gap-fix: -13px;
    min-height: calc(1023px + var(--comparison-shift));
  }

  .native-home-comparison__heading h2 {
    font-size: 34px;
  }

  .native-home-comparison__heading p {
    width: 428px;
    margin-top: 22px;
    font-size: 18px;
  }

  .native-home-comparison__column {
    top: 254px;
    width: 296px;
  }

  .native-home-comparison__column--staff {
    left: calc(50% - 320px + 18px);
  }

  .native-home-comparison__column--agency {
    top: 256px;
    left: calc(50% - 320px + 362px);
    width: 258px;
  }

  .native-home-comparison__copy h3 {
    font-size: 14px;
  }

  .native-home-comparison__copy ul,
  .native-home-comparison__column--agency .native-home-comparison__copy ul {
    gap: 14px;
    margin-top: 20px;
  }

  .native-home-comparison__copy li,
  .native-home-comparison__column--agency .native-home-comparison__copy li {
    grid-template-columns: 20px minmax(0, 1fr);
    gap: 14px;
    font-size: 14px;
    line-height: 1.85;
  }

  .native-home-comparison__column--agency .native-home-comparison__copy li img,
  .native-home-comparison__column--agency
    .native-home-comparison__copy
    li:first-child
    img {
    width: 20px;
    max-height: 24px;
    margin-top: 0;
  }

  .native-home-comparison__separator {
    height: 6px;
    margin-top: 14px;
  }

  .native-home-comparison__price {
    gap: 6px;
    margin-top: 9px;
  }

  .native-home-comparison__price strong,
  .native-home-comparison__price span {
    font-size: 18px;
    letter-spacing: 0;
  }

  .native-home-comparison__art--staff {
    top: 470px;
    left: -8px;
    width: 318px;
    height: 218px;
  }

  .native-home-comparison__staff-person {
    left: 0;
    width: 296px;
  }

  .native-home-comparison__staff-leaves--left {
    width: 107px;
  }

  .native-home-comparison__staff-leaves--right {
    top: 149px;
    left: 229px;
    width: 79px;
    transform: rotate(-135deg);
  }

  .native-home-comparison__art--agency {
    top: 454px;
    left: -32px;
    width: 310px;
  }

  .native-home-comparison__divider {
    top: 269px;
    left: calc(50% + 5px);
    width: 10px;
    height: 754px;
  }

}
@media screen and (max-width: 511px) and (min-width: 1200px) {

  .native-home-comparison {
    min-height: 0;
    margin-top: 0;
  }

  .native-home-comparison {
    --comparison-gap-fix: 0px;
    --comparison-shift: 0px;
  }

  .native-home-comparison__heading {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    padding: calc(var(--home-space-section) + var(--comparison-heading-nudge))
      18px 0;
    transform: none;
  }

  .native-home-comparison__heading h2 {
    font-size: 24px;
    line-height: 1.15;
    letter-spacing: -0.025em;
  }

  .native-home-comparison__heading p {
    width: min(100%, 340px);
    margin: 9px auto 0;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.3;
  }

  .native-home-comparison__columns {
    position: relative;
    inset: auto;
    height: auto;
    display: flex;
    height: auto;
    flex-direction: column;
    padding: var(--home-space-heading) 20px 0;
  }

  .native-home-comparison__column {
    position: relative;
    top: auto;
    left: auto;
    display: flex;
    width: 100%;
    min-width: 0;
    flex-direction: column;
  }

  .native-home-comparison__column--agency {
    margin-top: 30px;
  }

  .native-home-comparison__copy h3 {
    font-size: 16px;
    line-height: 1.2;
    text-align: center;
  }

  .native-home-comparison__copy ul,
  .native-home-comparison__column--agency .native-home-comparison__copy ul {
    gap: 14px;
    margin-top: 14px;
  }

  .native-home-comparison__copy li,
  .native-home-comparison__column--agency .native-home-comparison__copy li {
    grid-template-columns: 20px minmax(0, 1fr);
    gap: 10px;
    font-size: 12px;
    line-height: 1.3;
  }

  .native-home-comparison__copy li img,
  .native-home-comparison__column--agency .native-home-comparison__copy li img,
  .native-home-comparison__column--agency
    .native-home-comparison__copy
    li:first-child
    img {
    width: 18px;
    max-height: 22px;
    margin-top: 0;
  }

  .native-home-comparison__separator,
  .native-home-comparison__column--staff .native-home-comparison__separator {
    width: 100%;
    height: 5px;
    margin-top: 16px;
  }

  .native-home-comparison__price,
  .native-home-comparison__column--agency .native-home-comparison__price {
    gap: 6px;
    margin: 14px 0 0;
  }

  .native-home-comparison__column--agency .native-home-comparison__price {
    margin-left: 12px;
  }

  .native-home-comparison__price strong {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: 0;
    line-height: 1;
  }

  .native-home-comparison__price span {
    font-size: 13px;
    font-weight: 600;
    line-height: 1;
  }

  .native-home-comparison__art {
    position: relative;
    z-index: 0;
  }

  .native-home-comparison__art--staff {
    top: auto;
    left: auto;
    width: 296px;
    height: 218px;
    margin: 49px auto 0;
    transform: none;
  }

  .native-home-comparison__staff-person {
    left: 0;
    width: 296px;
  }

  .native-home-comparison__staff-leaves--left {
    top: -25px;
    left: 26px;
    width: 126px;
  }

  .native-home-comparison__staff-leaves--right {
    top: 51px;
    left: -53px;
    width: 92px;
    transform: rotate(-14deg);
  }

  .native-home-comparison__art--agency {
    top: auto;
    left: auto;
    width: 125vw;
    max-width: 480px;
    /* Сверху у рисунка своё поле — свечение вокруг стола. Отступ держим
     * небольшим, иначе между ценой и картинкой зияет пустота. */
    margin: 4px 0 20px 50%;
    transform: translateX(-50%);
  }

  .native-home-comparison__divider {
    display: none;
  }

}
@media screen and (max-width: 383px) and (min-width: 1200px) {

  .native-home-comparison__heading {
    padding-top: var(--home-space-section);
  }

  .native-home-comparison__columns {
    padding-top: var(--home-space-heading);
  }

  .native-home-comparison__art--staff {
    width: min(88.375vw, 276px);
    height: auto;
    aspect-ratio: 1680 / 1239;
  }

  .native-home-comparison__staff-person {
    width: 100%;
  }

  .native-home-comparison__staff-leaves--left {
    width: 44%;
  }

  .native-home-comparison__staff-leaves--right {
    left: -12%;
    width: 31%;
  }

  .native-home-comparison__art--agency {
    width: 125vw;
  }

}
@media (prefers-reduced-motion: reduce) and (min-width: 1200px) {

  .native-home-comparison *,
  .native-home-comparison *::before,
  .native-home-comparison *::after {
    animation: none !important;
    scroll-behavior: auto !important;
    transition: none !important;
  }

}
@media screen and (max-width: 511px) and (min-width: 1200px) {

  .native-home-pricing {
    padding: var(--home-space-section) 20px var(--home-space-section);
  }

  .native-home-pricing__title {
    font-size: 24px;
    line-height: 0.95;
  }

  .native-home-pricing__grid {
    width: min(100%, 280px);
    gap: 21px;
    margin-top: var(--home-space-heading);
  }

  .native-home-pricing__card {
    min-height: 0;
  }

  .native-home-pricing__card--featured {
    min-height: 592px;
  }

  .native-home-pricing__card--light {
    min-height: 687px;
  }

  .native-home-pricing__card-header {
    min-height: 168px;
    padding: 20px 25px 18px;
  }

  /* У светлой карточки шапка тоже отделена плашкой — как у тёмной. Без неё
   * место между ценой и тегами читалось как случайная пустота. */
  .native-home-pricing__card--light .native-home-pricing__card-header {
    background: #f2f2f2;
  }

  .native-home-pricing__price-line {
    align-items: flex-start;
  }

  .native-home-pricing__price {
    font-size: 26px;
    line-height: 0.9;
  }

  .native-home-pricing__period {
    align-self: baseline;
    margin-left: 5px;
    font-size: 15px;
  }

  .native-home-pricing__popular {
    flex-basis: 95px;
    margin-top: 9px;
    margin-right: calc(100% - 95px);
    margin-left: 0;
  }

  .native-home-pricing__description {
    margin-top: 13px;
    font-size: 12px;
    line-height: 1.2;
  }

  .native-home-pricing__content {
    padding: 25px 20px 0;
  }

  .native-home-pricing__details {
    margin-top: 13px;
  }

  .native-home-pricing__feature-list {
    padding-left: 17px;
    font-size: 12px;
    line-height: 1.7;
  }

  .native-home-pricing__extra {
    margin-top: 12px;
    padding-top: 12px;
  }

  .native-home-pricing__extra p {
    padding-left: 17px;
    font-size: 12px;
    line-height: 1.55;
  }

  .native-home-pricing__extra p::before {
    width: 17px;
    margin-left: -17px;
  }

  .native-home-pricing__cta {
    width: 240px;
    min-height: 40px;
    flex-basis: 40px;
    margin: 20px auto;
    font-size: 14px;
    font-weight: 650;
  }

  .native-home-pricing__card--light {
    width: calc(100% - 2px);
    justify-self: center;
  }

  .native-home-pricing__card--light .native-home-pricing__cta {
    margin-bottom: 30px;
  }

}
@media screen and (min-width: 512px) and (max-width: 959px) and (min-width: 1200px) {

  .native-home-pricing {
    min-height: 0;
    padding: var(--home-space-section) 20px var(--home-space-section);
  }

  .native-home-pricing__grid {
    width: min(100%, 700px);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    margin-top: var(--home-space-heading);
  }

  .native-home-pricing__card {
    min-height: 0;
  }

  .native-home-pricing__card--featured {
    min-height: 0;
  }

  .native-home-pricing__card--light {
    width: 100%;
    min-height: 0;
    justify-self: center;
  }

  .native-home-pricing__card-header {
    min-height: 0;
    padding: 20px 25px 18px;
  }

  .native-home-pricing__card--light .native-home-pricing__card-header {
    background: #f2f2f2;
  }

  .native-home-pricing__price-line {
    align-items: flex-start;
  }

  .native-home-pricing__price {
    font-size: 30px;
    line-height: 0.9;
  }

  .native-home-pricing__period {
    align-self: flex-end;
    padding-bottom: 2px;
    margin-left: 5px;
    font-size: 16px;
    font-weight: 500;
  }

  .native-home-pricing__popular {
    flex-basis: 95px;
    margin-top: 9px;
    margin-right: calc(100% - 95px);
    margin-left: 0;
  }

  .native-home-pricing__description {
    margin-top: 13px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.45;
  }

  .native-home-pricing__content {
    padding: 25px 20px 0;
  }

  .native-home-pricing__details {
    margin-top: 13px;
  }

  .native-home-pricing__feature-list {
    padding-left: 17px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.6;
  }

  .native-home-pricing__extra {
    margin-top: 12px;
    padding-top: 12px;
  }

  .native-home-pricing__extra p {
    padding-left: 17px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
  }

  .native-home-pricing__extra p::before {
    width: 17px;
    margin-left: -17px;
  }

  .native-home-pricing__cta {
    width: 240px;
    min-height: 40px;
    flex-basis: 40px;
    margin: 20px auto;
    font-size: 14px;
    font-weight: 650;
  }

  .native-home-pricing__card--light .native-home-pricing__cta {
    margin-bottom: 30px;
  }

}
@media screen and (min-width: 768px) and (max-width: 959px) and (min-width: 1200px) {

  .native-home-pricing {
    padding-bottom: var(--home-space-section);
  }

  .native-home-pricing__title {
    font-size: 62px;
    line-height: 0.9;
    white-space: nowrap;
  }

  .native-home-pricing__grid {
    margin-top: var(--home-space-heading);
  }

  .native-home-pricing__cta {
    font-size: 16px;
  }

}
@media screen and (max-width: 287px) and (min-width: 1200px) {

  .native-home-pricing__price-line {
    column-gap: 0;
  }

  .native-home-pricing__card-header {
    padding-right: 24px;
    padding-left: 24px;
  }

}
@media screen and (max-width: 383px) and (min-width: 1200px) {

  .native-home-pricing {
    min-height: 0;
    padding: var(--home-space-section) 0;
  }

  /* Размеры текста — в пикселях, как на всей главной. Раньше они, как и
   * раскладка, считались долей экрана: на экране шире исходных 360 px всё
   * разъезжалось вверх, и блок читался крупнее и тяжелее остальной страницы. */
  .native-home-pricing__title {
    font-size: 30px;
    line-height: 1.12;
  }

  .native-home-pricing__grid {
    width: 109.375vw;
    gap: 3.9063vw;
    margin-top: var(--home-space-heading);
  }

  .native-home-pricing__card {
    border-radius: 3.9063vw;
  }

  /* Высота — по содержимому. Прежние доли экрана были подобраны под крупный
   * текст; когда он стал как на всей странице, снизу оставалась пустота. */
  .native-home-pricing__card--featured {
    min-height: 0;
  }

  .native-home-pricing__card--light {
    width: 108.5938vw;
    min-height: 0;
  }

  /* Шапка тоже по содержимому. У карточки без метки «популярный» строка
   * короче, и заданная высота оставляла под описанием пустое поле. */
  .native-home-pricing__card-header {
    min-height: 0;
    padding: 7.8125vw 9.7656vw 7.0313vw;
    border-radius: 3.5156vw 3.5156vw 0 0;
  }

  .native-home-pricing__price {
    font-size: 30px;
  }

  /* Приписка идёт следом за ценой, по её нижней линии. С выравниванием по
   * базовой линии она уезжала к верху крупных цифр. */
  .native-home-pricing__period {
    align-self: flex-end;
    margin-left: 1.9531vw;
    padding-bottom: 2px;
    font-size: 16px;
    font-weight: 500;
  }

  .native-home-pricing__popular {
    min-width: 37.1094vw;
    min-height: 7.8125vw;
    flex-basis: 37.1094vw;
    gap: 1.5625vw;
    margin-top: 3.5156vw;
    margin-right: calc(100% - 37.1094vw);
    padding: 1.5625vw 2.3438vw;
    font-size: 12px;
  }

  .native-home-pricing__flame {
    width: 3.5156vw;
    height: 4.6875vw;
    flex-basis: 3.5156vw;
  }

  .native-home-pricing__description {
    margin-top: 5.0781vw;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.45;
  }

  .native-home-pricing__content {
    padding: 9.7656vw 7.8125vw 0;
  }

  .native-home-pricing__tags {
    gap: 2.3438vw;
  }

  .native-home-pricing__tags li {
    min-height: 8.5938vw;
    padding: 1.9531vw 2.7344vw 1.5625vw;
    font-size: 12px;
  }

  .native-home-pricing__details {
    margin-top: 5.0781vw;
  }

  .native-home-pricing__feature-list {
    padding-left: 6.6406vw;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.6;
  }

  .native-home-pricing__extra {
    margin-top: 4.6875vw;
    padding-top: 4.6875vw;
  }

  .native-home-pricing__extra p {
    padding-left: 6.6406vw;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
  }

  .native-home-pricing__extra p::before {
    width: 6.6406vw;
    margin-left: -6.6406vw;
  }

  .native-home-pricing__cta {
    width: 93.75vw;
    min-height: 15.625vw;
    flex-basis: 15.625vw;
    margin: 7.8125vw auto;
    padding: 0 7.0313vw;
    border-radius: 1.9531vw;
    font-size: 16px;
    font-weight: 600;
  }

  .native-home-pricing__card--light .native-home-pricing__cta {
    margin-bottom: 11.7188vw;
  }

}
@media screen and (min-width: 960px) and (min-width: 1200px) {

  .native-home-pricing {
    min-height: 940px;
    padding: var(--home-space-section) 0;
    overflow: hidden;
  }

  .native-home-pricing__inner {
    width: 797px;
  }

  .native-home-pricing__title {
    font-size: 62px;
    line-height: 0.9;
    white-space: nowrap;
  }

  .native-home-pricing__grid {
    width: 797px;
    grid-template-columns: 388px 386px;
    grid-auto-rows: minmax(687px, auto);
    gap: 23px;
    margin-top: var(--home-space-heading);
  }

  .native-home-pricing__card {
    height: 100%;
  }

  .native-home-pricing__decor {
    position: absolute;
    z-index: 1;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    margin: 0;
    pointer-events: none;
  }

  .native-home-pricing__decor-item {
    position: absolute;
    display: block;
    max-width: none;
    height: auto;
    margin: 0;
    pointer-events: none;
    user-select: none;
  }

  .native-home-pricing__decor-item--left-city {
    top: 197px;
    left: calc(50% - 1001px);
    width: 607px;
  }

  .native-home-pricing__decor-item--right-city {
    top: 165px;
    left: calc(50% + 390px);
    width: 680px;
  }

  .native-home-pricing__decor-item--left-team {
    top: 568px;
    left: calc(50% - 729px);
    width: 335px;
  }

  .native-home-pricing__decor-item--right-portrait {
    top: 758px;
    left: calc(50% + 390px);
    width: 224px;
  }

}
@media screen and (min-width: 960px) and (max-width: 1151px) and (min-width: 1200px) {

  .native-home-pricing__grid {
    width: 784px;
    gap: 10px;
    transform: translateX(-2px);
  }

}
@media screen and (min-width: 1152px) and (min-width: 1200px) {

  .native-home-pricing__decor-item--left-city {
    top: 149px;
    left: calc(50% - 1037px);
    width: 640px;
  }

  .native-home-pricing__decor-item--right-city {
    top: 133px;
    left: calc(50% + 400px);
    width: 683px;
  }

  .native-home-pricing__decor-item--left-team {
    top: 549px;
    left: calc(50% - 732px);
    width: 335px;
  }

  .native-home-pricing__decor-item--right-portrait {
    top: 752px;
    left: calc(50% + 400px);
    width: 224px;
  }

}
@media (prefers-reduced-motion: reduce) and (min-width: 1200px) {

  .native-home-pricing__cta {
    transition: none;
  }

}
@media screen and (max-width: 959px) and (min-width: 1200px) {

  .native-home-stories {
    --stories-art-slack: 17.0625vw;
  }

  .native-home-stories__transition {
    height: 61.849vw;
  }

  .native-home-stories__transition-art--left {
    top: 20.1822vw;
    left: -4.1666vw;
    width: 63.0209vw;
    height: 24.6094vw;
  }

  .native-home-stories__transition-art--right {
    top: 11.7188vw;
    right: 0;
    left: auto;
    width: 66.1459vw;
    height: 32.1615vw;
  }

  .native-home-stories__heading {
    min-height: 142px;
  }

  .native-home-stories__heading h2 {
    width: min(100%, 920px);
  }

}
@media screen and (max-width: 840px) and (min-width: 1200px) {

  .native-home-stories__case-inner {
    min-height: auto;
    grid-template-areas:
      "copy"
      "media"
      "meta";
    grid-template-columns: minmax(0, 1fr);
  }

  .native-home-stories__media {
    width: 100%;
    max-width: 760px;
    min-height: 0;
    aspect-ratio: 16 / 10;
    margin-inline: auto;
  }

  .native-home-stories__media img {
    min-height: 0;
  }

}
@media screen and (max-width: 767px) and (min-width: 1200px) {

  .native-home-stories {
    --stories-art-slack: 32px;
  }

  .native-home-stories__transition {
    height: calc(42.7735vw + 32px);
  }

  .native-home-stories__transition-art--left {
    top: 18.75vw;
    left: 0;
    width: 62.1094vw;
    height: 24.0235vw;
  }

  .native-home-stories__transition-art--right {
    top: 11.1329vw;
    right: 0;
    left: auto;
    width: 62.8906vw;
    height: 30.4688vw;
  }

  .native-home-stories__heading {
    min-height: 128px;
    padding: max(0px, calc(var(--home-space-section) - var(--stories-art-slack)))
      20px var(--home-space-heading);
  }

  .native-home-stories__heading h2 {
    width: min(100%, 406px);
    font-size: 34px;
    line-height: 0.9;
  }

}
@media screen and (max-width: 511px) and (min-width: 1200px) {

  .native-home-stories {
    --stories-art-slack: 32px;
  }

  .native-home-stories__transition {
    height: calc(39.8438vw + 32px);
  }

  .native-home-stories__transition-art--left {
    top: 15.3646vw;
    left: 0;
    width: 62.2396vw;
    height: 24.4791vw;
  }

  .native-home-stories__transition-art--right {
    top: 9.8959vw;
    right: 0;
    left: auto;
    width: 62.2396vw;
    height: 29.9479vw;
  }

  .native-home-stories__heading {
    padding-top: max(
      0px,
      calc(var(--home-space-section) - var(--stories-art-slack))
    );
  }

  .native-home-stories__heading h2 {
    font-size: 24px;
    line-height: 1.18;
  }

  .native-home-stories__list {
    padding-top: 20px;
  }

  .native-home-stories__list::before,
  .native-home-stories__list::after {
    height: 40px;
  }

  .native-home-stories__case-inner {
    gap: 24px;
    padding: 34px 22px 42px;
  }

  .native-home-stories__copy h3 {
    font-size: 30px;
  }

  .native-home-stories__metrics {
    gap: 16px;
  }

  .native-home-stories__project-link,
  .native-home-stories__all {
    width: 100%;
    min-width: 0;
  }

  .native-home-stories__footer {
    width: min(100% - 28px, 1440px);
    padding-top: 20px;
    padding-bottom: 74px;
  }

  /* Рядом с кнопками проектов обычная кнопка читалась как ещё один проект.
   * Здесь она развёрнута в плашку на всю ширину: строка-приглашение,
   * пояснение под ней и стрелка вправо — видно, что ведёт ко всему списку. */
  .native-home-stories__all {
    display: grid;
    width: 100%;
    min-height: 96px;
    grid-template-columns: minmax(0, 1fr) 44px;
    align-items: center;
    justify-content: stretch;
    gap: 0 12px;
    padding: 20px 20px 20px 24px;
    border-radius: 14px;
    background: linear-gradient(135deg, #b93036 0%, #8f2228 100%);
    box-shadow: 0 18px 38px rgb(146 35 41 / 30%);
    text-align: left;
  }

  .native-home-stories__all-label {
    grid-column: 1;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.15;
  }

  .native-home-stories__all-note {
    display: block;
    grid-column: 1;
    margin-top: 6px;
    color: rgb(255 255 255 / 78%);
    font-size: 13px;
    font-weight: 500;
    line-height: 1.3;
  }

  /* Стрелка нарисована, а не набрана символом: у знака «→» своя высота строки,
   * и в кружке он вставал выше центра. */
  .native-home-stories__all::after {
    grid-row: 1 / span 2;
    grid-column: 2;
    display: block;
    width: 44px;
    height: 44px;
    border: 1.5px solid rgb(255 255 255 / 45%);
    border-radius: 999px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 12h15M13 6l6 6-6 6'/%3E%3C/svg%3E")
      no-repeat center / 20px 20px;
    content: "";
  }

  .native-home-stories__case:hover .native-home-stories__media img,
  .native-home-stories__project-link:hover,
  .native-home-stories__all:hover {
    transform: none;
  }

}
@media screen and (max-width: 383px) and (min-width: 1200px) {

  .native-home-stories__transition {
    height: calc(44.9219vw + 32px);
  }

  .native-home-stories__transition-art--left {
    top: 21.875vw;
    left: -0.3906vw;
    width: 58.9844vw;
    height: 23.0469vw;
  }

  .native-home-stories__transition-art--right {
    top: 13.2813vw;
    right: 0;
    left: auto;
    width: 63.6719vw;
    height: 30.4688vw;
  }

  .native-home-stories__heading {
    min-height: 108px;
    padding: max(0px, calc(var(--home-space-section) - var(--stories-art-slack)))
      20px var(--home-space-heading);
  }

  .native-home-stories__heading h2 {
    width: min(100%, 280px);
    font-size: 30px;
    font-weight: 600;
    line-height: 1.12;
  }

}
@media (prefers-reduced-motion: reduce) and (min-width: 1200px) {

  .native-home-stories__transition[data-stories-reach]
    .native-home-stories__transition-art {
    opacity: 1;
    transition: none;
    transform: none;
  }

  .native-home-stories__media img,
  .native-home-stories__project-link,
  .native-home-stories__all {
    transition: none;
  }

}
@media screen and (max-width: 1535px) and (min-width: 1200px) {

  .native-home-advantages__gallery {
    width: min(100%, 916px);
  }

  .native-home-advantages__document-panel {
    width: min(100%, 1200px);
  }

  .native-home-advantages__desktop-decor {
    width: 2052px;
    height: 627px;
  }

}
@media screen and (max-width: 1151px) and (min-width: 1200px) {

  .native-home-advantages__document-panel {
    width: min(100%, 1160px);
  }

  .native-home-advantages__desktop-decor {
    width: 1530px;
    height: 467px;
  }

}
@media screen and (max-width: 959px) and (min-width: 1200px) {

  .native-home-advantages {
    padding-top: var(--home-space-section);
  }

  .native-home-advantages__title {
    font-size: 34px;
    line-height: 1;
  }

  .native-home-advantages__gallery {
    width: min(100%, 616px);
    margin-top: var(--home-space-heading);
  }

  .native-home-advantages__document-panel {
    width: min(100%, 920px);
    min-height: 223px;
    grid-template-columns: minmax(0, 235px) minmax(0, 266px) minmax(0, 176px);
    gap: 28px;
    margin-top: 40px;
    padding: 29px 41px 25px;
  }

  .native-home-advantages__document-title {
    font-size: 34px;
  }

  .native-home-advantages__documents {
    gap: 14px;
    margin-top: 2px;
  }

  .native-home-advantages__document {
    min-height: 45px;
  }

  .native-home-advantages__document-open,
  .native-home-advantages__document-download {
    min-height: 43px;
  }

  .native-home-advantages__document-open {
    font-size: 14px;
  }

  .native-home-advantages__hint {
    width: 176px;
    height: 165px;
  }

  .native-home-advantages__hint-oval {
    top: -1px;
    width: 176px;
    height: 120px;
  }

  .native-home-advantages__hint-copy {
    top: 23px;
    right: 6px;
    width: 154px;
    font-size: 25px;
    line-height: 0.86;
  }

  .native-home-advantages__hint-arrow {
    right: 86px;
    bottom: 3px;
    width: 104px;
    height: 60px;
  }

  .native-home-advantages__desktop-decor {
    width: 1118px;
    height: 341px;
  }

}
@media screen and (max-width: 767px) and (min-width: 1200px) {

  .native-home-advantages {
    padding-top: var(--home-space-section);
  }

  .native-home-advantages__gallery {
    width: min(100%, 596px);
    margin-top: var(--home-space-heading);
  }

  .native-home-advantages__document-panel {
    width: min(100%, 600px);
    min-height: 235px;
    grid-template-areas:
      "title hint"
      "documents hint";
    grid-template-columns: minmax(0, 1fr) 150px;
    grid-template-rows: auto 1fr;
    gap: 14px 20px;
    margin-top: 46px;
    padding: 23px 30px 22px;
  }

  .native-home-advantages__document-title {
    grid-area: title;
  }

  .native-home-advantages__documents {
    width: min(100%, 248px);
    grid-area: documents;
    gap: 8px;
    margin: 0;
  }

  .native-home-advantages__hint {
    width: 150px;
    height: 175px;
    align-self: center;
    grid-area: hint;
  }

  .native-home-advantages__hint-oval {
    top: 3px;
    width: 150px;
    height: 102px;
  }

  .native-home-advantages__hint-copy {
    top: 25px;
    right: 6px;
    width: 132px;
    font-size: 23px;
  }

  .native-home-advantages__hint-arrow {
    right: 67px;
    bottom: 0;
    width: 104px;
    height: 60px;
  }

  .native-home-advantages__desktop-decor {
    display: none;
  }

}
@media screen and (max-width: 511px) and (min-width: 1200px) {

  .native-home-advantages {
    padding: var(--home-space-section) 20px var(--home-space-section);
    background: linear-gradient(
      180deg,
      #f5f5f5 0,
      #fafafa 7%,
      #fff 28%,
      #fff 100%
    );
  }

  .native-home-advantages__title {
    font-size: 24px;
    line-height: 1.12;
  }

  .native-home-advantages__gallery {
    width: min(100%, 342px);
    grid-template-columns: minmax(0, 1fr);
    gap: 10px;
    margin-top: var(--home-space-heading);
  }

  .native-home-advantages__card img {
    border-radius: 7px;
  }

  .native-home-advantages__document-panel {
    width: min(100%, 440px);
    min-height: 205px;
    grid-template-columns: minmax(0, 1fr) 124px;
    gap: 8px 16px;
    margin-top: 40px;
    padding: 23px 20px 20px;
  }

  .native-home-advantages__document-title {
    font-size: 20px;
    line-height: 1.3;
  }

  .native-home-advantages__documents {
    width: min(100%, 240px);
  }

  .native-home-advantages__document {
    min-height: 40px;
    grid-template-columns: minmax(0, 1fr) 56px;
  }

  .native-home-advantages__document-open,
  .native-home-advantages__document-download {
    min-height: 38px;
  }

  .native-home-advantages__document-open {
    padding-inline: 8px;
    font-size: 12px;
  }

  .native-home-advantages__document-download {
    padding-inline: 4px;
    font-size: 8px;
  }

  .native-home-advantages__hint {
    width: 124px;
    height: 152px;
  }

  .native-home-advantages__hint-oval {
    width: 124px;
    height: 86px;
  }

  .native-home-advantages__hint-copy {
    top: 22px;
    right: 4px;
    width: 110px;
    font-size: 18px;
    line-height: 0.92;
  }

  .native-home-advantages__hint-arrow {
    right: 58px;
    bottom: 3px;
    width: 71px;
    height: 41px;
  }

}
@media screen and (max-width: 383px) and (min-width: 1200px) {

  .native-home-advantages {
    padding-top: var(--home-space-section);
  }

  .native-home-advantages__title {
    width: min(100%, 342px);
    margin-inline: auto;
  }

  .native-home-advantages__gallery {
    margin-top: var(--home-space-heading);
  }

  .native-home-advantages__document-panel {
    width: min(100%, 342px);
    min-height: 0;
    /* Сначала кнопки, потом подсказка: стрелка показывает на то, что уже
     * лежит выше. В обратном порядке она указывала в пустоту. */
    grid-template-areas:
      "title"
      "documents"
      "hint";
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: auto;
    gap: 0;
    margin-top: 28px;
    padding: 34px 24px 24px;
  }

  .native-home-advantages__document-title {
    width: 100%;
    font-size: 26px;
    line-height: 1.22;
  }

  .native-home-advantages__documents {
    width: 100%;
    gap: 10px;
    margin-top: 20px;
  }

  .native-home-advantages__document {
    min-height: 49px;
    grid-template-columns: minmax(0, 1fr) 59px;
  }

  .native-home-advantages__document-open,
  .native-home-advantages__document-download {
    min-height: 47px;
  }

  .native-home-advantages__document-open {
    font-size: 15px;
  }

  .native-home-advantages__document-download {
    font-size: 9px;
  }

  .native-home-advantages__hint {
    width: 100%;
    height: 154px;
    margin: 6px 0 0;
    justify-self: stretch;
  }

  .native-home-advantages__hint-oval {
    top: auto;
    right: -1px;
    bottom: 0;
    width: 176px;
    height: 120px;
  }

  .native-home-advantages__hint-copy {
    top: auto;
    right: 6px;
    bottom: 34px;
    width: 154px;
    font-size: 23px;
  }

  /* Стрелка перевёрнута и довёрнута: остриё смотрит вверх, на кнопки. */
  .native-home-advantages__hint-arrow {
    display: none;
  }

  /* Хвост лежит на контуре облачка, остриё останавливается под кнопками. */
  .native-home-advantages__hint-arrow-mobile {
    position: absolute;
    top: 6px;
    left: 26px;
    display: block;
    width: 118px;
    height: 74px;
    overflow: visible;
  }

}
@media (prefers-reduced-motion: reduce) and (min-width: 1200px) {

  .native-home-advantages__document {
    transition: none;
  }

}
@media screen and (min-width: 384px) and (min-width: 1200px) {

  .native-home-final-offer__paper {
    top: -76px;
    width: 1066px;
  }

  .native-home-final-offer__inner {
    padding-bottom: 24px;
  }

  .native-home-final-offer__content {
    width: min(100%, 415px);
    padding-top: 132px;
  }

  .native-home-final-offer__title {
    width: min(calc(125vw - 20px), 600px);
    font-size: 30px;
    transform: translateX(calc((415px - 100%) / 2));
  }

  .native-home-final-offer__title-main,
  .native-home-final-offer__title-accent {
    display: block;
  }

  .native-home-final-offer__title-main {
    white-space: nowrap;
  }

  .native-home-final-offer__lead {
    width: min(100%, 415px);
    margin-top: 24px;
    font-size: 14px;
  }

  .native-home-final-offer__form {
    width: min(100%, 300px);
    margin-top: 24px;
  }

  .native-home-final-offer__form button {
    min-height: 40px;
    font-size: 12px;
  }

  .native-home-final-offer__callback {
    width: min(100%, 290px);
    font-size: 12px;
  }

  .native-home-final-offer__lamp {
    --final-lamp-top: 23px;
    width: 62px;
    height: 131px;
  }

}
@media screen and (min-width: 512px) and (min-width: 1200px) {

  .native-home-final-offer__inner {
    width: 640px;
    padding-inline: 20px;
  }

  .native-home-final-offer__content {
    width: 600px;
    padding-top: 143px;
  }

  .native-home-final-offer__title {
    font-size: 32px;
    transform: none;
  }

  .native-home-final-offer__lead {
    width: 415px;
    margin-top: 26px;
  }

  .native-home-final-offer__form {
    width: 415px;
    margin-top: 26px;
  }

  .native-home-final-offer__form button {
    min-height: 45px;
  }

  .native-home-final-offer__callback {
    width: 415px;
    font-size: 12px;
  }

  .native-home-final-offer__lamp {
    --final-lamp-top: 65px;
    width: 62px;
    height: 126px;
  }

}
@media screen and (min-width: 768px) and (min-width: 1200px) {

  .native-home-final-offer {
    min-height: 560px;
  }

  .native-home-final-offer__paper {
    top: -69px;
    width: 1076px;
  }

  .native-home-final-offer__inner {
    width: 960px;
    min-height: 560px;
    padding: 0;
  }

  .native-home-final-offer__character {
    position: absolute;
    z-index: 2;
    bottom: 0;
    left: -16px;
    display: block;
    width: 406px;
    height: 614px;
    overflow: hidden;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;
  }

  .native-home-final-offer[data-final-offer-art-ready="true"]
    .native-home-final-offer__character {
    background-image: url("/legacy/images/tild3133-3866-4032-b632-343861386266__f9443bfd-561a-439d-8.webp");
  }

  .native-home-final-offer__content {
    width: 415px;
    margin: 0 0 0 403px;
    padding-top: 103px;
    text-align: left;
  }

  .native-home-final-offer__title,
  .native-home-final-offer__lead,
  .native-home-final-offer__callback {
    text-align: left;
  }

  .native-home-final-offer__title {
    width: auto;
    font-size: 28px;
    transform: none;
  }

  .native-home-final-offer__title-main,
  .native-home-final-offer__title-accent {
    display: block;
  }

  .native-home-final-offer__title-main {
    white-space: normal;
  }

  .native-home-final-offer__title-accent {
    margin-top: 2px;
    font-size: 38px;
  }

  .native-home-final-offer__lead {
    width: 415px;
    margin-top: 14px;
    font-size: 20px;
    line-height: 1.3;
  }

  .native-home-final-offer__form {
    width: 415px;
    margin-top: 24px;
  }

  .native-home-final-offer__form button {
    width: 294px;
    min-height: 50px;
    font-size: 16px;
  }

  .native-home-final-offer__callback {
    width: 415px;
    margin-top: 4px;
    font-size: 12px;
    text-align: center;
  }

  .native-home-final-offer__lamp {
    --final-lamp-top: 43px;
    left: -104px;
    width: 78px;
    height: 159px;
    transform: none;
  }

}
@media screen and (min-width: 960px) and (min-width: 1200px) {

  .native-home-final-offer {
    min-height: 930px;
  }

  .native-home-final-offer__city {
    /* Пропорция самого рисунка: раньше высота была прибита к 784 px, и на
     * широких экранах стена растягивалась — окна уезжали вверх относительно
     * человека, а кладка «плыла». */
    top: 88px;
    display: block;
    width: 1754px;
    aspect-ratio: 1680 / 751;
    height: auto;
  }

  .native-home-final-offer[data-final-offer-art-ready="true"]
    .native-home-final-offer__city {
    background-image: url("/legacy/images/tild3562-6237-4134-a234-333164353933__-4.webp");
  }

  .native-home-final-offer__paper {
    top: 161px;
    width: 1190px;
  }

  .native-home-final-offer__inner {
    width: 1200px;
    min-height: 930px;
  }

  .native-home-final-offer__character {
    bottom: 4px;
    left: 36px;
    width: 451px;
    height: 682px;
  }

  .native-home-final-offer__content {
    width: 553px;
    margin-left: 453px;
    padding-top: 343px;
  }

  .native-home-final-offer__title {
    font-size: 38px;
  }

  .native-home-final-offer__title-main,
  .native-home-final-offer__title-accent {
    display: inline;
  }

  .native-home-final-offer__title-accent {
    /* Раньше акцент был отдельным элементом макета, и перенесённый отступ в
     * 82 px отрывал «в этом месяце?» вбок. В обычном потоке нужен обычный
     * пробел. */
    display: inline-block;
    margin-top: 0;
    margin-left: 0.2em;
    font-size: 48px;
  }

  .native-home-final-offer__lead {
    width: 553px;
    margin-top: 18px;
    font-size: 16px;
  }

  .native-home-final-offer__form {
    width: 528px;
    margin-top: 24px;
  }

  .native-home-final-offer__form button {
    width: 360px;
  }

  .native-home-final-offer__callback {
    width: 458px;
    margin-top: 4px;
    font-size: 14px;
    text-align: left;
  }

  .native-home-final-offer__lamp {
    --final-lamp-top: 288px;
    left: -151px;
    width: 74px;
    height: 151px;
  }

}
@media screen and (min-width: 1152px) and (min-width: 1200px) {

  .native-home-final-offer {
    min-height: 1045px;
  }

  .native-home-final-offer__city {
    /* Нижний край стены остаётся на месте, поэтому верх поднимается ровно на
     * прибавку высоты. */
    /* Верх стены остаётся внутри блока: иначе рисунок срезается ровной
     * горизонталью прямо по окнам. */
    top: 24px;
    width: 1973px;
  }

  .native-home-final-offer__paper {
    top: 149px;
    width: 1332px;
  }

  .native-home-final-offer__inner {
    width: 1440px;
    min-height: 1045px;
  }

  .native-home-final-offer__character {
    bottom: 0;
    left: 86px;
    width: 535px;
    height: 804px;
  }

  .native-home-final-offer__content {
    width: 670px;
    margin-left: 563px;
    padding-top: 373px;
  }

  .native-home-final-offer__title {
    font-size: 54px;
  }

  .native-home-final-offer__title-accent {
    margin-left: 0.2em;
    font-size: 64px;
  }

  .native-home-final-offer__lead {
    width: 553px;
    margin: 18px 0 0 8px;
    font-size: 20px;
  }

  .native-home-final-offer__form {
    width: 528px;
    margin: 24px 0 0 8px;
  }

  .native-home-final-offer__form button {
    width: 346px;
  }

  .native-home-final-offer__callback {
    margin: 4px 0 0 8px;
  }

  .native-home-final-offer__lamp {
    --final-lamp-top: 289px;
    left: -151px;
    width: 88px;
    height: 180px;
  }

}
@media screen and (min-width: 1536px) and (min-width: 1200px) {

  .native-home-final-offer {
    min-height: 1020px;
  }

  .native-home-final-offer__city {
    top: 0;
    width: 2239px;
  }

  .native-home-final-offer__paper {
    top: 42px;
    width: 1513px;
  }

  .native-home-final-offer__inner {
    width: 1920px;
    min-height: 1020px;
  }

  .native-home-final-offer__character {
    left: 279px;
    width: 573px;
    height: 860px;
  }

  .native-home-final-offer__content {
    margin-left: 823px;
    padding-top: 360px;
  }

  .native-home-final-offer__lamp {
    --final-lamp-top: 270px;
    left: -212px;
    width: 114px;
    height: 232px;
  }

}
@media (prefers-reduced-motion: reduce) and (min-width: 1200px) {

  .native-home-final-offer__lamp-image--on,
  .native-home-final-offer__form button {
    transition-duration: 0s;
  }

}
@media (prefers-reduced-motion: reduce) and (min-width: 1200px) {

  .native-home-team-gallery__media {
    transition: none;
  }

}
@media screen and (max-width: 511px) and (min-width: 1200px) {

  .native-home-team-gallery {
    height: auto;
    min-height: 0;
  }

  .native-home-team-gallery__grid {
    height: auto;
    grid-template-columns: 75vw 50vw;
    grid-template-rows: 50vw 50vw 62.5vw;
  }

  .native-home-team-gallery__tile:nth-child(1) {
    grid-column: 1;
    grid-row: 1 / 3;
  }

  .native-home-team-gallery__tile:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
  }

  .native-home-team-gallery__tile:nth-child(3) {
    grid-column: 2;
    grid-row: 2;
  }

  .native-home-team-gallery__tile:nth-child(4) {
    grid-column: 1 / 3;
    grid-row: 3;
  }

  .native-home-team-gallery__media img,
  .native-home-team-gallery__media video {
    object-fit: contain;
  }

}
@media (hover: hover) and (pointer: fine) and (min-width: 384px) and (min-width: 1200px) {

  .native-home-footer__link {
    text-decoration: none;
  }

  .native-home-footer__link::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -3px;
    left: 0;
    height: 1px;
    transform: scaleX(0);
    transform-origin: right center;
    background: currentColor;
    transition: transform 420ms cubic-bezier(0.22, 0.61, 0.36, 1);
  }

  .native-home-footer__link:hover::after,
  .native-home-footer__link:focus-visible::after {
    transform: scaleX(1);
    transform-origin: left center;
  }

}
@media (max-width: 959px) and (min-width: 1200px) {

  .native-home-footer {
    min-height: 1190px;
    padding-top: 152px;
  }

  .native-home-footer__layout {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: min(924px, 100%);
    column-gap: clamp(42px, 10vw, 114px);
    row-gap: 44px;
  }

  .native-home-footer__lead h3 {
    font-size: 26px;
  }

  .native-home-footer__contact-link {
    font-size: 26px;
  }

  /* Статуи растут вместе с шириной экрана, поэтому и отступ считается от неё:
   * при постоянном значении на 1024 надпись висела на 84 px выше рук. */
  .native-home-footer__watermark {
    bottom: calc(43.25vw - 26px);
  }

}
@media (max-width: 767px) and (min-width: 1200px) {

  .native-home-footer {
    min-height: 970px;
    padding: 145px 20px max(180px, calc(145px + env(safe-area-inset-bottom)));
  }

  .native-home-footer__layout {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-template-areas:
      "contacts contacts office"
      "messengers navigation legal"
      "lead lead .";
    column-gap: clamp(34px, 8.75vw, 74px);
    row-gap: 34px;
    width: min(920px, 100%);
  }

  .native-home-footer__contacts {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px;
  }

  .native-home-footer__contact-link,
  .native-home-footer__group,
  /* Мельче 16 px Safari при касании увеличивает всю страницу, и форму
   * приходится отматывать руками. Размер держим на пороге. */
  .native-home-footer__phone-field input {
    font-size: 16px;
  }

  .native-home-footer__lead h3 {
    margin-bottom: 14px;
    font-size: 20px;
  }

  .native-home-footer__lead {
    width: min(294px, 100%);
  }

  .native-home-footer__group h3 {
    margin-bottom: 16px;
  }

  .native-home-footer__group ul {
    gap: 11px;
  }

  .native-home-footer__subheading {
    margin-top: 18px !important;
  }

  .native-home-footer__form button {
    font-size: 14px;
  }

  .native-home-footer__paper {
    width: max(100%, 760px);
    height: 125px;
  }

  /* Надпись должна лежать в ладонях: с фиксированным отступом на одних
   * ширинах она садилась в руки, а на других висела над ними. */
  .native-home-footer__watermark {
    bottom: 205px;
    gap: 0.18em;
    font-size: clamp(80px, 17.625vw, 136px);
  }

  .native-home-footer__city {
    bottom: -40px;
    height: clamp(237px, 56.25vw, 431px);
  }

  .native-home-footer__statue {
    width: clamp(167px, 27.375vw, 210px);
  }

  .native-home-footer__statue--left {
    left: -33px;
  }

  .native-home-footer__statue--right {
    right: -33px;
  }

}
@media (max-width: 511px) and (min-width: 1200px) {

  .native-home-footer {
    min-height: 990px;
    padding: 122px 20px max(230px, calc(190px + env(safe-area-inset-bottom)));
  }

  .native-home-footer__layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-areas:
      "contacts contacts"
      "office office"
      "messengers navigation"
      "legal legal"
      "lead lead";
    column-gap: 28px;
    row-gap: 28px;
  }

  .native-home-footer__contacts {
    gap: 26px;
  }

  .native-home-footer__contact-link,
  .native-home-footer__group,
  .native-home-footer__phone-field input {
    font-size: 16px;
  }

  .native-home-footer__group--office address {
    max-width: 390px;
  }

  .native-home-footer__group--legal {
    max-width: 310px;
  }

  .native-home-footer__lead {
    width: min(100%, 442px);
  }

  .native-home-footer__lead h3 {
    font-size: 16px;
  }

  .native-home-footer__consent em,
  .native-home-footer__status {
    font-size: 10px;
  }

  .native-home-footer__paper {
    width: max(100%, 480px);
    height: 100px;
  }

  .native-home-footer__watermark {
    bottom: 208px;
    gap: 0.18em;
    font-size: clamp(64px, 17.625vw, 92px);
  }

  .native-home-footer__city {
    bottom: -8px;
    height: 237px;
  }

  .native-home-footer__statue {
    bottom: 0;
    width: 167px;
  }

  .native-home-footer__statue--left {
    left: -28px;
  }

  .native-home-footer__statue--right {
    right: -28px;
  }

}
@media (max-width: 383px) and (min-width: 1200px) {

  .native-home-footer {
    min-height: 970px;
    padding: 118px 20px max(240px, calc(195px + env(safe-area-inset-bottom)));
  }

  .native-home-footer__layout {
    row-gap: 24px;
  }

  .native-home-footer__contacts {
    gap: 14px;
  }

  .native-home-footer__contact-link {
    overflow-wrap: anywhere;
    white-space: normal;
  }

  .native-home-footer__group h3 {
    margin-bottom: 12px;
  }

  .native-home-footer__group ul {
    gap: 9px;
  }

  .native-home-footer__subheading {
    margin-top: 16px !important;
  }

  .native-home-footer__group--legal p {
    margin-top: 12px;
  }

  .native-home-footer__lead {
    width: 100%;
  }

  .native-home-footer__lead h3 {
    font-size: 14px;
  }

  .native-home-footer__consent {
    grid-template-columns: 20px minmax(0, 1fr);
    margin: 20px 0;
  }

  .native-home-footer__form button {
    min-height: 40px;
    font-size: 12px;
  }

  .native-home-footer__status {
    min-height: 14px;
  }

  .native-home-footer__paper {
    width: 100%;
    height: 92px;
  }

  /* Надпись лежит в ладонях атлантов. Ниже — и руки оказываются над словом,
   * выше — держат воздух; шаг тут в считанные пиксели. */
  .native-home-footer__watermark {
    bottom: 168px;
    font-size: 56px;
  }

  .native-home-footer__city {
    bottom: 0;
    height: 210px;
  }

  .native-home-footer__statue {
    width: 144px;
  }

  .native-home-footer__statue--left {
    left: -22px;
  }

  .native-home-footer__statue--right {
    right: -22px;
  }

}
@media (max-height: 416px) and (orientation: landscape) and (min-width: 1200px) {

  .native-home-footer {
    min-height: 860px;
    padding-top: 84px;
  }

  .native-home-footer__paper {
    height: 70px;
  }

}
@media (prefers-reduced-motion: reduce) and (min-width: 1200px) {

  .native-home-footer *,
  .native-home-footer *::before,
  .native-home-footer *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

}
