/* =================================================================
   Air theme — экран ЛЕНДИНГА (per-screen стили).
   Источник: variant-01-air-service/css/screens/landing.css — перенос ДОСЛОВНО
   (шаблон утверждён владельцем; не упрощаем, не переименовываем).

   Файл намеренно содержит и глобальные/шаренные селекторы шаблона
   (h1/h2/h3/p, .panel, .center-card, label/input/textarea, .content-grid,
   .quick-grid, .action-card, .auth-switch и т.п.) — так организован шаблон
   (landing.css у автора заодно несёт базовые компоненты). На лендинге
   неиспользуемые селекторы — безвредный мёртвый CSS. ИМЕННО поэтому
   landing.css подключается на ОТДЕЛЬНОЙ design-kit странице, а не в общую
   галерею (он переопределяет глобальные h1/p/.panel/.docs-grid).

   В конце файла к базе ДОПИСАНЫ (не из этого исходника):
   1) .air-landing-page{background:#fff} — заменяет роль .screen[data-screen="landing"]
      из шаблонного 02-screen-base.css (его Э0 не переносил — он SPA-специфичен);
      без него прозрачный .work лёг бы на серый Air-body (--bg #f4f7fb).
   2) АДАПТИВ лендинга — извлечён из шаблонного 90-responsive.css (все @media),
      смешанные selector-группы разбиты, оставлены только landing-селекторы.
      Внутри — AIR-NAV: element-button-селекторы CTA расширены на <a>
      (кнопки шаблона у нас стали ссылками Yii).
   ================================================================= */

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(44px, 4.4vw, 84px);
  align-items: center;
  max-width: 1780px;
  min-height: 760px;
  margin: 0 auto;
  padding: 84px clamp(56px, 5.6vw, 112px) 48px;
  background: #fff;
  overflow: visible;
  isolation: isolate;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 610px;
  padding-top: 0;
}

.hero > *,
.feature-row article {
  min-width: 0;
}

.eyebrow {
  color: var(--blue);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--text);
  font-family: var(--font-main);
}

h1 {
  max-width: 610px;
  margin: 0 0 20px;
  font-size: clamp(34px, 5vw, 52px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -1px;
}

h1 span {
  color: var(--blue);
}

h2 {
  font-size: clamp(26px, 2.4vw, 38px);
  font-weight: 800;
  line-height: 1.1;
}

h3 {
  font-size: 21px;
  font-weight: 800;
}

.lead {
  max-width: 500px;
  color: var(--muted);
  font-size: 19px;
  font-weight: 400;
  line-height: 1.55;
}

.feature-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(82px, 1fr));
  gap: 26px;
  max-width: 445px;
  margin: 54px 0 44px;
}

.feature-row article,
.steps article,
.panel,
.docs-grid article,
.letter-card,
.action-card,
.center-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: 0 16px 40px rgba(15, 49, 95, 0.06);
}

.feature-row article {
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.feature-row b,
.feature-row small {
  display: block;
}

.feature-row b {
  margin-top: 4px;
  color: var(--blue);
  font-size: 20px;
  font-weight: 700;
}

.feature-row small {
  color: #1d304c;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.35;
}

.muted,
.panel p,
.docs-grid p {
  color: var(--muted);
}

.line-icon {
  display: block;
  width: 72px;
  height: 78px;
  margin-bottom: 16px;
  object-fit: contain;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 26px;
}

.plain {
  position: relative;
  padding: 0;
  color: #27435f;
  font-weight: 500;
}

.plain::before {
  content: none;
}

.plain::after {
  content: none;
}

.track-link {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  padding-left: 0;
  color: var(--text);
  font-size: 16px;
  font-weight: 700;
}

.track-link::before,
.track-link::after {
  content: none;
}

.track-link-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  color: var(--blue);
  background: white;
  border: 1px solid var(--border);
  border-radius: 50%;
  box-shadow: 0 6px 14px rgba(28, 58, 110, 0.08);
}

