/* ==========================================================================
   ЗемРаботы · evakuparts.online — Landing pages (Yandex Direct PRO)
   Дополнительные стили для одностраничных лендингов под Директ
   ========================================================================== */

:root {
  --y-text: #765600;
}

/* ── Landing layout reset ──────────────────────────────────────────────── */
.lp { background: var(--paper); }
.lp--septik { --lp-hero-image: url("assets/images/case-septic.webp?v=20260825-5"); --lp-hero-pos: center; }
.lp--vodoprovod,
.lp--kanalizaciya { --lp-hero-image: url("assets/images/case-trench.webp?v=20260825-5"); --lp-hero-pos: center; }
.lp--kotlovan { --lp-hero-image: url("assets/images/kana-building.webp?v=20260825-5"); --lp-hero-pos: center; }
.lp--gidromolot,
.lp--demontazh { --lp-hero-image: url("assets/images/case-demolition.webp?v=20260825-5"); --lp-hero-pos: center; }
.lp--ekskavator-pogruzchik { --lp-hero-image: url("assets/images/kana-fleet.webp?v=20260825-5"); --lp-hero-pos: center; }
.lp--uborka-snega { --lp-hero-image: url("assets/images/kana-snow-bucket.webp?v=20260825-5"); --lp-hero-pos: center; }
.lp--planirovka { --lp-hero-image: url("assets/images/case-grading.webp?v=20260825-5"); --lp-hero-pos: center; }
.lp--temirtau { --lp-hero-image: url("assets/images/kana-building.webp?v=20260825-5"); --lp-hero-pos: center; }
.lp--saran { --lp-hero-image: url("assets/images/kana-yard.webp?v=20260825-5"); --lp-hero-pos: center; }
.lp--abay { --lp-hero-image: url("assets/images/case-trench.webp?v=20260825-5"); --lp-hero-pos: center; }
.lp--shahtinsk { --lp-hero-image: url("assets/images/case-grading.webp?v=20260825-5"); --lp-hero-pos: center; }
.lp--goroda { --lp-hero-image: url("assets/images/kana-fleet.webp?v=20260825-5"); --lp-hero-pos: center; }


/* Средний тир: планшеты и ноутбуки получают 960px вместо полноразмерного
   оригинала — экономит до 120 КБ на LCP-картинке. Верхняя граница 1400px
   выбрана по ширине, при которой hero занимает меньше 960 CSS-пикселей. */
@media (min-width: 821px) and (max-width: 1400px) {
  .lp--ekskavator-pogruzchik { --lp-hero-image: url("assets/images/kana-fleet-960.webp?v=20260825-5"); }
  .lp--goroda { --lp-hero-image: url("assets/images/kana-fleet-960.webp?v=20260825-5"); }
  .lp--kotlovan { --lp-hero-image: url("assets/images/kana-building-960.webp?v=20260825-5"); }
  .lp--saran { --lp-hero-image: url("assets/images/kana-yard-960.webp?v=20260825-5"); }
  .lp--temirtau { --lp-hero-image: url("assets/images/kana-building-960.webp?v=20260825-5"); }
  .lp--uborka-snega { --lp-hero-image: url("assets/images/kana-snow-bucket-960.webp?v=20260825-5"); }
}

/* Мобильным отдаём 640px-вариант hero: полноразмерная картинка — это LCP
   лендинга, и на 375px экране 960px-файл тратит впустую больше половины байт */
@media (max-width: 820px) {
  .lp--septik { --lp-hero-image: url("assets/images/case-septic-640.webp?v=20260825-5"); }
  .lp--vodoprovod,
  .lp--kanalizaciya { --lp-hero-image: url("assets/images/case-trench-640.webp?v=20260825-5"); }
  .lp--kotlovan { --lp-hero-image: url("assets/images/kana-building-640.webp?v=20260825-5"); }
  .lp--gidromolot,
  .lp--demontazh { --lp-hero-image: url("assets/images/case-demolition-640.webp?v=20260825-5"); }
  .lp--ekskavator-pogruzchik { --lp-hero-image: url("assets/images/kana-fleet-640.webp?v=20260825-5"); }
  .lp--uborka-snega { --lp-hero-image: url("assets/images/kana-snow-bucket-640.webp?v=20260825-5"); }
  .lp--planirovka { --lp-hero-image: url("assets/images/case-grading-640.webp?v=20260825-5"); }
  .lp--temirtau { --lp-hero-image: url("assets/images/kana-building-640.webp?v=20260825-5"); }
  .lp--saran { --lp-hero-image: url("assets/images/kana-yard-640.webp?v=20260825-5"); }
  .lp--abay { --lp-hero-image: url("assets/images/case-trench-640.webp?v=20260825-5"); }
  .lp--shahtinsk { --lp-hero-image: url("assets/images/case-grading-640.webp?v=20260825-5"); }
  .lp--goroda { --lp-hero-image: url("assets/images/kana-fleet-640.webp?v=20260825-5"); }
}

