/* ═══════════════════════════════════════════════════════════
   ЛЕНДИНГ ARTELO

   Отдельный файл, а не дополнение к app.css: у рабочего экрана
   и у страницы продукта разные задачи. В CRM плотность важнее
   воздуха — там работают часами. Здесь наоборот: человек читает
   один раз и решает, стоит ли пробовать.

   Токены общие (tokens.css) — цвет, шрифты и радиусы у продукта
   и у сайта обязаны совпадать, иначе после регистрации возникает
   ощущение, что попал не туда.
   ═══════════════════════════════════════════════════════════ */

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

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-ui);
  font-size: 17px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* ─── Поверхности браузера ────────────────────────────────
   Выделение, каретка, полосы прокрутки и кольцо фокуса приходят
   с настройками браузера и принадлежат чужой палитре. Здесь они
   принадлежат нашей — это дешевле всего и заметнее всего. */
::selection { background: var(--brand-100); color: var(--brand-800); }
html { scrollbar-color: var(--n-200) transparent; scrollbar-width: thin; }
::-webkit-scrollbar { width: 11px; height: 11px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb {
  background: var(--n-200); border-radius: var(--r-full);
  border: 3px solid var(--bg);
}
::-webkit-scrollbar-thumb:hover { background: var(--n-300); }

:where(a, button, summary, [tabindex]):focus-visible {
  outline: 2px solid var(--brand-400);
  outline-offset: 3px;
  border-radius: var(--r-sm);
}

.lp-skip {
  position: absolute; left: 12px; top: -60px; z-index: 100;
  background: var(--brand-500); color: #fff;
  padding: 10px 18px; border-radius: var(--r);
  text-decoration: none; font-weight: 600;
  transition: top var(--t);
}
.lp-skip:focus { top: 12px; }

.lp-vh {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip-path: inset(50%); white-space: nowrap;
}

.lp-wrap { width: min(1140px, 100% - 56px); margin-inline: auto; }
.lp-narrow { width: min(720px, 100% - 56px); }
/* Узкая мера, но левый край на общей сетке страницы: центрированный
   блок посреди левосторонней вёрстки читается как чужая вставка. */
.lp-column > * { max-width: 760px; }

/* ─── Шапка ───────────────────────────────────────────── */
.lp-nav {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--bg) 86%, transparent);
  backdrop-filter: blur(14px) saturate(1.4);
  border-bottom: 1px solid transparent;
  transition: border-color var(--t), background var(--t);
}
.lp-nav.is-stuck {
  border-bottom-color: var(--border);
  background: color-mix(in srgb, var(--bg) 94%, transparent);
}
.lp-nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 28px; height: 70px;
}
/* Знак нарисован через currentColor — без явного цвета ссылка красит
   его в синий по умолчанию браузера, и фирменный зелёный теряется. */
.lp-logo {
  display: flex; align-items: center; gap: 9px;
  text-decoration: none;
  color: var(--brand-500);
}
.lp-logo svg { width: 26px; height: 26px; }
.lp-logo-text {
  font-family: var(--font-display);
  font-weight: 800; font-size: 20px; letter-spacing: .06em;
  color: var(--text);
}
.lp-logo-suffix {
  font-size: 11px; font-weight: 700; letter-spacing: .16em;
  color: var(--text-2); margin-left: 2px;
}
.lp-nav-links { display: flex; gap: 26px; }
.lp-nav-links a {
  position: relative;
  color: var(--text-2); text-decoration: none;
  font-size: 15px; padding-block: 4px;
  transition: color var(--t-fast);
}
.lp-nav-links a::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0;
  height: 1.5px; background: var(--brand-400);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--t);
}
.lp-nav-links a:hover { color: var(--brand-600); }
.lp-nav-links a:hover::after { transform: scaleX(1); }
.lp-nav-actions { display: flex; gap: 8px; align-items: center; }