.auth-switch {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 10px;
  padding: 0;
  color: var(--text);
  background: transparent;
  border: 0;
  font: inherit;
  font-size: 16px;
  font-weight: 700;
}

.auth-switch:hover {
  color: var(--blue);
}

.auth-switch-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  color: var(--blue);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 50%;
  box-shadow: 0 6px 14px rgba(28, 58, 110, 0.08);
}

.hero-art {
  position: relative;
  z-index: 2;
  width: 100%;
  min-height: 650px;
  margin-left: 0;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  overflow: visible;
  isolation: isolate;
}

.hero-ensemble {
  position: relative;
  width: min(82%, 760px);
  height: clamp(420px, 34vw, 620px);
  margin-top: 30px;
  transform: translateX(-14%);
}

.hero-global-map {
  position: absolute;
  z-index: 0;
  top: 50%;
  right: clamp(-52px, -2.4vw, -8px);
  width: min(60%, 1260px);
  max-width: none;
  height: auto;
  transform: translateY(-50%);
  opacity: 0.78;
  mix-blend-mode: multiply;
  pointer-events: none;
  user-select: none;
}

.hero-composition img {
  position: absolute;
  display: block;
  max-width: none;
  height: auto;
  object-fit: contain;
}

.hero-letter-layer {
  z-index: 2;
  right: 0;
  top: 0;
  width: 100%;
  transform: rotate(9deg);
  transform-origin: 78% 62%;
  filter:
    drop-shadow(14px 14px 14px rgba(24, 68, 112, 0.56))
    drop-shadow(26px 28px 26px rgba(24, 68, 112, 0.2));
}

.hero-phone-layer {
  z-index: 4;
  left: 10%;
  bottom: -18%;
  width: 52%;
  transform: rotate(9deg);
  transform-origin: center center;
  filter: drop-shadow(0 30px 38px rgba(14, 30, 48, 0.22));
}

.hero-price-layer {
  position: absolute;
  z-index: 3;
  right: -6%;
  bottom: 4%;
  min-width: 214px;
  padding: 20px 24px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 34px rgba(60, 108, 157, 0.15);
}

.hero-price-layer span {
  display: block;
  margin-bottom: 4px;
  color: #27435f;
  font-size: 14px;
  font-weight: 500;
}

.hero-price-layer b {
  color: var(--blue);
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
}

.map-wash {
  position: absolute;
  inset: 0 0 18px 8px;
  background:
    radial-gradient(circle at 73% 16%, rgba(22, 136, 237, 0.2), transparent 11%),
    radial-gradient(circle at 34% 37%, rgba(22, 136, 237, 0.18), transparent 24%),
    radial-gradient(circle at 78% 58%, rgba(22, 136, 237, 0.17), transparent 30%),
    linear-gradient(135deg, rgba(224, 241, 255, 0.7), rgba(255, 255, 255, 0.18) 58%, rgba(226, 242, 255, 0.76));
  border-radius: 34% 18% 26% 14%;
  filter: blur(0.1px);
  opacity: 0.95;
}

.route {
  position: absolute;
  inset: 255px 14px auto 10px;
  width: 90%;
  height: 270px;
  fill: none;
  stroke: #0f76d9;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-dasharray: 10 12;
}

.pin-a,
.pin-b {
  position: absolute;
  width: 34px;
  height: 34px;
  background: var(--blue);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  box-shadow: 0 12px 24px rgba(22, 131, 238, 0.28);
}

.pin-a {
  left: 52px;
  top: 270px;
}

.pin-b {
  right: 28px;
  bottom: 108px;
}

.pin-a::after,
.pin-b::after {
  content: "";
  position: absolute;
  inset: 10px;
  background: white;
  border-radius: 50%;
}

.envelope {
  position: absolute;
  top: 58px;
  right: 70px;
  width: 520px;
  min-height: 250px;
  padding: 58px 62px;
  transform: rotate(8deg);
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: 0 26px 60px rgba(70, 112, 158, 0.16);
}