/* ── Услуги города ──────────────────────────────────────────────────── */
.lp-city-svcs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}
.lp-city-svc {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-areas: "n t" "n d" "n p";
  gap: 2px 14px;
  align-content: start;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: #fff;
  text-decoration: none;
  color: var(--ink);
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.lp-city-svc:hover {
  border-color: var(--ink);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(10, 10, 10, .08);
}
.lp-city-svc__n {
  grid-area: n;
  align-self: start;
  font-family: var(--f-mono);
  font-size: .72rem;
  font-weight: 700;
  color: var(--muted);
  padding-top: 3px;
}
.lp-city-svc__t { grid-area: t; font-weight: 700; font-size: 1rem; line-height: 1.25; }
.lp-city-svc__d { grid-area: d; font-size: .84rem; color: var(--muted); line-height: 1.4; }
.lp-city-svc__p {
  grid-area: p;
  margin-top: 8px;
  font-family: var(--f-mono);
  font-size: .82rem;
  font-weight: 700;
  color: var(--ink);
}
@media (max-width: 900px) {
  .lp-city-svcs { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 560px) {
  .lp-city-svcs { grid-template-columns: minmax(0, 1fr); gap: 10px; }
  .lp-city-svc { padding: 16px 18px; }
}

/* ── Карточки городов (хаб «География работ») ───────────────────────── */
.lp-city-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}
.lp-city-card {
  display: grid;
  gap: 6px;
  padding: 24px 26px;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: #fff;
  text-decoration: none;
  color: var(--ink);
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.lp-city-card:hover {
  border-color: var(--ink);
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(10, 10, 10, .08);
}
.lp-city-card__name {
  font-family: var(--f-display, inherit);
  font-size: 1.5rem;
  font-weight: 900;
  line-height: 1.1;
}
.lp-city-card__dist {
  font-family: var(--f-mono);
  font-size: .78rem;
  font-weight: 700;
  color: var(--muted);
}
.lp-city-card__desc { font-size: .92rem; line-height: 1.5; color: var(--muted); }
.lp-city-card__fee {
  justify-self: start;
  margin-top: 6px;
  padding: 5px 12px;
  border-radius: var(--r-pill);
  background: var(--paper-2);
  font-family: var(--f-mono);
  font-size: .76rem;
  font-weight: 700;
}
@media (max-width: 700px) {
  .lp-city-cards { grid-template-columns: minmax(0, 1fr); }
  .lp-city-card { padding: 20px 22px; }
}

/* ── Хлебные крошки ─────────────────────────────────────────────────── */
.lp-crumbs {
  background: var(--paper);
  border-bottom: 1px solid var(--line-2);
  font-size: 13px;
}
.lp-crumbs ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  margin: 0;
  padding: 10px 0;
  list-style: none;
}
.lp-crumbs li { display: flex; align-items: center; gap: 6px; }
.lp-crumbs li + li::before {
  content: '/';
  color: var(--muted-2);
}
.lp-crumbs a {
  color: var(--muted);
  text-decoration: none;
  min-height: 24px;
  display: inline-flex;
  align-items: center;
}
.lp-crumbs a:hover { color: var(--ink); text-decoration: underline; }
.lp-crumbs [aria-current="page"] { color: var(--ink); font-weight: 600; }

/* ── Compact landing nav ────────────────────────────────────────────── */
.lp-nav {
  position: sticky;
  top: 0;
  z-index: 80;
  padding-top: var(--safe-top);
  background: rgba(245, 243, 239, .96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-2);
}
.lp-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px max(var(--pad), var(--safe-right)) 14px max(var(--pad), var(--safe-left));
}
.lp-nav__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--ink);
}
.lp-nav__mark {
  width: 40px;
  height: 40px;
  border-radius: 9px;
  flex-shrink: 0;
}
.lp-nav__txt strong {
  display: block;
  font-family: var(--f-display);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -.01em;
  line-height: 1;
}
.lp-nav__txt small {
  display: block;
  font-size: 11px;
  color: var(--muted);
  margin-top: 4px;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-weight: 500;
}
.lp-nav__right {
  display: flex;
  align-items: center;
  gap: 12px;
}
.lp-nav__phone {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  gap: 8px;
  font-family: var(--f-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -.01em;
}
.lp-nav__phone svg { color: var(--y-4); }
.lp-nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ink);
  color: #fff;
  padding: 12px 18px;
  border-radius: var(--r-pill);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: transform var(--d-1) var(--ease), background var(--d-1) var(--ease);
}
.lp-nav__cta:hover { background: var(--y); color: var(--ink); transform: translateY(-1px); }
.lp-nav__cta-short { display: none; }