/* ─── Кнопки ──────────────────────────────────────────── */
.lp-btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 11px 20px;
  border-radius: var(--r);
  font-family: var(--font-ui);
  font-size: 15px; font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background var(--t-fast), border-color var(--t-fast),
              box-shadow var(--t-fast), transform 80ms ease;
}
.lp-btn:active { transform: translateY(1px); }
.lp-btn-primary {
  background: var(--brand-500); color: #fff;
  box-shadow: 0 1px 2px rgba(6, 29, 22, .22);
}
.lp-btn-primary:hover {
  background: var(--brand-600);
  box-shadow: 0 6px 18px -8px rgba(6, 29, 22, .5);
}
.lp-btn-outline {
  background: var(--surface); color: var(--brand-600);
  border-color: var(--border-strong);
}
.lp-btn-outline:hover { border-color: var(--brand-300); background: var(--brand-50); }
.lp-btn-ghost { background: transparent; color: var(--text-2); }
.lp-btn-ghost:hover { color: var(--text); }
.lp-btn-lg { padding: 16px 32px; font-size: 17px; }
.lp-btn-block { width: 100%; }

/* ─── Типографика ─────────────────────────────────────── */
.lp-h1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 6.4vw, 74px);
  line-height: 1.02;
  letter-spacing: -.035em;
  font-weight: 800;
  text-wrap: balance;
  margin: 0 0 26px;
}
.lp-muted { color: var(--text-2); }
.lp-h2 {
  font-family: var(--font-display);
  font-size: clamp(29px, 3.8vw, 44px);
  line-height: 1.1; letter-spacing: -.028em; font-weight: 800;
  text-wrap: balance;
  margin: 0 0 18px;
}
.lp-lead {
  font-size: clamp(18px, 1.9vw, 21px);
  line-height: 1.5;
  color: var(--text-2);
  max-width: 60ch;
  margin: 0 0 38px;
}
.lp-section-lead {
  font-size: 18px; color: var(--text-2);
  max-width: 62ch; margin: 0 0 clamp(40px, 5vw, 64px);
}

/* ─── Первый экран ────────────────────────────────────── */
.lp-hero {
  position: relative;
  padding: clamp(64px, 9vw, 116px) 0 0;
  /* Тёплый свет сверху — фирменное «бумага при тёплом свете».
     Тепло только в фоне: в тексте и границах его быть не должно. */
  background:
    radial-gradient(1200px 520px at 8% -10%,
                    color-mix(in srgb, var(--brand-50) 82%, transparent), transparent 66%),
    var(--bg);
}
.lp-cta-row {
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
  margin-bottom: clamp(48px, 7vw, 84px);
}
.lp-cta-note { color: var(--text-2); font-size: 15px; max-width: 34ch; }

/* Кадр продукта. Обрезан снизу краем секции — картинка продолжается
   за границу экрана, а не висит прямоугольником посреди воздуха. */
.lp-shot-wide {
  margin-bottom: -1px;
  border-radius: var(--r-xl) var(--r-xl) 0 0;
  border: 1px solid var(--border);
  border-bottom: none;
  background: var(--surface);
  padding: 10px 10px 0;
  box-shadow: 0 32px 64px -40px rgba(6, 29, 22, .45),
              0 8px 20px -14px rgba(6, 29, 22, .28);
  overflow: hidden;
}
.lp-shot-wide picture { display: block; }
.lp-shot-wide img {
  display: block; width: 100%; height: auto;
  border-radius: var(--r-lg) var(--r-lg) 0 0;
}

/* ─── Секции ──────────────────────────────────────────── */
.lp-section { padding: clamp(72px, 9vw, 128px) 0; }

/* ─── «Вы это говорили» ───────────────────────────────────
   Не карточки: это реплики. Карточка запирает фразу в коробку
   и уравнивает её с соседней, а здесь важно, что их четыре
   и они разные. Строки разделены линией, как в протоколе. */