.envelope span {
  display: inline-block;
  margin-left: 200px;
  margin-bottom: 30px;
  padding: 7px 12px;
  color: var(--blue-dark);
  border: 2px dashed #8bbdea;
  font-weight: 700;
}

.envelope p {
  border-bottom: 1px solid #d9e5f2;
  color: #42526a;
}

.phone {
  position: absolute;
  right: 260px;
  bottom: 26px;
  width: 220px;
  padding: 34px 20px 22px;
  background: #101820;
  border-radius: 32px;
  box-shadow: 0 24px 42px rgba(16, 34, 59, 0.24);
  color: white;
}

.phone::after {
  content: "";
  display: block;
  padding: 16px;
  background: #f5fbff;
  border-radius: 24px;
  position: absolute;
  inset: 14px;
  z-index: 0;
}

.phone > * {
  position: relative;
  z-index: 1;
  color: var(--text);
}

.phone-notch {
  position: absolute;
  top: 20px;
  left: 72px;
  width: 78px;
  height: 16px;
  background: #101820;
  border-radius: 0 0 12px 12px;
}

.phone h3 {
  margin: 22px 0 2px;
  font-size: 16px;
}

.phone p {
  font-size: 12px;
}

.phone ul,
.timeline {
  padding: 0;
  list-style: none;
}

.phone li {
  margin: 12px 0;
  padding-left: 24px;
  font-size: 12px;
  position: relative;
}

.phone li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 12px;
  height: 12px;
  background: var(--green);
  border-radius: 50%;
}

.sign {
  padding: 12px;
  background: #edf9f3;
  border: 1px solid #ccefdc;
  border-radius: 8px;
  font-size: 12px;
}

.price-card {
  position: absolute;
  right: 8px;
  bottom: 76px;
  padding: 24px 32px;
  background: white;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.price-card small,
.price-card b {
  display: block;
}

.price-card b {
  color: var(--blue);
  font-size: 34px;
}

.work {
  position: relative;
  max-width: none;
  margin: 34px 0 0;
  padding: 40px clamp(38px, 4.8vw, 76px) 0;
  text-align: center;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  overflow: hidden;
}

.work-inner {
  position: relative;
  z-index: 1;
  max-width: 1780px;
  margin: 0 auto;
  padding: 54px clamp(34px, 4.2vw, 72px) 178px;
  background: #ebf4fe5e;
  border: 1px solid var(--border-soft);
  border-bottom: 0;
  border-radius: 56px 56px 0 0;
  box-shadow: 0 22px 55px rgba(15, 49, 95, 0.04);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.work h2 {
  color: var(--text);
  font-size: clamp(26px, 2.4vw, 38px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
}

.work-lead {
  max-width: 640px;
  margin: 0 auto 34px;
  color: var(--muted-alt);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.5;
}

.steps,
.quick-grid,
.docs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 56px;
  margin-top: 0;
}

.steps {
  --step-chain-gap: 56px;
}

.steps article,
.docs-grid article {
  padding: 34px 24px 36px;
}

.steps span {
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  width: 40px;
  height: 40px;
  margin-bottom: 10px;
  color: #2c6bed;
  background: #eaf1fe;
  border-radius: 11px;
  font-size: 18px;
  font-weight: 800;
}

.step-ico {
  display: block;
  width: 164px;
  height: 164px;
  max-width: 100%;
  margin: 0 auto 8px;
  flex: 0 0 164px;
  object-fit: contain;
}

.steps article {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  overflow: visible;
  padding: 24px 24px 28px;
}

.steps article:not(:last-child)::after {
  content: "";
  position: absolute;
  left: calc(100% + 8px);
  top: 43%;
  width: calc(var(--step-chain-gap) - 16px);
  height: 6px;
  background-image: radial-gradient(circle, rgba(159, 180, 208, 0.62) 2px, transparent 2.5px);
  background-repeat: repeat-x;
  background-size: 12px 6px;
  transform: translateY(-50%);
  pointer-events: none;
}

.steps article b {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  min-height: 0;
  margin-bottom: 8px;
  text-align: center;
  color: var(--text);
  font-size: 19px;
  font-weight: 800;
  line-height: 1.22;
}

.steps article p {
  margin-bottom: 0;
  min-height: 0;
  color: var(--text);
  font-size: 15px;
  font-weight: 400;
  text-align: center;
  line-height: 1.34;
}

.work-cta {
  margin: 38px auto 54px;
  padding: 15px 28px;
  border-radius: 12px;
}

.trust-panel {
  position: relative;
  z-index: 1;
  margin: 0 auto -178px;
  padding: 50px clamp(28px, 4vw, 64px) 56px;
  background: #fff;
  border: 1px solid var(--border-soft);
  border-bottom: 0;
  border-radius: 42px 42px 0 0;
  box-shadow: 0 18px 44px rgba(15, 49, 95, 0.045);
}

.trust-panel h3 {
  margin: 0 0 38px;
  color: var(--text);
  font-size: clamp(22px, 2vw, 32px);
  font-weight: 800;
  line-height: 1.14;
  letter-spacing: -0.5px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 38px;
}

.trust-grid article {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-width: 0;
  text-align: left;
}

.trust-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 58px;
  width: 58px;
  height: 58px;
  color: var(--blue);
  background: var(--blue-soft);
  border-radius: 18px;
}

.trust-grid p {
  margin: 0;
  color: var(--label);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.38;
}
.trust-note {
  max-width: 1080px;
  margin: 34px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--border-soft);
  color: var(--muted);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
}
.trust-payment-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  max-width: 1080px;
  margin: 24px auto 0;
  padding: 18px 24px;
  background: #f8fbff;
  border: 1px solid var(--border-soft);
  border-radius: 18px;
}