@media (max-width: 820px) {
  .lp-nav__inner { gap: 10px; padding: 10px max(16px, var(--safe-right)) 10px max(16px, var(--safe-left)); }
  .lp-nav__brand { min-width: 0; gap: 8px; }
  .lp-nav__txt { min-width: 0; }
  .lp-nav__txt strong { font-size: 16px; white-space: nowrap; }
  .lp-nav__txt small { font-size: 9px; white-space: nowrap; }
  .lp-nav__right { flex-shrink: 0; gap: 8px; }
  .lp-nav__phone span { display: none; }
  .lp-nav__phone { padding: 8px; background: var(--y); border-radius: var(--r-pill); }
  .lp-nav__phone svg { color: var(--ink); }
  .lp-nav__cta span:not(.lp-nav__cta-short) { display: none; }
  .lp-nav__cta > span:only-child { display: inline; }
  .lp-nav__cta-short { display: inline; }
  .lp-nav__cta { min-height: 44px; padding: 10px 14px; font-size: 13px; white-space: nowrap; }
}
@media (max-width: 390px) {
  .lp-nav__inner { gap: 4px; padding: 8px max(6px, var(--safe-right)) 8px max(6px, var(--safe-left)); }
  .lp-nav__brand { flex: 1 1 auto; min-width: 0; gap: 5px; overflow: hidden; }
  .lp-nav__mark { width: 34px; height: 34px; }
  .lp-nav__txt { overflow: hidden; }
  .lp-nav__txt strong { font-size: 13px; overflow: hidden; text-overflow: ellipsis; }
  .lp-nav__txt small { display: none; }
  .lp-nav__right { gap: 4px; }
  .lp-nav__phone { min-width: 44px; min-height: 44px; padding: 6px; flex: 0 0 44px; }
  .lp-nav__cta { min-height: 44px; padding: 8px 9px; font-size: 12px; }
}
@media (max-width: 330px) {
  .lp-nav__inner { padding-left: max(5px, var(--safe-left)); padding-right: max(5px, var(--safe-right)); }
  .lp-nav__mark { width: 32px; height: 32px; }
  .lp-nav__txt strong { font-size: 12px; }
  .lp-nav__cta { padding-left: 8px; padding-right: 8px; font-size: 11px; }
}

/* ── Hero ─────────────────────────────────────────────────────────────── */
.lp-hero {
  position: relative;
  background: linear-gradient(180deg, #0d0d0d 0%, #161616 100%);
  color: #fff;
  padding: clamp(40px, 6vw, 80px) 0 clamp(60px, 7vw, 100px);
  overflow: hidden;
}
.lp-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.lp-hero__bg::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    linear-gradient(90deg, rgba(10,10,10,.92) 0%, rgba(10,10,10,.78) 46%, rgba(10,10,10,.62) 100%),
    radial-gradient(ellipse at 20% 20%, rgba(255, 199, 0, .14) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 80%, rgba(255, 199, 0, .08) 0%, transparent 60%);
}
.lp-hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: var(--lp-hero-image, url("assets/images/kana-hero.webp?v=20260825-5"));
  background-position: var(--lp-hero-pos, center);
  background-size: cover;
  background-repeat: no-repeat;
  opacity: .54;
}
.lp-hero__grid {
  position: absolute;
  inset: 0;
  z-index: 2;
  background-image:
    linear-gradient(rgba(255,199,0,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,199,0,.05) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: .4;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, #000 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, #000 30%, transparent 100%);
}

.lp-hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}
@media (max-width: 980px) {
  .lp-hero__inner { grid-template-columns: 1fr; }
  .lp-hero__form { width: 100%; max-width: 720px; justify-self: center; }
}

.lp-hero__tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}
.lp-hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border-radius: var(--r-pill);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  color: #fff;
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.lp-hero__tag--accent {
  background: var(--y);
  color: var(--ink);
  border-color: transparent;
  font-weight: 700;
}
.lp-hero__tag i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #25D366;
  box-shadow: 0 0 0 4px rgba(37,211,102,.18);
  animation: lp-pulse 1.6s ease-in-out infinite;
}
@keyframes lp-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .6; transform: scale(1.3); }
}

.lp-hero__h1 {
  font-family: var(--f-display);
  font-size: clamp(30px, 5.6vw, 70px);
  font-weight: 900;
  line-height: .95;
  letter-spacing: -.025em;
  margin: 0 0 24px;
  color: #fff;
  word-break: normal;
  overflow-wrap: normal;
  hyphens: none;
}
/* Убираем явный <br> в заголовке hero на узких экранах */
@media (max-width: 540px) {
  .lp-hero__h1 br { display: none; }
}
.lp-hero__h1 em {
  font-style: normal;
  color: var(--y);
  background: none;
  -webkit-text-fill-color: currentColor;
}
.lp-hero__h1 small {
  display: block;
  font-size: clamp(15px, 1.5vw, 20px);
  font-weight: 500;
  font-family: var(--f-body);
  color: rgba(255,255,255,.7);
  margin-top: 16px;
  letter-spacing: 0;
  line-height: 1.5;
}
.lp-hero__lede {
  max-width: 62ch;
  margin: -6px 0 24px;
  color: rgba(255,255,255,.78);
  font-size: clamp(15px, 1.5vw, 20px);
  line-height: 1.55;
  letter-spacing: 0;
}
.lp-hero__lede strong { color: #fff; }

.lp-hero__usp {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-bottom: 30px;
}
@media (max-width: 520px) {
  .lp-hero__usp { grid-template-columns: 1fr; }
}
.lp-hero__usp-item {
  display: flex;
  gap: 12px;
  padding: 14px 16px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,199,0,.18);
  border-radius: var(--r-sm);
}
.lp-hero__usp-item svg {
  flex-shrink: 0;
  color: var(--y);
  margin-top: 2px;
}
.lp-hero__usp-item strong {
  display: block;
  font-size: 15px;
  color: #fff;
  font-weight: 700;
  margin-bottom: 2px;
}
.lp-hero__usp-item span {
  font-size: 13px;
  color: rgba(255,255,255,.6);
  line-height: 1.4;
}