.lp-pain-section { border-top: 1px solid var(--border); }
.lp-pains {
  margin-top: clamp(36px, 4vw, 56px);
  border-top: 1px solid var(--border);
}
.lp-pain {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: clamp(20px, 4vw, 64px);
  align-items: baseline;
  padding: clamp(26px, 3.2vw, 40px) 0;
  border-bottom: 1px solid var(--border);
}
.lp-said {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(20px, 2.3vw, 27px);
  line-height: 1.24; letter-spacing: -.02em; font-weight: 700;
  text-wrap: balance;
}
.lp-then {
  margin: 0; color: var(--text-2); font-size: 16px;
  max-width: 52ch;
}

/* ─── История про артель ──────────────────────────────── */
.lp-story {
  padding: clamp(72px, 9vw, 128px) 0;
  background:
    radial-gradient(900px 420px at 85% 0%,
                    color-mix(in srgb, var(--brand-700) 55%, transparent), transparent 70%),
    var(--brand-900);
  color: #D3DCD8;
}
.lp-story .lp-h2 { color: #fff; margin-bottom: 26px; }
.lp-story p { margin: 0 0 18px; max-width: 56ch; }
.lp-story b { color: #FFFFFF; font-weight: 650; }

.lp-story-inner {
  display: grid; gap: clamp(40px, 6vw, 84px);
  grid-template-columns: 1.02fr .98fr;
  align-items: start;
}
/* Не полоса слева и не рамка: акцент делает кегль и цвет.
   Цветная линейка на выноске — украшение, которое ничего не сообщает. */
.lp-punch {
  margin: 30px 0 0;
  font-family: var(--font-display);
  font-size: clamp(19px, 2vw, 23px);
  line-height: 1.34; letter-spacing: -.015em;
  color: #EFF3F1;
}
.lp-punch b { display: block; margin-top: 8px; color: var(--brand-200); }

.lp-story-map { display: flex; flex-direction: column; }
.lp-map-row {
  display: grid;
  grid-template-columns: minmax(112px, auto) 20px 1fr;
  align-items: center;
  gap: 14px;
  padding: 17px 0;
  border-bottom: 1px solid color-mix(in srgb, #fff 13%, transparent);
}
.lp-map-row:first-child { border-top: 1px solid color-mix(in srgb, #fff 13%, transparent); }
.lp-map-row .icon {
  width: 20px; height: 20px;
  color: color-mix(in srgb, #fff 38%, transparent);
}
.lp-map-old {
  font-family: var(--font-display);
  font-weight: 700; font-size: 16px;
  color: var(--brand-200);
}
.lp-map-new { font-size: 15px; color: #DAE2DE; }

/* ─── Что внутри: показ ───────────────────────────────── */
.lp-showcase {
  display: flex; flex-direction: column;
  gap: clamp(64px, 8vw, 112px);
}
.lp-show {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(0, 1.12fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
/* Перевёрнутый ряд меняет и пропорции: иначе снимок попадает в узкую
   колонку и оказывается вдвое мельче соседнего. */
.lp-show-flip { grid-template-columns: minmax(0, 1.12fr) minmax(0, .88fr); }
.lp-show-flip .lp-show-text { order: 2; }
.lp-show-wide { grid-template-columns: 1fr; gap: clamp(28px, 4vw, 44px); }
.lp-show-wide .lp-show-text { max-width: 68ch; }

.lp-show-text h3 {
  font-family: var(--font-display);
  font-size: clamp(23px, 2.4vw, 30px);
  line-height: 1.16; letter-spacing: -.025em; font-weight: 800;
  text-wrap: balance;
  margin: 0 0 16px;
}
.lp-show-text p { margin: 0 0 14px; color: var(--text-2); max-width: 50ch; }
.lp-show-text p:last-child { margin-bottom: 0; }

.lp-show-shot {
  border-radius: var(--r-xl);
  border: 1px solid var(--border);
  background: var(--surface);
  padding: 9px;
  box-shadow: 0 24px 48px -34px rgba(6, 29, 22, .40),
              0 4px 12px -8px rgba(6, 29, 22, .20);
}
.lp-show-shot img {
  display: block; width: 100%; height: auto;
  border-radius: var(--r-lg);
}
/* Карточка объекта высокая: показываем верх и уводим низ в затухание,
   иначе одна картинка задаёт высоту всему ряду. */
.lp-shot-tall { position: relative; max-height: 560px; overflow: hidden; }
.lp-shot-tall::after {
  content: ''; position: absolute; inset: auto 0 0 0; height: 130px;
  background: linear-gradient(to bottom,
              transparent, color-mix(in srgb, var(--bg) 96%, transparent));
  pointer-events: none;
}

/* ─── Что внутри: остальное ───────────────────────────── */
.lp-more {
  list-style: none; padding: 0;
  margin: clamp(64px, 8vw, 112px) 0 0;
  display: grid; gap: 1px;
  /* Две колонки, а не четыре: при четырёх строка сжимается до тридцати
     знаков и текст начинает рваться на каждом слове. */
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
}
.lp-more li {
  background: var(--surface);
  padding: 26px 24px;
  font-size: 15px; color: var(--text-2);
}
.lp-more b {
  display: block; margin-bottom: 7px;
  font-family: var(--font-display); font-size: 17px;
  letter-spacing: -.01em; color: var(--text);
}

/* ─── Сравнение ───────────────────────────────────────── */
.lp-compare-section { background: var(--surface-2); }
.lp-table-scroll {
  overflow-x: auto; -webkit-overflow-scrolling: touch;
  border-radius: var(--r-xl);
}
/* Колонки заданы жёстко: при автоширине первая колонка растягивалась
   по самой длинной формулировке, а колонки со значениями сжимались
   до состояния, в котором строку глазами не пройти. */
.lp-compare {
  width: 100%; min-width: 640px;
  table-layout: fixed;
  border-collapse: separate; border-spacing: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  font-size: 15px;
  font-variant-numeric: tabular-nums;
}
.lp-compare col.lp-w-what { width: 34%; }
.lp-compare col.lp-w-val  { width: 22%; }

.lp-compare th, .lp-compare td {
  padding: 16px 18px;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}
/* Значения по центру: строку сравнивают поперёк, и рваный левый край
   заставляет искать каждое слово заново. */
.lp-compare td { text-align: center; }
.lp-compare tbody th { text-align: left; }

.lp-compare thead th {
  font-size: 12px; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  color: var(--text-2);
  background: var(--surface-2);
  text-align: center;
  padding-block: 13px;
}
.lp-compare thead th:first-child { text-align: left; }

.lp-compare tbody tr:last-child th,
.lp-compare tbody tr:last-child td { border-bottom: none; }
.lp-compare tbody th {
  font-weight: 500; color: var(--text);
  line-height: 1.35;
}
.lp-compare tbody tr:hover th,
.lp-compare tbody tr:hover td { background: var(--surface-2); }
.lp-compare tbody tr:hover .lp-col-us { background: var(--brand-100); }

/* Своя колонка выделена подложкой и боковыми линиями: получается
   сплошной столбец, который видно, не читая заголовок. В ч/б и на
   печати он тоже остаётся заметным, в отличие от цветного текста. */
.lp-col-us {
  background: var(--brand-50);
  border-inline: 1px solid var(--brand-200);
}
.lp-compare thead .lp-col-us {
  background: var(--brand-500); color: #fff;
  font-family: var(--font-display); font-size: 15px;
  letter-spacing: .06em; text-transform: none;
  border-inline-color: var(--brand-500);
}
.lp-compare tbody .lp-col-us { font-weight: 600; }

.lp-yes   { color: var(--brand-600); font-weight: 600; }
.lp-no    { color: var(--text-2); }
.lp-maybe { color: var(--warn); }

.lp-compare-note {
  margin-top: 18px; font-size: 14px; color: var(--text-2); max-width: 66ch;
}

/* ─── Вопросы ─────────────────────────────────────────── */
.lp-faq {
  margin-top: clamp(28px, 3vw, 40px);
  border-top: 1px solid var(--border);
}
.lp-faq details { border-bottom: 1px solid var(--border); }
.lp-faq summary {
  padding: 22px 4px;
  font-weight: 600; font-size: 17px;
  cursor: pointer;
  list-style: none;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  transition: color var(--t-fast);
}
.lp-faq summary:hover { color: var(--brand-600); }
.lp-faq summary::-webkit-details-marker { display: none; }
.lp-faq summary .icon {
  width: 20px; height: 20px; flex: none;
  color: var(--text-2);
  transition: transform var(--t), color var(--t-fast);
}
.lp-faq details[open] summary .icon {
  transform: rotate(180deg); color: var(--brand-500);
}
.lp-faq-body { padding: 0 4px 24px; }
.lp-faq-body p {
  margin: 0; color: var(--text-2); font-size: 16px; max-width: 64ch;
}

/* ─── Цены ────────────────────────────────────────────── */
.lp-price-section { background: var(--surface-2); }

.lp-trial-line {
  display: flex; align-items: flex-start; gap: 12px;
  margin: 0 0 clamp(28px, 3vw, 40px);
  padding: 18px 20px;
  background: var(--brand-50);
  border-radius: var(--r-lg);
  font-size: 16px; color: var(--brand-800);
  max-width: 72ch;
}
.lp-trial-line .icon { width: 20px; height: 20px; margin-top: 2px; color: var(--brand-500); }
.lp-trial-line b { font-weight: 700; }

.lp-price-grid {
  display: grid; gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  align-items: stretch;
}
.lp-price-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 32px 28px 28px;
  display: flex; flex-direction: column;
}
.lp-price-popular {
  border-color: var(--brand-500);
  box-shadow: 0 20px 44px -30px rgba(6, 29, 22, .55),
              0 2px 8px -4px rgba(6, 29, 22, .18);
}
.lp-price-flag {
  position: absolute; top: -12px; left: 28px;
  background: var(--brand-500); color: #fff;
  font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  padding: 5px 13px; border-radius: var(--r-full);
  white-space: nowrap;
}
.lp-price-card h3 {
  font-family: var(--font-display);
  font-size: 23px; letter-spacing: -.02em; margin: 0 0 6px;
}
.lp-price-tag { color: var(--text-2); font-size: 15px; margin: 0 0 22px; min-height: 46px; }
.lp-price-value {
  font-family: var(--font-display);
  font-size: 46px; font-weight: 800; letter-spacing: -.04em;
  line-height: 1; margin-bottom: 26px;
  font-variant-numeric: tabular-nums;
}
.lp-price-unit {
  font-size: 15px; font-weight: 500; letter-spacing: 0;
  color: var(--text-2); margin-left: 5px;
}
.lp-price-list { list-style: none; padding: 0; margin: 0 0 26px; flex: 1; }
.lp-price-list li {
  display: flex; align-items: flex-start; gap: 10px;
  padding-bottom: 11px;
  font-size: 15px; color: var(--text-2);
}
.lp-price-list .icon {
  width: 16px; height: 16px; margin-top: 4px;
  color: var(--brand-400); stroke-width: 2.4;
}
.lp-price-note {
  margin: 10px 0 0; text-align: center;
  font-size: 13px; color: var(--text-2);
}

/* ─── Финал ───────────────────────────────────────────── */
.lp-final {
  padding: clamp(76px, 9vw, 124px) 0;
  text-align: center;
  background:
    radial-gradient(760px 340px at 50% 0%,
                    color-mix(in srgb, var(--brand-50) 88%, transparent), transparent 68%),
    var(--bg);
  border-top: 1px solid var(--border);
}
.lp-final p { color: var(--text-2); font-size: 18px; max-width: 52ch; margin: 0 auto 32px; }
.lp-final-note { font-size: 15px !important; margin-top: 20px !important; }

/* ─── Подвал ──────────────────────────────────────────── */
.lp-footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 52px 0 44px;
}
.lp-footer-inner {
  display: grid; gap: 32px;
  grid-template-columns: 1.5fr 1fr 1fr;
  align-items: start;
}
.lp-footer-logo svg { width: 22px; height: 22px; }
.lp-footer-logo .lp-logo-text { font-size: 17px; }
.lp-footer-tag { color: var(--text-2); font-size: 15px; margin: 12px 0 0; max-width: 34ch; }
.lp-footer-links { display: flex; flex-direction: column; gap: 11px; }
.lp-footer-links a { color: var(--text-2); text-decoration: none; font-size: 15px; }
.lp-footer-links a:hover { color: var(--brand-600); text-decoration: underline;
                           text-underline-offset: 3px; }
.lp-footer-hours { color: var(--text-2); font-size: 14px; }

/* ─── Появление ───────────────────────────────────────────
   Один приём на всю страницу: подъём с уходом размытия.
   Класс lp-anim ставит скрипт — без него всё видно сразу. */
.lp-anim .lp-reveal > * {
  opacity: 0;
  transform: translateY(20px);
  filter: blur(7px);
  transition: opacity .62s cubic-bezier(.16, 1, .3, 1),
              transform .62s cubic-bezier(.16, 1, .3, 1),
              filter .62s cubic-bezier(.16, 1, .3, 1);
}
.lp-anim .lp-reveal.is-in > * { opacity: 1; transform: none; filter: none; }
.lp-anim .lp-reveal.is-in > *:nth-child(2) { transition-delay: 70ms; }
.lp-anim .lp-reveal.is-in > *:nth-child(3) { transition-delay: 130ms; }

.lp-anim .lp-rise {
  opacity: 0;
  transform: translateY(24px);
  filter: blur(8px);
  transition: opacity .72s cubic-bezier(.16, 1, .3, 1),
              transform .72s cubic-bezier(.16, 1, .3, 1),
              filter .72s cubic-bezier(.16, 1, .3, 1);
}
.lp-anim.lp-ready .lp-rise { opacity: 1; transform: none; filter: none; }
.lp-rise-2 { transition-delay: 90ms; }
.lp-rise-3 { transition-delay: 170ms; }
.lp-rise-4 { transition-delay: 250ms; }

/* ─── Узкие экраны ────────────────────────────────────── */
@media (max-width: 980px) {
  .lp-story-inner { grid-template-columns: 1fr; }
  .lp-show, .lp-show-flip { grid-template-columns: 1fr; gap: 28px; }
  .lp-show-flip .lp-show-text { order: 0; }
  .lp-shot-tall { max-height: 460px; }
  .lp-footer-inner { grid-template-columns: 1fr 1fr; }
  .lp-nav-links { display: none; }
}

@media (max-width: 760px) {
  body { font-size: 16px; }
  .lp-wrap, .lp-narrow { width: calc(100% - 36px); }
  .lp-nav-inner { height: 62px; gap: 12px; }
  /* На 390px шапка не помещалась и кнопка уезжала за край экрана.
     Убираем то, что несёт меньше всего: приписку CRM и лишний воздух. */
  .lp-logo-suffix { display: none; }
  .lp-nav-actions .lp-btn { padding: 9px 14px; font-size: 14px; }
  .lp-hero { padding-top: 52px; }
  .lp-cta-row { gap: 14px; }
  .lp-btn-lg { width: 100%; }
  .lp-cta-note { max-width: none; }
  .lp-shot-wide { padding: 7px 7px 0; }
  .lp-pain { grid-template-columns: 1fr; gap: 10px; }
  .lp-map-row { grid-template-columns: 1fr; gap: 3px; padding: 14px 0; }
  .lp-map-row .icon { display: none; }
  .lp-footer-inner { grid-template-columns: 1fr; }
  .lp-price-flag { left: 50%; transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
  }
}

/* Оговорка под снимками. Тише основного текста, но не серым в серое:
   это юридически значимая строка, её должно быть видно. */
.lp-shot-note {
  margin: 14px 0 0;
  font-size: 13.5px;
  color: var(--text-2);
  max-width: 68ch;
}

/* На узком экране таблица уезжает вбок. Обрезанный столбец виден,
   но не всякий поймёт, что его можно подтянуть пальцем. */
.lp-scroll-hint { display: none; }
@media (max-width: 760px) {
  .lp-scroll-hint {
    display: block;
    margin: 10px 0 0;
    font-size: 13px;
    color: var(--text-2);
  }
}