.trust-payment-bar p {
  margin: 0;
  color: var(--text);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.35;
  text-align: left;
}

.trust-payment-icons {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
  flex: 0 0 auto;
}

.trust-payment-icons img {
  display: block;
  width: auto;
  max-height: 26px;
  object-fit: contain;
}

.center-card {
  max-width: 520px;
  margin: 7vh auto;
  padding: 38px;
}

label {
  display: grid;
  gap: 8px;
  margin: 18px 0;
  color: var(--blue-dark);
  font-weight: 600;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 15px 18px;
  color: var(--text);
  background: #fff;
  outline: none;
}

textarea {
  min-height: 92px;
  resize: vertical;
}

.check {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-weight: 600;
}

.check input {
  width: auto;
}

.page-head {
  max-width: 1180px;
  margin: 0 auto 28px;
}

.centered {
  text-align: center;
}

.quick-grid {
  max-width: 1180px;
  margin: 0 auto 28px;
  grid-template-columns: repeat(3, 1fr);
}

.action-card {
  display: grid;
  gap: 10px;
  padding: 28px;
  text-align: left;
  color: var(--text);
}

.action-card b {
  font-size: 24px;
}

.action-card span {
  color: var(--muted);
}

.content-grid,
.send-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 28px;
  max-width: 1180px;
  margin: 0 auto;
}

.panel {
  padding: 30px;
}