.lp-hero__cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.lp-hero__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 26px;
  border-radius: var(--r-pill);
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  transition: transform var(--d-1) var(--ease), box-shadow var(--d-1) var(--ease);
}
.lp-hero__btn--main {
  background: var(--y);
  color: var(--ink);
  box-shadow: var(--shad-y);
}
.lp-hero__btn--main:hover { transform: translateY(-2px); box-shadow: 0 24px 60px rgba(255,199,0,.5); }
.lp-hero__btn--wa {
  background: var(--wa);
  color: var(--ink);
}
.lp-hero__btn--wa:hover { transform: translateY(-2px); }

/* Hero form (right side) */
.lp-hero__form {
  background: #fff;
  border-radius: var(--r);
  padding: 28px;
  color: var(--ink);
  box-shadow: var(--shad-lg);
  position: relative;
}
.lp-hero__form::before {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  height: 4px;
  background: linear-gradient(90deg, var(--y-2), var(--y), var(--y-3));
  border-radius: var(--r) var(--r) 0 0;
}
.lp-hero__form-head {
  margin-bottom: 20px;
}
.lp-hero__form-tag {
  display: inline-block;
  background: var(--y);
  color: var(--ink);
  padding: 4px 10px;
  border-radius: var(--r-pill);
  font-size: 11px;
  font-weight: 700;
  font-family: var(--f-mono);
  letter-spacing: .06em;
  margin-bottom: 12px;
  text-transform: uppercase;
}
.lp-hero__form-h {
  font-family: var(--f-display);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -.015em;
  margin-bottom: 6px;
  line-height: 1.15;
}
.lp-hero__form-sub {
  color: var(--muted);
  font-size: 14px;
}

.lp-field {
  display: block;
  margin-bottom: 14px;
}
/* :not(.lp-field__err) — сообщение об ошибке тоже <span> внутри .lp-field,
   и без исключения оно наследовало бы КАПС и разрядку подписи поля */
.lp-field > span:not(.lp-field__err) {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.lp-field input,
.lp-field select,
.lp-field textarea {
  width: 100%;
  min-height: 48px;
  padding: 13px 14px;
  /* --line (#D8D2C2) даёт 1.51:1 к белой заливке поля — ниже нормы 3:1 */
  border: 1.5px solid var(--line-input);
  border-radius: var(--r-sm);
  background: #fff;
  font-size: 16px;
  color: var(--ink);
  transition: border-color var(--d-1) var(--ease);
}
.lp-field input:focus,
.lp-field select:focus,
.lp-field textarea:focus {
  outline: none;
  border-color: var(--y);
  box-shadow: 0 0 0 3px rgba(255,199,0,.15);
}
.lp-field input:focus-visible,
.lp-field select:focus-visible,
.lp-field textarea:focus-visible {
  outline: 3px solid var(--y-text);
  outline-offset: 2px;
}
.lp-field input[aria-invalid="true"],
.lp-field select[aria-invalid="true"],
.lp-field textarea[aria-invalid="true"] {
  border-color: #B93B2E;
  box-shadow: 0 0 0 3px rgba(185,59,46,.14);
}
.lp-field__err {
  display: block;
  margin-top: 6px;
  color: #982F24 !important;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.35;
  text-transform: none;
  letter-spacing: 0;
}
.lp-field textarea { resize: vertical; min-height: 80px; }

.lp-form__submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  min-height: 52px;
  background: var(--ink);
  color: #fff;
  padding: 16px;
  border-radius: var(--r-sm);
  font-weight: 700;
  font-size: 16px;
  border: 0;
  cursor: pointer;
  margin-top: 4px;
  transition: background var(--d-1) var(--ease), transform var(--d-1) var(--ease);
}
.lp-form__submit:hover { background: var(--y); color: var(--ink); transform: translateY(-1px); }

