/* Лендинг услуги: изолированная композиция поверх общего дизайн-языка Himmeldrøm. */
.landing-page {
  --lp-blue: #1d4ea3;
  --lp-blue-dark: #102d68;
  --lp-ink: #17191d;
  --lp-text: #3d4149;
  --lp-muted: #666b75;
  --lp-line: #d9dce2;
  --lp-paper: #f5f3ef;
  --lp-white: #fff;
  --lp-mist: #e9effa;
  background: var(--lp-paper);
  color: var(--lp-ink);
}

.landing-page a { color: inherit }
.landing-page img { max-width: 100% }
.landing-page button,
.landing-page input { font: inherit }

.lp-container {
  width: min(1200px, calc(100% - 40px));
  margin-inline: auto;
}

.lp-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(23, 25, 29, .12);
  background: rgba(245, 243, 239, .94);
  backdrop-filter: blur(12px);
}

.lp-header__inner {
  min-height: 70px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.lp-brand {
  flex: none;
  font-family: 'Unbounded', sans-serif;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -.02em;
}

.lp-brand span { color: var(--lp-blue) }

.lp-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.5vw, 34px);
  margin-inline: auto;
  font-size: 14px;
  font-weight: 600;
  color: var(--lp-muted);
}

.lp-nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  position: relative;
}

.lp-nav a::after {
  content: '';
  position: absolute;
  inset: auto 0 8px;
  height: 2px;
  background: var(--lp-blue);
  scale: 0 1;
  transform-origin: left;
  transition: scale .2s ease;
}

.lp-nav a:hover,
.lp-nav a:focus-visible { color: var(--lp-ink) }
.lp-nav a:hover::after,
.lp-nav a:focus-visible::after { scale: 1 1 }

.lp-header__cta,
.lp-button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 10px;
  padding: 0 20px;
  background: var(--lp-blue);
  color: #fff !important;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s ease, transform .2s ease;
}

.lp-header__cta:hover,
.lp-button:hover { background: var(--lp-blue-dark); color: #fff }
.lp-header__cta:active,
.lp-button:active { transform: translateY(1px) }
.lp-header__cta:focus-visible,
.lp-button:focus-visible,
.lp-link-button:focus-visible,
.lp-anatomy__item:focus-visible {
  outline: 3px solid #8eb4f6;
  outline-offset: 3px;
}

.lp-hero {
  min-height: calc(100svh - 70px);
  display: grid;
  align-items: center;
  padding-block: clamp(54px, 8vw, 110px);
  overflow: hidden;
}

.lp-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(480px, 1.12fr);
  gap: clamp(40px, 7vw, 96px);
  align-items: center;
}

.lp-back {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  margin-bottom: 16px;
  color: var(--lp-muted);
  font-size: 14px;
}

.lp-back:hover { color: var(--lp-blue) }

.lp-hero__definition {
  max-width: 46ch;
  margin: 0 0 14px;
  color: var(--lp-blue);
  font-size: 14px;
  font-weight: 750;
  line-height: 1.45;
}

.lp-hero h1 {
  max-width: 14ch;
  margin: 0;
  font-size: clamp(42px, 5.7vw, 76px);
  line-height: .98;
  letter-spacing: -.055em;
  text-wrap: balance;
}

.lp-hero__lead {
  max-width: 58ch;
  margin: 26px 0 0;
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.58;
  color: var(--lp-text);
}

.lp-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.lp-link-button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-bottom: 2px solid var(--lp-ink);
  font-weight: 700;
}

.lp-link-button:hover { color: var(--lp-blue); border-color: var(--lp-blue) }

.lp-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
  gap: 18px;
  margin: 34px 0 0;
  padding: 20px 0 0;
  border-top: 1px solid var(--lp-line);
}

.lp-fact { min-width: 0 }
.lp-fact strong { min-height: 23px; display: block; font-size: 18px; line-height: 1.28; letter-spacing: -.02em; white-space: nowrap }
.lp-fact > span { display: block; margin-top: 3px; color: var(--lp-muted); font-size: 13px }
.lp-fact .lp-ruble { display: inline-block; color: inherit; font-size: .86em; line-height: 1; transform: translateY(-.04em) }

.lp-showcase {
  position: relative;
  min-height: 520px;
}

.lp-browser {
  overflow: hidden;
  border-radius: 14px;
  background: var(--lp-white);
  box-shadow: 0 8px 0 rgba(16, 45, 104, .12);
}