.panel.soft {
  background: linear-gradient(135deg, #fff, var(--blue-soft));
}

.big-number {
  color: var(--blue);
  font-size: 46px;
  font-weight: 700;
}

/* =================================================================
   ДОПИСАНО к базе (НЕ из шаблонного screens/landing.css):
   роль .screen[data-screen="landing"] из 02-screen-base.css (его Э0 не
   переносил — он SPA-специфичен). Лендингу нужен белый фон страницы, т.к.
   .work выше — transparent и иначе ляжет на серый Air-body (--bg #f4f7fb).
   ================================================================= */
.air-landing-page {
  background: #fff;
}

/* =================================================================
   АДАПТИВ ЛЕНДИНГА — извлечён из шаблонного css/90-responsive.css (8 @media).
   Перенесены ТОЛЬКО landing-селекторы; смешанные selector-группы разбиты
   (тело правила — дословно, чужие экраны выкинуты). Порядок @media сохранён
   как в источнике (важно для каскада: один и тот же селектор в разных
   брейкпоинтах перекрывает себя в исходном порядке).
   AIR-NAV: element-button-селекторы CTA расширены на <a> (кнопки шаблона у
   нас стали ссылками Yii).
   Блоки источника 720(receive/tracking), 1100(send), 720(send) landing-правил
   НЕ содержат — пропущены. Shell-адаптив (topbar/nav/menu) вынесен в Э0
   (90-responsive-shell.css) — здесь его нет.
   ================================================================= */

/* источник: 90-responsive.css @media(max-width:1100px) (стр. 222) — берём только .trust-grid */
@media (max-width: 1100px) {
  .trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* источник: @media(max-width:1180px) (стр. 250) */
@media (max-width: 1180px) {
  .trust-payment-bar {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }

  .trust-payment-icons {
    justify-content: center;
    width: 100%;
  }
}

/* источник: @media(min-width:721px) and (max-width:1180px) (стр. 262) — только landing-селекторы */
@media (min-width: 721px) and (max-width: 1180px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 64px clamp(32px, 6vw, 64px) 44px;
  }

  .hero-copy {
    max-width: 720px;
  }

  .hero-art,
  .hero-global-map {
    display: none;
  }

  .feature-row {
    max-width: 620px;
  }

  .work {
    margin-top: 20px;
    padding: 34px clamp(24px, 4vw, 42px) 0;
  }

  .work-inner {
    padding: 48px clamp(28px, 4.4vw, 52px) 150px;
    border-radius: 42px 42px 0 0;
  }

  .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
  }

  .steps article:not(:last-child)::after {
    display: none;
  }

  .trust-panel {
    margin-bottom: -150px;
  }

  .trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px 34px;
  }

  .trust-grid article {
    justify-content: flex-start;
  }
}

/* источник: @media(max-width:720px) (стр. 529) — только landing; группы .hero/.feature-row разбиты
   (убраны .content-grid/.send-layout/.quick-grid/.docs-grid — другие экраны) */