.lp-form__note {
  text-align: center;
  font-size: 12px;
  color: var(--muted);
  margin-top: 10px;
  line-height: 1.5;
}
noscript .lp-form__note {
  position: absolute;
  inset: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0;
  padding: 28px;
  border-radius: inherit;
  background: #fff;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
}
form:has(> noscript .lp-form__note) > :not(noscript) {
  visibility: hidden;
  pointer-events: none;
}
.lp-form__check {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
  margin-top: 12px;
  cursor: pointer;
}
.lp-form__check input {
  margin-top: 2px;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  accent-color: var(--y);
}
.lp-form__check input[aria-invalid="true"] {
  outline: 2px solid var(--red);
  outline-offset: 2px;
}
.lp-form__check:has(input[aria-invalid="true"]) > span:not(.lp-field__err) {
  color: #982F24;
}
.lp-form__check .lp-field__err {
  flex: 1 0 calc(100% - 28px);
  margin: -2px 0 0 28px;
}
.lp-form__check a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ── Trust band ───────────────────────────────────────────────────────── */
.lp-trust {
  background: var(--ink);
  color: #fff;
  padding: 22px 0;
  border-top: 1px solid rgba(255,199,0,.15);
}
.lp-trust__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  align-items: center;
}
@media (max-width: 720px) {
  .lp-trust__inner { grid-template-columns: repeat(2, 1fr); gap: 18px; }
}
.lp-trust__item {
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.08);
}
.lp-trust__item:last-child { border-right: 0; }
@media (max-width: 720px) {
  .lp-trust__item { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.06); padding-bottom: 14px; }
  .lp-trust__item:nth-last-child(-n+2) { border-bottom: 0; padding-bottom: 0; }
}
.lp-trust__num {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: 28px;
  color: var(--y);
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -.02em;
}
.lp-trust__lab {
  font-size: 12px;
  color: rgba(255,255,255,.6);
  letter-spacing: .04em;
  text-transform: uppercase;
}

/* ── Section common ───────────────────────────────────────────────────── */
.lp-sec {
  padding: clamp(50px, 7vw, 90px) 0;
}
.lp-sec--cream {
  background: var(--cream);
}
.lp-sh {
  text-align: center;
  margin-bottom: clamp(30px, 4vw, 56px);
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.lp-sh__meta {
  display: inline-block;
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--muted);
  margin-bottom: 14px;
  padding: 4px 10px;
  background: var(--paper-2);
  border-radius: var(--r-pill);
}
.lp-sh__h {
  font-family: var(--f-display);
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -.02em;
  margin-bottom: 14px;
}
.lp-sh__h em {
  font-style: normal;
  color: var(--y-text);
}
.lp-sh__sub {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.5;
}

/* ── Why us cards ─────────────────────────────────────────────────────── */
.lp-why {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
@media (max-width: 980px) { .lp-why { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .lp-why { grid-template-columns: 1fr; } }
.lp-why__c {
  background: #fff;
  border: 1px solid var(--line-2);
  border-radius: var(--r);
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
  transition: transform var(--d-2) var(--ease), border-color var(--d-2) var(--ease);
}
.lp-why__c:hover {
  transform: translateY(-4px);
  border-color: var(--y);
}
.lp-why__c[data-reveal] {
  transition: opacity .3s ease, transform var(--d-2) var(--ease), border-color var(--d-2) var(--ease);
}
.lp-why__c[data-reveal].is-visible:hover {
  transform: translateY(-4px);
  border-color: var(--y);
}
.lp-why__n {
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--y-text);
  font-weight: 700;
  letter-spacing: .08em;
  margin-bottom: 14px;
}
.lp-why__ic {
  width: 48px;
  height: 48px;
  background: var(--y);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.lp-why__ic svg { color: var(--ink); }
.lp-why__c h3 {
  font-family: var(--f-display);
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 8px;
  letter-spacing: -.01em;
  line-height: 1.2;
}
.lp-why__c p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
}

/* ── Pricing block ────────────────────────────────────────────────────── */
.lp-prices {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 28px;
  align-items: start;
}
@media (max-width: 900px) { .lp-prices { grid-template-columns: 1fr; } }
/* На страницах городов рядом с таблицей нет второго блока, и сноска
   уезжала в пустую правую колонку — там сетка в одну колонку. */
.lp-prices--single { grid-template-columns: minmax(0, 1fr); }

.lp-price-table {
  background: #fff;
  border-radius: var(--r);
  border: 1px solid var(--line-2);
  overflow: hidden;
}
.lp-price-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  padding: 18px 22px;
  border-bottom: 1px solid var(--line-2);
  align-items: center;
}
.lp-price-row:last-child { border-bottom: 0; }
.lp-price-row__t {
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
}
.lp-price-row__t small {
  display: block;
  font-weight: 400;
  font-size: 13px;
  color: var(--muted);
  margin-top: 2px;
}
.lp-price-row__v {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--ink);
  white-space: nowrap;
}
.lp-price-row__v b { color: var(--y-text); }
.lp-price-row--accent { background: linear-gradient(135deg, rgba(255,199,0,.08), rgba(255,199,0,.02)); }

@media (max-width: 420px) {
  .lp-price-row {
    grid-template-columns: minmax(0, 1fr);
    gap: 8px;
    padding: 16px;
    align-items: start;
  }
  .lp-price-row__v {
    justify-self: start;
    max-width: 100%;
    white-space: normal;
    text-align: left;
    font-size: 15px;
    line-height: 1.25;
  }
}