.lp-browser__bar {
  height: 42px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 15px;
  border-bottom: 1px solid var(--lp-line);
}

.lp-browser__bar i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #c4c8d0;
}

.lp-browser__bar span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-left: 8px;
  color: var(--lp-muted);
  font-size: 12px;
  white-space: nowrap;
}

.lp-browser img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  display: block;
  object-fit: cover;
}

.lp-phone {
  position: absolute;
  right: -18px;
  bottom: -18px;
  width: 190px;
  overflow: hidden;
  border: 8px solid #15171b;
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 8px 0 rgba(16, 45, 104, .22);
  transform: rotate(2deg);
}

.lp-phone::before {
  content: '';
  position: absolute;
  z-index: 2;
  width: 62px;
  height: 15px;
  left: 50%;
  top: 0;
  translate: -50% 0;
  border-radius: 0 0 10px 10px;
  background: #15171b;
}

.lp-phone img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 941 / 1672;
  object-fit: contain;
}

.lp-proof-tag {
  position: absolute;
  left: -26px;
  bottom: 36px;
  max-width: 210px;
  padding: 14px 16px;
  border-radius: 10px;
  background: var(--lp-blue);
  color: #fff;
  font-size: 14px;
  font-weight: 650;
  line-height: 1.4;
}

.lp-section {
  padding-block: clamp(76px, 10vw, 140px);
}