@media (max-width: 720px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 0;
    padding: 34px 18px 18px;
  }

  h1 {
    overflow-wrap: anywhere;
  }

  .hero h1 {
    max-width: 360px;
    margin-bottom: 16px;
    font-size: clamp(30px, 9.4vw, 42px);
    line-height: 1.08;
  }

  .lead {
    max-width: 360px;
    font-size: 17px;
    line-height: 1.5;
  }

  .hero-art,
  .hero-global-map {
    display: none;
  }

  .work {
    margin-top: 18px;
    padding: 18px 10px 0;
    border-radius: 0;
  }

  .work-inner {
    padding: 30px 12px 118px;
    border-radius: 28px 28px 0 0;
  }

  .feature-row,
  .steps {
    grid-template-columns: 1fr 1fr;
  }

  .feature-row {
    max-width: 360px;
    gap: 22px 18px;
    margin: 32px 0 28px;
  }

  .feature-row article {
    min-width: 0;
  }

  .line-icon {
    width: 58px;
    height: 58px;
    margin-bottom: 10px;
    border-radius: 18px;
  }

  .feature-row small {
    font-size: 14px;
    line-height: 1.32;
  }

  .feature-row b {
    font-size: 21px;
    line-height: 1.12;
  }

  .steps article:not(:last-child)::after {
    display: none;
  }

  .work h2 {
    font-size: 27px;
  }

  .work-lead {
    max-width: 330px;
    margin: -2px auto 24px;
    font-size: 14px;
    line-height: 1.45;
  }

  .steps {
    gap: 14px;
  }

  .steps article {
    min-height: 0;
    padding: 14px 10px 17px;
  }

  .steps span {
    width: 32px;
    height: 32px;
    margin-bottom: 10px;
    border-radius: 9px;
    font-size: 15px;
  }

  .step-ico {
    width: 98px;
    height: 98px;
    flex-basis: 98px;
    margin-bottom: 4px;
  }

  .steps article b {
    min-height: 34px;
    margin-bottom: 6px;
    font-size: 14px;
    line-height: 1.18;
  }

  .steps article p {
    font-size: 12px;
    line-height: 1.28;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  /* AIR-NAV: в шаблоне CTA — <button>, у нас <a> Yii; селектор расширен на ссылки */
  .hero-actions a,
  .hero-actions button {
    width: 100%;
    max-width: 100%;
    text-align: center;
  }

  .work-cta {
    width: 100%;
    max-width: 260px;
    margin: 26px auto 34px;
  }

  .trust-panel {
    margin-bottom: -118px;
    padding: 30px 14px 42px;
    border-radius: 26px 26px 0 0;
  }

  .trust-panel h3 {
    margin-bottom: 24px;
    font-size: 20px;
    line-height: 1.18;
  }

  .trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 12px;
  }

  .trust-grid article {
    align-items: flex-start;
    justify-content: flex-start;
    gap: 10px;
  }

  .trust-grid span {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    border-radius: 13px;
  }

  .trust-grid svg {
    width: 19px;
    height: 19px;
  }

  .trust-grid p {
    font-size: 12px;
    line-height: 1.28;
  }

  .trust-note {
    margin-top: 24px;
    padding-top: 18px;
    font-size: 12px;
    line-height: 1.4;
  }

  .trust-payment-bar {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    margin-top: 18px;
    padding: 16px;
    border-radius: 16px;
  }

  .trust-payment-bar p {
    font-size: 12px;
    line-height: 1.4;
  }

  .trust-payment-icons {
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px 18px;
    width: 100%;
  }

  .trust-payment-icons img {
    max-height: 22px;
  }

  .envelope {
    left: 12px;
    right: auto;
    width: min(320px, calc(100vw - 56px));
    padding: 32px;
    transform: rotate(4deg);
  }

  .phone {
    right: 54px;
    bottom: 24px;
  }

  .price-card {
    right: 10px;
    bottom: 38px;
    padding: 18px;
  }

  .price-card b {
    font-size: 26px;
  }
}

/* источник: @media(min-width:1181px) and (max-height:780px) (стр. 1751) — короткий desktop, целиком landing */
@media (min-width: 1181px) and (max-height: 780px) {
  .hero {
    min-height: calc(100vh - 78px);
    gap: clamp(28px, 3vw, 54px);
    padding-top: 38px;
    padding-bottom: 24px;
  }

  .hero h1 {
    margin-bottom: 16px;
    font-size: clamp(36px, 4.5vw, 48px);
    line-height: 1.05;
  }

  .lead {
    max-width: 480px;
    font-size: 17px;
    line-height: 1.42;
  }

  .feature-row {
    gap: 18px;
    max-width: 430px;
    margin: 34px 0 26px;
  }

  .line-icon {
    width: 60px;
    height: 64px;
    margin-bottom: 8px;
  }

  .feature-row small {
    font-size: 12px;
    line-height: 1.28;
  }

  .feature-row b {
    margin-top: 2px;
    font-size: 18px;
  }

  .hero-actions {
    gap: 18px;
  }

  .hero-actions .large {
    padding: 14px 30px;
  }

  .track-link {
    gap: 9px;
    font-size: 15px;
  }

  .track-link-icon {
    flex-basis: 40px;
    width: 40px;
    height: 40px;
  }

  .hero-art {
    min-height: 500px;
    align-items: flex-start;
  }

  .hero-ensemble {
    width: min(78%, 680px);
    height: min(460px, calc(100vh - 230px));
    margin-top: 0;
    transform: translateX(-8%);
  }

  .hero-letter-layer {
    top: -8%;
  }

  .hero-phone-layer {
    left: 12%;
    bottom: -6%;
    width: 47%;
  }

  .hero-price-layer {
    right: -2%;
    bottom: 10%;
    min-width: 190px;
    padding: 16px 20px;
  }

  .hero-price-layer b {
    font-size: 26px;
  }

  .hero-global-map {
    top: 54%;
    width: min(56%, 1100px);
  }
}