.lp-price-side {
  background: var(--ink);
  color: #fff;
  border-radius: var(--r);
  padding: 28px;
  position: sticky;
  top: 100px;
}
.lp-price-side h3 {
  font-family: var(--f-display);
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 14px;
  line-height: 1.15;
  letter-spacing: -.01em;
  color: #fff;
}
.lp-price-side h3 em { color: var(--y); font-style: normal; }
.lp-price-side p {
  color: rgba(255,255,255,.7);
  margin-bottom: 22px;
  font-size: 14px;
  line-height: 1.55;
}
.lp-price-side ul { margin-bottom: 22px; }
.lp-price-side ul li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 8px;
  font-size: 14px;
  color: rgba(255,255,255,.85);
}
.lp-price-side ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 12px;
  height: 8px;
  border-left: 2px solid var(--y);
  border-bottom: 2px solid var(--y);
  transform: rotate(-45deg);
}

/* ── Process steps ────────────────────────────────────────────────────── */
.lp-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  position: relative;
}
@media (max-width: 980px) { .lp-steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .lp-steps { grid-template-columns: 1fr; } }
.lp-step {
  background: #fff;
  border: 1px solid var(--line-2);
  border-radius: var(--r);
  padding: 24px;
  position: relative;
}
.lp-step__n {
  position: absolute;
  top: -16px;
  left: 24px;
  width: 36px;
  height: 36px;
  background: var(--ink);
  color: var(--y);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 15px;
}
.lp-step h3 {
  font-family: var(--f-display);
  font-size: 17px;
  font-weight: 800;
  margin: 12px 0 10px;
  letter-spacing: -.005em;
  line-height: 1.2;
}
.lp-step p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.55;
}
.lp-step__time {
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--y-text);
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-top: 14px;
  display: inline-block;
  padding: 4px 8px;
  background: rgba(255,199,0,.1);
  border-radius: 4px;
}

/* ── FAQ ──────────────────────────────────────────────────────────────── */
.lp-faq { max-width: 860px; margin: 0 auto; }
.lp-faq__item {
  background: #fff;
  border: 1px solid var(--line-2);
  border-radius: var(--r-sm);
  margin-bottom: 12px;
  overflow: hidden;
  transition: box-shadow var(--d-2) var(--ease);
}
.lp-faq__item[open] { box-shadow: var(--shad); border-color: var(--y); }
.lp-faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-weight: 600;
  font-size: 16px;
}
.lp-faq__item summary:focus-visible {
  outline-offset: -4px;
  border-radius: calc(var(--r-sm) - 1px);
  box-shadow: inset 0 0 0 2px var(--paper);
}
.lp-faq__item summary::-webkit-details-marker { display: none; }
.lp-faq__item summary::after {
  content: '';
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--paper-2);
  flex-shrink: 0;
  position: relative;
  transition: background var(--d-2) var(--ease), transform var(--d-2) var(--ease);
  background-image:
    linear-gradient(currentColor, currentColor),
    linear-gradient(currentColor, currentColor);
  background-size: 12px 2px, 2px 12px;
  background-position: center;
  background-repeat: no-repeat;
}
.lp-faq__item[open] summary::after {
  background-color: var(--y);
  background-size: 12px 2px, 0 12px;
  transform: rotate(180deg);
}
.lp-faq__item-body {
  padding: 0 24px 20px;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
}

/* ── Reviews mini ─────────────────────────────────────────────────────── */
.lp-revs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 900px) { .lp-revs { grid-template-columns: 1fr; } }
/* Одна карточка в сетке на три колонки растягивалась на треть ширины
   и висела в пустоте — для таких страниц ограничиваем ширину. */
.lp-revs--single { grid-template-columns: minmax(0, 640px); justify-content: center; }
.lp-rev {
  background: #fff;
  border: 1px solid var(--line-2);
  border-radius: var(--r);
  padding: 24px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.lp-rev__tag {
  display: inline-block;
  align-self: flex-start;
  max-width: 100%;
  background: var(--y);
  color: var(--ink);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--r-pill);
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.lp-rev p {
  font-size: 15px;
  color: var(--ink);
  line-height: 1.55;
  margin-bottom: 16px;
}
.lp-rev footer {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--line-2);
  padding-top: 16px;
  margin-top: auto;
}
.lp-rev__av {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--y);
  color: var(--ink);
  font-weight: 800;
  font-family: var(--f-display);
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.lp-rev footer strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
}
.lp-rev footer span {
  display: block;
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
}