.lp-section--white { background: var(--lp-white) }
.lp-section--blue { background: var(--lp-blue); color: #fff }
.lp-section--ink { background: var(--lp-ink); color: #fff }

.lp-chapter {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 24px;
  align-items: baseline;
  margin-bottom: clamp(42px, 6vw, 76px);
}

.lp-chapter__name {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  color: var(--lp-blue);
}

.lp-section--blue .lp-chapter__name,
.lp-section--ink .lp-chapter__name { color: #a9c8ff }

.lp-chapter h2,
.lp-section-title {
  max-width: 18ch;
  margin: 0;
  font-size: clamp(32px, 5vw, 62px);
  line-height: 1.03;
  letter-spacing: -.045em;
  text-wrap: balance;
}

.lp-section-title { margin-bottom: clamp(34px, 5vw, 58px) }

.lp-section-intro {
  max-width: 62ch;
  margin: 20px 0 0;
  font-size: 17px;
  line-height: 1.65;
  color: var(--lp-muted);
}

.lp-section--blue .lp-section-intro,
.lp-section--ink .lp-section-intro { color: rgba(255, 255, 255, .75) }

.lp-anatomy {
  display: grid;
  grid-template-columns: minmax(320px, .78fr) minmax(0, 1.22fr);
  gap: clamp(34px, 6vw, 82px);
  align-items: center;
}

.lp-anatomy__list { display: grid; gap: 6px }

.lp-anatomy__item {
  width: 100%;
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 12px;
  padding: 16px 0;
  border: 0;
  border-bottom: 1px solid var(--lp-line);
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.lp-anatomy__item b { color: var(--lp-blue); font-size: 13px; padding-top: 3px }
.lp-anatomy__item strong { display: block; font-size: 17px }
.lp-anatomy__item span { display: block; margin-top: 5px; color: var(--lp-muted); line-height: 1.5 }
.lp-anatomy__item[aria-pressed='true'] strong { color: var(--lp-blue) }

.lp-page-map {
  position: relative;
  width: min(100%, 540px);
  aspect-ratio: 2 / 3;
  margin-inline: auto;
  padding: 12px;
  border-radius: 14px;
  background: #dfe6f2;
}

.lp-page-map__image {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
  object-position: top;
}

.lp-page-map__part {
  position: absolute;
  left: 12px;
  right: 12px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  border: 3px solid transparent;
  border-radius: 8px;
  background: transparent;
  color: #fff;
  font-size: 13px;
  font-weight: 650;
  pointer-events: none;
  transition: background .2s ease, border-color .2s ease;
}

.lp-page-map__part[data-part='offer'] { top: 12px; height: calc(23% - 12px) }
.lp-page-map__part[data-part='benefits'] { top: 23%; height: 17% }
.lp-page-map__part[data-part='proof'] { top: 40%; height: 23% }
.lp-page-map__part[data-part='price'] { top: 63%; height: 22% }
.lp-page-map__part[data-part='action'] { top: 85%; bottom: 12px }
.lp-page-map__part span { margin: 7px; padding: 5px 9px; border-radius: 6px; background: var(--lp-blue-dark); opacity: 0 }
.lp-page-map__part.is-active { border-color: var(--lp-blue); background: rgba(29, 78, 163, .14) }
.lp-page-map__part.is-active span { opacity: 1 }

.lp-situations {
  display: grid;
  grid-template-columns: 1.05fr .9fr 1.05fr;
  gap: 16px;
}

.lp-situation {
  min-height: 420px;
  display: flex;
  flex-direction: column;
  padding: clamp(24px, 3vw, 34px);
  border-radius: 14px;
  background: #fff;
  color: var(--lp-ink);
}

.lp-situation:nth-child(2) { transform: translateY(38px) }
.lp-situation h3 { margin: 24px 0 10px; font-size: 24px; letter-spacing: -.025em }
.lp-situation p { margin: 0; color: var(--lp-muted); line-height: 1.6 }

.lp-scene {
  min-height: 188px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  padding-top: 24px;
}

.lp-scene__image {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 3 / 2;
  border-radius: 10px;
  object-fit: cover;
}

.lp-booking { width: 100%; padding: 18px; border-radius: 12px; background: #f4f7fb }
.lp-booking__head { display: flex; align-items: center; justify-content: space-between; gap: 12px }
.lp-booking__head strong { font-size: 15px }
.lp-booking__head span { color: var(--lp-blue); font-size: 12px; font-weight: 700 }
.lp-booking__date,
.lp-booking__slots { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; margin-top: 14px }
.lp-booking__date b,
.lp-booking__slots span { display: flex; align-items: center; justify-content: center; min-height: 34px; border-radius: 7px; background: #fff; color: var(--lp-muted); font-size: 11px; font-weight: 650 }
.lp-booking__date .is-selected,
.lp-booking__slots .is-selected { background: #dce8ff; color: var(--lp-blue-dark) }
.lp-booking__button { min-height: 42px; display: flex; align-items: center; justify-content: center; margin-top: 10px; border-radius: 8px; background: var(--lp-blue); color: #fff; font-size: 13px; font-weight: 750 }

.lp-always-on { width: 100%; display: grid; gap: 12px }
.lp-always-on__clock { min-height: 112px; display: flex; flex-direction: column; align-items: center; justify-content: center; border-radius: 12px; background: var(--lp-blue-dark); color: #fff }
.lp-always-on__clock strong { font-family: var(--lp-display); font-size: 42px; line-height: 1 }
.lp-always-on__clock span { margin-top: 8px; color: #bcd2fb; font-size: 13px }
.lp-always-on__request { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 10px; padding: 12px; border-radius: 10px; background: #eef4ff }
.lp-always-on__request i { width: 9px; height: 9px; border-radius: 50%; background: #18a466; box-shadow: 0 0 0 5px rgba(24,164,102,.12) }
.lp-always-on__request span { display: grid; gap: 2px }
.lp-always-on__request strong { font-size: 13px }
.lp-always-on__request small { color: var(--lp-muted); font-size: 11px }
.lp-always-on__request > b { color: var(--lp-blue); font-size: 18px }

.lp-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--lp-line);
}

.lp-compare__head,
.lp-compare__row { display: contents }
.lp-compare__head > div { padding: 18px 24px; font-size: 14px; font-weight: 750 }
.lp-compare__head > div:last-child { color: var(--lp-blue) }
.lp-compare__row > div { padding: 22px 24px; border-top: 1px solid var(--lp-line); line-height: 1.55 }
.lp-compare__row > div:first-child { color: var(--lp-muted) }
.lp-compare__row > div:last-child { font-weight: 650 }

.lp-role {
  max-width: 840px;
  margin: 34px auto 0;
  padding: 24px 28px;
  border-radius: 12px;
  background: var(--lp-mist);
  color: var(--lp-blue-dark);
  font-size: 17px;
  font-weight: 650;
  line-height: 1.55;
  text-align: center;
}

.lp-cases { display: grid; gap: clamp(36px, 6vw, 72px) }
.lp-case {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, .55fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}
.lp-case:nth-child(even) { grid-template-columns: minmax(280px, .55fr) minmax(0, 1.45fr) }
.lp-case:nth-child(even) .lp-case__image { order: 2 }
.lp-case__image { overflow: hidden; border-radius: 14px; background: #eceef2 }
.lp-case__image img { width: 100%; height: auto; display: block; aspect-ratio: 3 / 2; object-fit: cover; transition: transform .5s ease }
.lp-case:hover .lp-case__image img { transform: scale(1.018) }
.lp-case__type { margin: 0 0 10px; color: var(--lp-blue); font-size: 13px; font-weight: 750 }
.lp-case h3 { margin: 0; font-size: clamp(26px, 3.4vw, 42px); letter-spacing: -.035em }
.lp-case p { margin: 14px 0 0; color: var(--lp-muted); line-height: 1.65 }
.lp-case dl { margin: 24px 0 0 }
.lp-case dl div { display: grid; grid-template-columns: 74px 1fr; gap: 14px; padding: 11px 0; border-top: 1px solid var(--lp-line) }
.lp-case dt { color: var(--lp-muted); font-size: 13px }
.lp-case dd { margin: 0; font-size: 14px; line-height: 1.45 }

.lp-offer {
  display: grid;
  grid-template-columns: minmax(300px, .7fr) minmax(0, 1.3fr);
  gap: clamp(42px, 7vw, 100px);
  align-items: start;
}

.lp-price {
  position: sticky;
  top: 110px;
}
.lp-price__value { display: block; font-size: clamp(46px, 6vw, 72px); line-height: 1; letter-spacing: -.04em; white-space: nowrap }
.lp-price__time { margin: 12px 0 0; color: rgba(255,255,255,.72); font-size: 17px }
.lp-price .lp-button { margin-top: 28px; background: #fff; color: var(--lp-blue-dark) !important }
.lp-price .lp-button:hover { background: #dfe9fb }

.lp-includes { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 34px }
.lp-include { padding: 18px 0; border-top: 1px solid rgba(255,255,255,.26) }
.lp-include strong { display: block; font-size: 17px }
.lp-include span { display: block; margin-top: 6px; color: rgba(255,255,255,.7); line-height: 1.5; font-size: 14px }
.lp-extra { margin-top: 28px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.26); color: rgba(255,255,255,.72); line-height: 1.6 }

.lp-process {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  counter-reset: process;
}
.lp-step { counter-increment: process; padding: 26px 24px; border-top: 1px solid var(--lp-line) }
.lp-step + .lp-step { border-left: 1px solid var(--lp-line) }
.lp-step::before { content: counter(process); display: block; margin-bottom: 44px; color: var(--lp-blue); font-size: 14px; font-weight: 800 }
.lp-step h3 { margin: 0; font-size: 20px }
.lp-step p { margin: 10px 0 0; color: var(--lp-muted); line-height: 1.55; font-size: 14px }
.lp-step small { display: block; margin-top: 22px; color: var(--lp-blue-dark); font-weight: 700; line-height: 1.45 }
.lp-client-note { margin: 28px 0 0; color: var(--lp-muted); line-height: 1.6 }
.lp-client-note strong { color: var(--lp-ink) }

.lp-trust {
  display: grid;
  grid-template-columns: minmax(280px, .8fr) minmax(0, 1.2fr);
  gap: clamp(36px, 7vw, 90px);
  align-items: center;
}
.lp-trust__photo { overflow: hidden; border-radius: 14px }
.lp-trust__photo img { width: 100%; height: auto; display: block; aspect-ratio: 4 / 5; object-fit: cover; object-position: center }
.lp-trust h2 { max-width: 15ch; margin: 0; font-size: clamp(34px, 5vw, 58px); line-height: 1.04; letter-spacing: -.045em }
.lp-trust__lead { margin: 20px 0 0; max-width: 58ch; color: rgba(255,255,255,.74); font-size: 17px; line-height: 1.65 }
.lp-promises { display: grid; grid-template-columns: 1fr 1fr; gap: 0 28px; margin-top: 34px }
.lp-promise { padding: 18px 0; border-top: 1px solid rgba(255,255,255,.24) }
.lp-promise strong { display: block }
.lp-promise span { display: block; margin-top: 6px; color: rgba(255,255,255,.65); font-size: 14px; line-height: 1.5 }
.lp-person { margin: 18px 0 0; font-size: 14px; color: rgba(255,255,255,.65) }
.lp-person strong { color: #fff }

.lp-faq { max-width: 920px; margin-inline: auto; border-bottom: 1px solid var(--lp-line) }
.lp-faq details { border-top: 1px solid var(--lp-line) }
.lp-faq summary { min-height: 70px; display: flex; align-items: center; justify-content: space-between; gap: 20px; cursor: pointer; font-size: clamp(17px, 2vw, 20px); font-weight: 700 }
.lp-faq summary span { flex: none; width: 30px; height: 30px; display: grid; place-items: center; color: var(--lp-blue); font-size: 26px; font-weight: 400; transition: rotate .2s ease }
.lp-faq details[open] summary span { rotate: 45deg }
.lp-faq details p { max-width: 68ch; margin: 0; padding: 0 54px 24px 0; color: var(--lp-muted); line-height: 1.65 }

.lp-final { padding-block: clamp(76px, 10vw, 120px) }
.lp-final__grid { display: grid; grid-template-columns: minmax(0, .9fr) minmax(380px, .7fr); gap: clamp(40px, 8vw, 110px); align-items: start }
.lp-final h2 { max-width: 15ch; margin: 0; font-size: clamp(38px, 5.5vw, 66px); line-height: 1.01; letter-spacing: -.05em }
.lp-final__copy { max-width: 55ch; margin: 22px 0 0; color: rgba(255,255,255,.72); font-size: 17px; line-height: 1.65 }
.lp-response { margin: 28px 0 0; color: #a9c8ff; font-weight: 700 }

.lp-form { padding: clamp(24px, 4vw, 38px); border-radius: 14px; background: #fff; color: var(--lp-ink) }
.lp-form__field + .lp-form__field { margin-top: 18px }
.lp-form label { display: block; margin-bottom: 7px; font-size: 14px; font-weight: 700 }
.lp-form label span { color: var(--lp-muted); font-weight: 500 }
.lp-form input { width: 100%; min-height: 52px; border: 1px solid #b9bec8; border-radius: 9px; padding: 0 14px; background: #fff; color: var(--lp-ink); font-size: 16px }
.lp-form input::placeholder { color: #666b75; opacity: 1 }
.lp-form input:focus { border-color: var(--lp-blue); outline: 3px solid #d5e3fb; outline-offset: 1px }
.lp-form .lp-button { width: 100%; min-height: 54px; margin-top: 22px }
.lp-form__privacy { margin: 14px 0 0; color: var(--lp-muted); font-size: 12.5px; line-height: 1.5 }
.lp-form__privacy a { text-decoration: underline }
.lp-form__error { margin: 12px 0 0; color: #a32626; font-size: 14px; line-height: 1.45 }
.lp-form__sent { padding: 18px; border-radius: 10px; background: #e6f2e9; color: #174d28; line-height: 1.5 }

.lp-footer { padding: 34px 0 calc(40px + env(safe-area-inset-bottom)); border-top: 1px solid rgba(255,255,255,.16); background: var(--lp-ink); color: #fff }
.lp-footer__grid { display: grid; grid-template-columns: 1.2fr .7fr .7fr; gap: 30px 50px; align-items: start }
.lp-footer p { margin: 8px 0 0; color: rgba(255,255,255,.62); font-size: 13px; line-height: 1.5 }
.lp-footer__contacts { display: grid; gap: 8px }
.lp-footer__contacts a { min-height: 36px; display: inline-flex; align-items: center }
.lp-footer__legal { color: rgba(255,255,255,.62) !important; text-decoration: underline }
.lp-footer-details { color: #fff }
.lp-footer-details summary {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 650;
  list-style: none;
}
.lp-footer-details summary::-webkit-details-marker { display: none }
.lp-footer-details summary::after {
  content: '›';
  color: var(--lp-blue);
  font-size: 20px;
  line-height: 1;
  transition: rotate .2s ease;
}
.lp-footer-details[open] summary::after { rotate: 90deg }
.lp-footer-details summary:focus-visible { outline: 3px solid #8eb4f6; outline-offset: 3px }
.lp-footer-details > div { display: grid; gap: 3px; padding: 5px 0 0 }
.lp-footer-details a {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.lp-footer-details p { margin: 0 }

@media (max-width: 1040px) {
  .lp-nav { display: none }
  .lp-header__cta { margin-left: auto }
  .lp-hero__grid { grid-template-columns: 1fr 1fr; gap: 34px }
  .lp-hero h1 { font-size: clamp(38px, 6vw, 60px) }
  .lp-situations { grid-template-columns: 1fr 1fr }
  .lp-situation:last-child { grid-column: 1 / -1; min-height: 340px }
  .lp-process { grid-template-columns: 1fr 1fr }
  .lp-step:nth-child(3) { border-left: 0 }
  .lp-step:nth-child(n+3) { border-top: 1px solid var(--lp-line) }
}

@media (max-width: 780px) {
  .lp-container { width: min(100% - 32px, 1200px) }
  .lp-header__inner { min-height: 62px }
  .lp-header__cta { min-height: 42px; padding-inline: 14px; font-size: 14px }
  .lp-hero { min-height: auto; padding-block: 34px 74px }
  .lp-hero__grid,
  .lp-anatomy,
  .lp-offer,
  .lp-trust,
  .lp-final__grid { grid-template-columns: 1fr }
  .lp-hero__grid { gap: 44px }
  .lp-hero h1 { max-width: 13ch }
  .lp-showcase { min-height: auto; padding: 0 20px 42px 0 }
  .lp-phone { width: 142px; right: 0; bottom: 0; border-width: 6px; border-radius: 22px }
  .lp-phone img { height: auto }
  .lp-proof-tag { left: -4px; bottom: 24px; max-width: 170px; font-size: 12px }
  .lp-chapter { grid-template-columns: 1fr; gap: 12px }
  .lp-page-map { min-height: 540px }
  .lp-situations { grid-template-columns: 1fr }
  .lp-situation,
  .lp-situation:last-child { min-height: 360px; grid-column: auto }
  .lp-situation:nth-child(2) { transform: none }
  .lp-compare__head { display: none }
  .lp-compare { display: block; border-top: 0 }
  .lp-compare__row { display: block; padding: 20px 0; border-top: 1px solid var(--lp-line) }
  .lp-compare__row > div { padding: 0; border: 0 }
  .lp-compare__row > div:first-child::before { content: 'Сейчас'; display: block; margin-bottom: 4px; color: var(--lp-muted); font-size: 12px; font-weight: 700 }
  .lp-compare__row > div:last-child { margin-top: 14px }
  .lp-compare__row > div:last-child::before { content: 'С лендингом'; display: block; margin-bottom: 4px; color: var(--lp-blue); font-size: 12px; font-weight: 700 }
  .lp-case,
  .lp-case:nth-child(even) { grid-template-columns: 1fr }
  .lp-case:nth-child(even) .lp-case__image { order: 0 }
  .lp-price { position: static }
  .lp-trust__photo { max-height: 600px }
  .lp-footer__grid { grid-template-columns: 1fr 1fr }
  .lp-footer__grid > :first-child { grid-column: 1 / -1 }
}

@media (max-width: 520px) {
  .lp-header__cta { font-size: 0; width: 44px; padding: 0 }
  .lp-header__cta::before { content: '→'; font-size: 20px }
  .lp-hero h1 { font-size: clamp(36px, 11vw, 50px) }
  .lp-actions { flex-direction: column; align-items: stretch }
  .lp-link-button { align-self: flex-start }
  .lp-facts { display: grid; grid-template-columns: 1fr 1fr; gap: 18px }
  .lp-browser__bar { height: 34px }
  .lp-proof-tag { display: none }
  .lp-phone { width: 116px }
  .lp-phone img { height: auto }
  .lp-page-map { min-height: 440px; padding: 12px; gap: 7px }
  .lp-anatomy__item { padding-block: 13px }
  .lp-anatomy__item span { font-size: 14px }
  .lp-includes,
  .lp-process,
  .lp-promises { grid-template-columns: 1fr }
  .lp-step + .lp-step { border-left: 0 }
  .lp-step::before { margin-bottom: 20px }
  .lp-case dl div { grid-template-columns: 64px 1fr }
  .lp-faq details p { padding-right: 0 }
  .lp-final__grid { grid-template-columns: minmax(0, 1fr) }
  .lp-form { padding: 22px 18px }
  .lp-footer__grid { grid-template-columns: 1fr }
  .lp-footer__grid > :first-child { grid-column: auto }
}

@media (prefers-reduced-motion: reduce) {
  .lp-nav a::after,
  .lp-header__cta,
  .lp-button,
  .lp-page-map__part,
  .lp-case__image img,
  .lp-faq summary span { transition: none }
  .lp-case:hover .lp-case__image img { transform: none }
}