/* ── Bottom lead ──────────────────────────────────────────────────────── */
.lp-lead {
  background: var(--ink);
  color: #fff;
  padding: clamp(50px, 7vw, 90px) 0;
  position: relative;
  overflow: hidden;
}
.lp-lead::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(255,199,0,.18) 0%, transparent 60%);
  pointer-events: none;
}
.lp-lead__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 980px) { .lp-lead__inner { grid-template-columns: 1fr; } }
.lp-lead__h {
  font-family: var(--f-display);
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -.02em;
  margin-bottom: 18px;
  color: #fff;
}
.lp-lead__h em { color: var(--y); font-style: normal; }
/* На мобильных <br> внутри заголовка убираем — пусть текст переносится естественно */
@media (max-width: 540px) {
  .lp-lead__h br { display: none; }
}
.lp-lead__p {
  color: rgba(255,255,255,.75);
  font-size: 16px;
  line-height: 1.55;
  margin-bottom: 28px;
}
.lp-lead__contact {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}
.lp-lead__phone {
  display: inline-flex;
  flex-direction: column;
  background: var(--y);
  color: var(--ink);
  padding: 14px 24px;
  border-radius: var(--r-sm);
  text-decoration: none;
  font-weight: 800;
  transition: transform var(--d-1) var(--ease);
}
.lp-lead__phone:hover { transform: translateY(-2px); }
.lp-lead__phone small { font-size: 11px; font-weight: 600; opacity: .7; letter-spacing: .04em; text-transform: uppercase; }
.lp-lead__phone span { font-size: 18px; font-family: var(--f-display); letter-spacing: -.01em; }

.lp-lead__form {
  background: #fff;
  border-radius: var(--r);
  padding: 28px;
  color: var(--ink);
  box-shadow: var(--shad-lg);
  position: relative;
}
.lp-form__split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
@media (max-width: 520px) {
  .lp-form__split { grid-template-columns: minmax(0, 1fr); }
}
.lp-lead__form-h {
  font-family: var(--f-display);
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 18px;
  letter-spacing: -.015em;
}

/* ── Footer simple ────────────────────────────────────────────────────── */
.lp-foot {
  background: #050505;
  color: rgba(255,255,255,.6);
  padding: 38px 0 28px;
  border-top: 1px solid rgba(255,255,255,.05);
}
.lp-foot__inner {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}
.lp-foot__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  text-decoration: none;
}
.lp-foot__brand strong {
  font-family: var(--f-display);
  font-size: 16px;
}
.lp-foot__contacts {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 14px;
}
.lp-foot__contacts a { color: #fff; text-decoration: none; }
.lp-foot__contacts a:hover { color: var(--y); }
.lp-foot__bot {
  border-top: 1px solid rgba(255,255,255,.05);
  padding-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  font-size: 12px;
}
.lp-foot__nav { display: flex; gap: 18px; flex-wrap: wrap; }
.lp-foot__nav a { color: rgba(255,255,255,.55); }
.lp-foot__nav a:hover { color: var(--y); }
.lp-foot__legal {
  width: 100%;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,.05);
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 12px;
}
.lp-foot__legal a { color: rgba(255,255,255,.55); text-decoration: none; }
.lp-foot__legal a:hover { color: var(--y); }

/* ── Sticky mobile CTA ────────────────────────────────────────────────── */
.lp-sticky {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  background: rgba(10,10,10,.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255,199,0,.2);
  padding: 10px max(10px, var(--safe-right)) calc(10px + var(--safe-bottom)) max(10px, var(--safe-left));
  gap: 8px;
  visibility: visible;
  transition: opacity .25s ease, transform .25s ease, visibility 0s linear 0s;
}
.lp-sticky.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(100%);
  transition-delay: 0s, 0s, .25s;
}
@media (max-width: 820px) {
  .lp-sticky { display: flex; }
  body.lp { padding-bottom: calc(70px + var(--safe-bottom)); }
}
@media (max-width: 820px) and (max-height: 560px) and (orientation: landscape) {
  .lp-sticky { display: none; }
  body.lp { padding-bottom: 0; }
}
.lp-sticky a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 48px;
  padding: 12px;
  border-radius: var(--r-sm);
  font-weight: 700;
  text-decoration: none;
  font-size: 14px;
}
.lp-sticky__call {
  background: var(--y);
  color: var(--ink);
}
.lp-sticky__wa {
  background: var(--wa);
  color: var(--ink);
}

/* ── Inline checklist ─────────────────────────────────────────────────── */
.lp-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  max-width: 840px;
  margin: 0 auto;
}
@media (max-width: 720px) { .lp-list { grid-template-columns: 1fr; } }
.lp-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 18px;
  background: #fff;
  border: 1px solid var(--line-2);
  border-radius: var(--r-sm);
  font-size: 15px;
  line-height: 1.4;
}
.lp-list li::before {
  content: '✓';
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  background: var(--y);
  color: var(--ink);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 13px;
  margin-top: 1px;
}

/* ── Geo block ────────────────────────────────────────────────────────── */
.lp-geo {
  text-align: center;
  margin-top: 36px;
  padding: 22px;
  background: var(--paper-2);
  border-radius: var(--r);
}
.lp-geo strong {
  display: block;
  font-family: var(--f-display);
  font-size: 18px;
  margin-bottom: 8px;
}
.lp-geo span {
  font-size: 14px;
  color: var(--muted);
}
.lp-geo__cities {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-top: 14px;
}
/* Города-ссылки ведут на свои страницы, текущий город остаётся <b> —
   оформление у них общее, отличается только поведение при наведении */
.lp-geo__cities b,
.lp-geo__cities a {
  background: #fff;
  padding: 6px 14px;
  border-radius: var(--r-pill);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  border: 1px solid var(--line-2);
  text-decoration: none;
  min-height: 24px;
  display: inline-flex;
  align-items: center;
}
.lp-geo__cities a:hover {
  border-color: var(--ink);
  background: var(--y);
}
.lp-geo__cities a:focus-visible {
  outline: 3px solid var(--y);
  outline-offset: 2px;
}

/* ── Inline scroll fix ────────────────────────────────────────────────── */
html { scroll-padding-top: calc(90px + var(--safe-top)); scroll-behavior: smooth; }
section[id] { scroll-margin-top: calc(90px + var(--safe-top)); }

/* ── Skip-to-content (a11y) ───────────────────────────────────────────── */
.lp-skip {
  position: absolute;
  top: -80px;
  left: 8px;
  background: var(--y);
  color: var(--ink);
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 700;
  z-index: 999;
  text-decoration: none;
  transition: top .2s ease;
}
.lp-skip:focus {
  top: calc(8px + var(--safe-top));
  left: max(8px, var(--safe-left));
  outline: 3px solid var(--ink);
  outline-offset: 2px;
}

/* ── Видимые focus-states (a11y) ──────────────────────────────────────── */
/* Базовые :focus-visible правила — в styles.css (грузится на всех страницах) */
.lp-nav__cta:focus-visible,
.lp-hero__btn:focus-visible,
.lp-form__submit:focus-visible {
  outline-offset: 4px;
}
.lp-nav__phone,
.lp-nav__cta,
.lp-hero__btn,
.lp-form__submit,
.lp-form__check,
.lp-sticky a,
.lp-faq__item summary {
  touch-action: manipulation;
  -webkit-tap-highlight-color: rgba(255,199,0,.24);
}
@media (max-width: 820px) {
  .lp-nav__phone { min-width: 44px; min-height: 44px; justify-content: center; }
}

/* ── Уменьшенные анимации (a11y) ──────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  [data-reveal]:not(.is-visible),
  [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
  }
}

@media (forced-colors: active) {
  .lp-hero__h1 em {
    background: none !important;
    color: CanvasText !important;
    -webkit-text-fill-color: CanvasText !important;
  }
  .lp-field input[aria-invalid="true"],
  .lp-field select[aria-invalid="true"],
  .lp-field textarea[aria-invalid="true"],
  .lp-form__check input[aria-invalid="true"] {
    border-color: Mark !important;
    outline-color: Mark !important;
  }
}

/* ── ARIA live region для статуса формы (визуально скрыт) ─────────────── */
.lp-sr {
  position: absolute !important;
  width: 1px !important; height: 1px !important;
  padding: 0 !important; margin: -1px !important;
  overflow: hidden !important; clip: rect(0,0,0,0) !important;
  white-space: nowrap !important; border: 0 !important;
}

/* ── Полированные принт-стили ─────────────────────────────────────────── */
@media print {
  *, *::before, *::after { background: transparent !important; color: #000 !important; box-shadow: none !important; text-shadow: none !important; }
  .lp-nav, .lp-sticky, .lp-hero__form, .lp-lead__form,
  .lp-hero__cta, .lp-hero__btn, .lp-form__submit,
  .lp-foot, #zr-cookie, .lp-trust, .lp-lead__contact { display: none !important; }
  body { font-size: 11pt; line-height: 1.5; }
  .lp-hero { padding: 20pt 0; background: #fff !important; color: #000 !important; }
  .lp-hero__h1, .lp-sh__h, .lp-lead__h, h1, h2, h3 { color: #000 !important; }
  .lp-hero__h1 em, .lp-sh__h em, .lp-lead__h em, .accent-text { color: #000 !important; font-style: italic; }
  .lp-hero__h1 em, .lp-sh__h em, .lp-lead__h em, .accent-text, .accent-text-dark { background: none !important; -webkit-text-fill-color: #000 !important; }
  a[href^="http"]::after,
  a[href^="tel:"]::after,
  a[href^="mailto:"]::after { content: " (" attr(href) ")"; font-size: 9pt; color: #555 !important; }
  a[href^="#"]::after { content: ""; }
  a[href^="tel:"]::after { content: " " attr(href); }
  .lp-faq__item-body { display: block !important; }
  details { display: block !important; }
  details > summary { font-weight: 700; }
  .lp-price-table, .lp-step, .lp-rev, .lp-why__c { page-break-inside: avoid; border: 1px solid #ccc !important; }
  section { page-break-after: auto; }
  .lp-hero::after { content: "evakuparts.online"; display: block; margin-top: 12pt; font-size: 9pt; color: #555 !important; }
}
