﻿/* ===========================================================
   ПТК — крановое оборудование. Дизайн-система.
   Светлая тема · янтарный акцент. Шапка и футер — тёмные.
   Палитра и компоненты живут в .lp-слое ниже (--lp-*).
   Здесь — только глобальные сбросы и базовые переменные.
   =========================================================== */

:root{
  --bg:   #ffffff;
  --bg-2: #f5f6f8;
  --ink:  #1b2132;
  --sans: 'Manrope', system-ui, sans-serif;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family:var(--sans);
  background:var(--bg);
  color:var(--ink);
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
}
img{ display:block; max-width:100%; }
a{ color:inherit; text-decoration:none; }

/* ===========================================================
   ГЛАВНАЯ — лендинг в стиле референса (тёмный + горчица).
   Префикс .lp-  ·  самодостаточный слой.
   =========================================================== */
:root{
  --lp-dark:   #1b1b1d;
  --lp-dark-2: #222225;
  --lp-dark-3: #2b2b2f;
  --lp-amber:  #f4a82a;
  --lp-amber-hi:#ffba3f;
  --lp-ink:    #1f2024;
  --lp-soft:   #6c707a;
  --lp-line:   #e7e8ec;
  --lp-line-d: rgba(255,255,255,.10);
  --lp-display:'Oswald','Arial Narrow',sans-serif;
}
.lp{ margin:0; font-family:'Manrope',system-ui,sans-serif; color:var(--lp-ink); background:#fff; font-size:15.5px; line-height:1.62; -webkit-font-smoothing:antialiased; }

/* крупные заголовки — конденсированный Oswald КАПСОМ */
.lp-hero-inner h1,
.lp-feat-head h2,
.lp-cta-text h2{ font-family:var(--lp-display); text-transform:uppercase; font-weight:700; letter-spacing:.005em; }
.lp *{ box-sizing:border-box; }
.lp img{ display:block; max-width:100%; }
.lp a{ color:inherit; text-decoration:none; }
.lp-wrap{ max-width:1200px; margin:0 auto; padding:0 clamp(20px,5vw,48px); }
.lp-amber{ color:var(--lp-amber); }
.lp-sq{ width:42px; height:42px; background:var(--lp-amber); flex:none; display:block; }

/* ---------- buttons ---------- */
.lp-btn{ display:inline-flex; align-items:center; gap:8px; font-weight:700; font-size:13.5px; padding:12px 20px; border:0; cursor:pointer; border-radius:3px; transition:.16s; white-space:nowrap; }
.lp-btn svg{ width:15px; height:15px; }
.lp-btn-lg{ padding:15px 26px; font-size:14.5px; }
.lp-btn-amber{ background:var(--lp-amber); color:#1c1407; }
.lp-btn-amber:hover{ background:var(--lp-amber-hi); }
.lp-btn-ghost{ background:transparent; color:#fff; border:1.5px solid rgba(255,255,255,.3); }
.lp-btn-ghost:hover{ border-color:var(--lp-amber); color:var(--lp-amber); }

/* ---------- header ---------- */
.lp-head{ position:sticky; top:0; z-index:60; background:#000; }
.lp-nav{ display:flex; align-items:center; gap:26px; height:68px; }
.lp-brand{ flex:none; display:flex; align-items:center; }
.lp-brand img{ height:46px; width:auto; }
.lp-menu{ display:flex; align-items:center; gap:24px; }
.lp-menu a{ color:rgba(255,255,255,.8); font-size:13.5px; font-weight:600; position:relative; padding:24px 0; letter-spacing:.01em; }
.lp-menu a:hover{ color:#fff; }
.lp-menu a.active{ color:var(--lp-amber); }
.lp-menu a.active::after{ content:""; position:absolute; left:0; right:0; bottom:0; height:3px; background:var(--lp-amber); }
.lp-spacer{ flex:1; }
.lp-phone{ display:flex; align-items:center; gap:11px; color:#fff; white-space:nowrap; }
.lp-phone-ic{ width:34px; height:34px; border-radius:50%; background:var(--lp-amber); display:grid; place-items:center; flex:none; }
.lp-phone-ic svg{ width:15px; height:15px; color:#1c1407; }
.lp-phone-text{ display:flex; flex-direction:column; line-height:1.15; color:#fff; font-weight:800; font-size:17px; letter-spacing:.01em; }
.lp-phone-text small{ font-weight:500; font-size:11px; color:rgba(255,255,255,.5); letter-spacing:.01em; margin-top:2px; }
.lp-btn-call{ text-transform:uppercase; font-weight:800; letter-spacing:.05em; padding:14px 24px; }
.lp-burger{ display:none; background:var(--lp-amber); border:0; color:#1c1407; padding:10px 12px; border-radius:3px; cursor:pointer; }
.lp-burger svg{ width:22px; height:22px; display:block; }

/* ---------- mobile overlay ---------- */
.lp-mobile{ display:none; position:fixed; inset:68px 0 0 0; z-index:55; background:rgba(18,18,20,.98); flex-direction:column; padding:24px clamp(20px,5vw,48px) 40px; overflow-y:auto; }
.lp-mobile.open{ display:flex; }
.lp-mobile a{ color:rgba(255,255,255,.8); font-weight:700; font-size:20px; padding:14px 0; border-bottom:1px solid rgba(255,255,255,.1); }
.lp-mobile a.active{ color:var(--lp-amber); }
.lp-mobile-phone{ color:#fff !important; margin-top:8px; border:0 !important; }

/* ---------- hero (фото на весь фон) ----------
   --hero-size  : масштаб фоновой картинки (cover, или 100%/120% и т.п.)
   --hero-pos-y : базовая вертикаль кадра; параллакс прибавляет к ней сдвиг (reveal.js).
   Оба слоя (фон + кран) используют ОДНИ И ТЕ ЖЕ значения → совмещены попиксельно. */
.lp-hero{ position:relative; background:var(--lp-dark); color:#fff; min-height:74vh;
  --hero-size:cover; --hero-pos-y:68%; }
.lp-hero-bg{ position:absolute; inset:0; background-color:var(--lp-dark);
  background-image:url('assets/cran4-bg.jpg');
  background-size:var(--hero-size); background-position:center var(--hero-pos-y); background-repeat:no-repeat; }
/* затемнение слева — только под текстом, чтобы кран справа оставался ярким */
.lp-hero-bg::after{ content:""; position:absolute; inset:0; background:linear-gradient(90deg, rgba(20,20,22,.97) 0%, rgba(20,20,22,.82) 28%, rgba(20,20,22,.25) 52%, transparent 70%); }
/* кран поверх затемнения — ТА ЖЕ схема размера/позиции, что у фона → не съезжает.
   z-index выше панели табов → крюк свисает поверх; pointer-events:none → клики проходят к табам */
.lp-hero-crane{ position:absolute; inset:0; z-index:12; pointer-events:none;
  background-image:url('assets/cran4-crane.png');
  background-size:var(--hero-size); background-position:center var(--hero-pos-y); background-repeat:no-repeat;
  /* затухание слева — балка над текстом становится прозрачной (как было у crane-right).
     Короткая зона перехода → более резкий обрыв слева. */
  -webkit-mask-image:linear-gradient(90deg, transparent 0%, transparent 44%, #000 54%);
          mask-image:linear-gradient(90deg, transparent 0%, transparent 44%, #000 54%); }
/* затемнение слева (под краном, над фоном) — для читаемости текста */
.lp-hero-shade{ position:absolute; inset:0; z-index:7; pointer-events:none;
  background:linear-gradient(90deg, rgba(20,20,22,.96) 0%, rgba(20,20,22,.8) 24%, rgba(20,20,22,.25) 44%, transparent 58%); }
.lp-hero-inner{ position:relative; z-index:8; padding-top:clamp(70px,9vw,120px); padding-bottom:clamp(90px,11vw,150px); }
.lp-hero-inner h1{ font-weight:800; font-size:clamp(34px,4.8vw,54px); line-height:1.24; letter-spacing:-.015em; word-spacing:-.08em; margin:0 0 16px; max-width:20ch; }
/* крупное «ПТК» — отдельной строкой сверху */
.lp-ptk{ display:block; font-size:1.5em; line-height:.95; margin-bottom:.08em; }
/* слоган с диагональной оранжевой полосой-подчёркиванием */
.lp-hero-tagline{ position:relative; display:inline-block; font-size:18px; font-weight:800; color:#ff9416; letter-spacing:.01em; margin:0 0 18px !important; padding-bottom:12px; }
.lp-hero-tagline::after{ content:""; position:absolute; left:0; right:0; bottom:0; height:9px;
  background:repeating-linear-gradient(-45deg, var(--lp-amber) 0 9px, transparent 9px 18px); }
.lp-hero-inner p{ font-size:16px; color:rgba(255,255,255,.78); max-width:54ch; margin:0; font-weight:500; }
.lp-hero-cta{ margin-top:30px; display:flex; gap:14px; flex-wrap:wrap; }

/* hero tab panel — наезжает на правый нижний угол hero */
.lp-tabs-wrap{ position:absolute; left:0; right:0; bottom:0; z-index:8; transform:translateY(54%); pointer-events:none; }
.lp-tabs{ width:min(54%,640px); margin-left:auto; pointer-events:auto; }
.lp-tabbar{ display:flex; background:#000; }
.lp-tabbar button{ position:relative; flex:1; border:0; background:#000; color:#fff; font-family:'Manrope',sans-serif; font-weight:800; font-size:12px; letter-spacing:.08em; text-transform:uppercase; padding:20px 8px; cursor:pointer; transition:color .15s; }
/* тонкие разделители между табами */
.lp-tabbar button + button::before{ content:""; position:absolute; left:0; top:24%; bottom:24%; width:1px; background:rgba(255,255,255,.12); }
/* наведение / активный таб — оранжевый текст + оранжевая нижняя линия */
.lp-tabbar button:hover,
.lp-tabbar button.on{ color:var(--lp-amber); }
.lp-tabbar button.on::after{ content:""; position:absolute; left:0; right:0; bottom:0; height:3px; background:var(--lp-amber); }
.lp-tab-photo{ position:relative; height:210px; background-size:cover; background-position:center; background-color:#121212; transition:background-image .25s ease; }
.lp-tab-photo::after{ content:""; position:absolute; inset:0; background:linear-gradient(0deg, rgba(12,12,12,.9) 0%, rgba(12,12,12,.45) 55%, rgba(12,12,12,.55) 100%); }
.lp-tab-caption{ position:absolute; left:0; right:0; bottom:0; z-index:1; padding:22px 26px; }
.lp-tab-caption h3{ font-family:var(--lp-display); text-transform:uppercase; font-weight:700; font-size:22px; letter-spacing:.02em; color:#fff; margin:0 0 5px; }
.lp-tab-caption p{ font-size:13.5px; color:rgba(255,255,255,.82); margin:0; font-weight:500; max-width:46ch; }

/* ---------- sections ---------- */
.lp-section{ padding:clamp(56px,7vw,92px) 0; }
.lp-section:first-of-type{ }
/* первая секция после hero — большой верхний отступ под наехавшую панель */
.lp-hero + .lp-section{ padding-top:clamp(110px,12vw,150px); }

.lp-feat-head{ display:flex; gap:18px; align-items:flex-start; }
.lp-feat-head .lp-sq{ margin-top:5px; }
/* квадрат по вертикальному центру заголовка (форма заявки + блок «о компании») */
.lp-cta-text .lp-feat-head,
.lp-about-head .lp-feat-head{ align-items:center; }
.lp-cta-text .lp-feat-head .lp-sq,
.lp-about-head .lp-feat-head .lp-sq{ margin-top:0; }
.lp-feat-head h2{ font-weight:800; font-size:clamp(26px,3.4vw,38px); line-height:1.12; letter-spacing:-.01em; margin:0; }

/* о компании — заголовок слева, текст справа */
.lp-about{ display:grid; grid-template-columns:1fr 1.15fr; gap:clamp(40px,6vw,80px); align-items:start; }
.lp-about-head{ margin-top:-60px; }
.lp-about-body{ padding-top:64px; }
.lp-about-body p{ font-size:15.5px; color:var(--lp-soft); margin:0 0 18px; }
.lp-about-body p b{ color:var(--lp-ink); }
.lp-about-body .lp-checks{ margin:0 0 18px; }
.lp-about-body .lp-checks li{ font-weight:600; }
.lp-about-photos{ display:grid; grid-template-columns:1fr; gap:18px; margin-top:34px; }
.lp-about-photo{ aspect-ratio:16/9; background-size:cover; background-position:center; background-color:var(--lp-dark-3); border-radius:8px; }

/* checklist (амбер-кружки с галочкой) */
.lp-checks{ list-style:none; margin:0; padding:0; display:flex; flex-direction:column; gap:12px; }
.lp-checks li{ display:flex; gap:12px; align-items:flex-start; font-size:14px; font-weight:700; color:var(--lp-ink); }
.lp-checks-caps li{ letter-spacing:.03em; font-size:13px; }
.lp-checks li::before{ content:""; flex:none; width:21px; height:21px; border-radius:50%; border:2px solid var(--lp-amber); background:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M20 6L9 17l-5-5' fill='none' stroke='%23f4a82a' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/11px no-repeat; }

/* направления работы — сетка карточек 4×2 */
.lp-dirs{ display:grid; grid-template-columns:repeat(4,1fr); gap:1px; background:var(--lp-line); border:1px solid var(--lp-line); }
.lp-dir{ background:#fff; padding:30px 26px; transition:.18s; position:relative; }
.lp-dir::before{ content:""; position:absolute; top:0; left:0; width:0; height:3px; background:var(--lp-amber); transition:width .2s; }
.lp-dir:hover{ background:#fffdf7; }
.lp-dir:hover::before{ width:100%; }
.lp-dir h3{ font-family:var(--lp-display); text-transform:uppercase; font-weight:600; font-size:18px; letter-spacing:.01em; margin:0 0 10px; color:var(--lp-ink); }
.lp-dir p{ margin:0; font-size:14px; color:var(--lp-soft); }

/* process — 5 нумерованных этапов */
.lp-process{ display:grid; grid-template-columns:repeat(5,1fr); gap:0; border-top:2px solid var(--lp-line); }
.lp-pstep{ position:relative; padding:30px 26px 6px 0; }
.lp-pstep:not(:last-child){ border-right:1px solid var(--lp-line); padding-right:26px; }
.lp-pstep:not(:first-child){ padding-left:26px; }
.lp-pstep::before{ content:""; position:absolute; top:-2px; left:0; width:44px; height:2px; background:var(--lp-amber); }
.lp-ptop{ display:flex; align-items:center; gap:12px; margin-bottom:14px; }
.lp-pic{ display:inline-flex; color:var(--lp-amber); }
.lp-pic svg{ width:30px; height:30px; }
.lp-pnum{ display:block; font-family:var(--lp-display); font-weight:700; font-size:46px; line-height:1; color:var(--lp-amber); margin-bottom:14px; }
.lp-pstep h3{ font-family:var(--lp-display); text-transform:uppercase; font-weight:600; font-size:18px; letter-spacing:.01em; margin:0 0 8px; color:var(--lp-ink); }
.lp-pstep p{ margin:0; font-size:14px; color:var(--lp-soft); }

/* reviews */
.lp-reviews{ display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.lp-review{ background:#fff; border:1px solid var(--lp-line); border-radius:8px; padding:30px 28px; display:flex; flex-direction:column; box-shadow:0 10px 30px -22px rgba(20,25,40,.4); }
.lp-review-stars{ color:var(--lp-amber); font-size:16px; letter-spacing:3px; margin-bottom:16px; }
.lp-review-text{ font-size:14.5px; line-height:1.65; color:var(--lp-ink); font-weight:500; margin:0 0 22px; flex:1; }
.lp-review-author{ display:flex; align-items:center; gap:13px; border-top:1px solid var(--lp-line); padding-top:18px; }
.lp-review-av{ width:44px; height:44px; flex:none; border-radius:50%; background:#f3f1ec; display:grid; place-items:center; font-weight:800; font-size:13px; color:var(--lp-amber); }
.lp-review-info{ display:flex; flex-direction:column; font-size:12.5px; color:var(--lp-soft); }
.lp-review-info b{ font-size:14.5px; color:var(--lp-ink); font-weight:700; margin-bottom:2px; }

/* reviews — Яндекс виджет */
#reviews .lp-feat-head{ align-items:center; }
#reviews .lp-feat-head .lp-sq{ margin-top:0; }
.lp-reviews-yandex{ display:flex; flex-direction:column; align-items:center; gap:22px; }
.lp-yandex-widget{ width:100%; max-width:660px; height:660px; overflow:auto; border:1px solid var(--lp-line); border-radius:8px; background:#fff; box-shadow:0 10px 30px -22px rgba(20,25,40,.4); }
.lp-yandex-more{ display:inline-flex; align-items:center; gap:10px; font-weight:700; font-size:15px; color:var(--lp-ink); text-decoration:none; border:1px solid var(--lp-line); border-radius:8px; padding:13px 24px; background:#fff; transition:.16s; }
.lp-yandex-more:hover{ color:var(--lp-amber); box-shadow:0 10px 28px -16px rgba(20,25,40,.4); }
.lp-yandex-more svg{ width:18px; height:18px; }

/* clients */
.lp-clients-lead{ color:var(--lp-soft); font-size:15px; max-width:80ch; margin:0 auto 40px; text-align:center; }
.lp-clients-lead b{ color:var(--lp-ink); }
.lp-clients{ display:grid; grid-template-columns:repeat(6,1fr); gap:18px; }
.lp-client{ background:#fff; border:1px solid var(--lp-line); border-radius:8px; height:96px; display:grid; place-items:center; padding:20px 26px; transition:.16s; }
.lp-client:hover{ box-shadow:0 10px 28px -16px rgba(20,25,40,.4); }
.lp-client img{ max-width:100%; max-height:56px; object-fit:contain; filter:grayscale(1); opacity:.7; transition:.2s; }
.lp-client:hover img{ filter:grayscale(0); opacity:1; }

/* CTA form */
.lp-cta{ background:var(--lp-dark); color:#fff; }
.lp-cta-grid{ display:grid; grid-template-columns:1fr 1fr; gap:54px; align-items:center; }
.lp-cta-text .lp-sq{ margin-bottom:20px; }
.lp-cta-text h2{ font-weight:800; font-size:clamp(26px,3.4vw,38px); line-height:1.14; letter-spacing:-.01em; margin:0 0 16px; }
.lp-cta-text > p{ color:rgba(255,255,255,.75); font-size:15px; margin:0 0 24px; max-width:46ch; }
.lp-cta .lp-checks li{ color:#fff; }
.lp-form{ background:var(--lp-dark-2); border:1px solid var(--lp-line-d); border-radius:8px; padding:clamp(24px,3vw,34px); }
.lp-form-2{ display:grid; grid-template-columns:1fr 1fr; gap:14px; margin-bottom:14px; }
.lp-field{ display:flex; flex-direction:column; gap:7px; margin-bottom:14px; }
.lp-field label{ font-size:11.5px; font-weight:700; letter-spacing:.05em; text-transform:uppercase; color:rgba(255,255,255,.55); }
.lp-field input, .lp-field textarea{ background:var(--lp-dark-3); border:1.5px solid var(--lp-line-d); color:#fff; padding:12px 14px; border-radius:5px; font-family:'Manrope',sans-serif; font-size:14.5px; }
.lp-field input:focus, .lp-field textarea:focus{ outline:none; border-color:var(--lp-amber); }
.lp-agree{ display:flex; gap:10px; align-items:flex-start; font-size:12px; color:rgba(255,255,255,.6); margin:2px 0 18px; cursor:pointer; }
.lp-agree input{ margin-top:2px; width:16px; height:16px; flex:none; accent-color:var(--lp-amber); cursor:pointer; }
.lp-agree a{ color:#fff; text-decoration:underline; text-underline-offset:2px; }
.lp-agree a:hover{ color:var(--lp-amber); }

/* footer */
.lp-foot{ background:#151517; color:rgba(255,255,255,.6); padding:58px 0 24px; }
.lp-foot-grid{ display:grid; grid-template-columns:2fr 1fr 1fr; gap:clamp(40px,8vw,120px); justify-content:space-between; }
.lp-foot .lp-brand img{ height:44px; margin-bottom:14px; }
.lp-foot-about{ font-size:13.5px; max-width:38ch; margin:0 0 10px; color:rgba(255,255,255,.7); }
.lp-foot-tag{ font-size:13px; font-weight:800; color:var(--lp-amber); margin:0; letter-spacing:.01em; }
.lp-foot h4{ color:#fff; font-weight:800; font-size:14.5px; margin:0 0 15px; }
.lp-foot ul{ list-style:none; margin:0; padding:0; display:flex; flex-direction:column; gap:9px; font-size:13.5px; }
.lp-foot a:hover{ color:var(--lp-amber); }
/* отделы в футере */
.lp-foot-depts{ display:grid; grid-template-columns:repeat(4,1fr); gap:30px; margin-top:42px; padding-top:32px; border-top:1px solid var(--lp-line-d); }
.lp-dept h5{ color:#fff; font-weight:800; font-size:13px; letter-spacing:.02em; margin:0 0 12px; text-transform:uppercase; }
.lp-dept a{ display:block; font-size:13.5px; color:rgba(255,255,255,.6); margin-bottom:6px; }
.lp-dept a:hover{ color:var(--lp-amber); }
.lp-foot-bottom{ display:flex; justify-content:space-between; gap:18px; flex-wrap:wrap; border-top:1px solid var(--lp-line-d); margin-top:42px; padding-top:20px; font-size:12px; color:rgba(255,255,255,.4); }
@media(max-width:880px){ .lp-foot-depts{ grid-template-columns:1fr 1fr; gap:24px; } }
@media(max-width:560px){ .lp-foot-depts{ grid-template-columns:1fr; } }

/* ---------- responsive ---------- */
@media(max-width:1080px){
  .lp-menu{ display:none; }
  .lp-burger{ display:block; }
  .lp-phone-text small{ display:none; }
  .lp-tabs{ width:min(70%,560px); }
}
@media(max-width:880px){
  /* на мобильном убираем наложенный кран-слой (кран остаётся на фоне),
     усиливаем затемнение для читаемости текста */
  .lp-hero-crane{ display:none; }
  /* убираем общий слой затемнения (он темнил и табы внизу) */
  .lp-hero-shade{ display:none; }
  /* затемнение только за текстом hero */
  .lp-hero-inner{ position:relative; z-index:8; }
  .lp-hero-inner::before{ content:""; position:absolute; inset:-40px -100vw; z-index:-1;
    background:linear-gradient(180deg, rgba(20,20,22,.88) 0%, rgba(20,20,22,.5) 100%); }
  .lp-tabs-wrap{ position:static; transform:none; margin-top:40px; }
  .lp-tabs{ width:100%; margin:0; }
  .lp-hero-inner{ padding-bottom:48px; }
  .lp-hero + .lp-section{ padding-top:clamp(70px,9vw,100px); }
  .lp-dirs{ grid-template-columns:1fr 1fr; }
  .lp-about{ grid-template-columns:1fr; gap:24px; }
  .lp-about-head{ margin-top:0; }
  .lp-about-body{ padding-top:0; }
  .lp-about-photos{ grid-template-columns:1fr; }
  .lp-process{ grid-template-columns:1fr 1fr; gap:0 0; }
  .lp-pstep{ border-right:0 !important; border-bottom:1px solid var(--lp-line); padding:26px 20px 22px; }
  .lp-pstep:nth-child(odd){ border-right:1px solid var(--lp-line) !important; }
  .lp-pstep::before{ left:20px; }
  .lp-reviews{ grid-template-columns:1fr; gap:18px; }
  .lp-clients{ grid-template-columns:repeat(3,1fr); }
  .lp-cta-grid{ grid-template-columns:1fr; gap:32px; }
  .lp-foot-grid{ grid-template-columns:1fr 1fr; }
}
@media(max-width:560px){
  .lp-tabbar button{ font-size:10px; padding:15px 5px; letter-spacing:0; }
  .lp-process{ grid-template-columns:1fr; }
  .lp-pstep, .lp-pstep:nth-child(odd){ border-right:0 !important; }
  .lp-clients{ grid-template-columns:repeat(2,1fr); }
  .lp-dirs{ grid-template-columns:1fr; }
  .lp-form-2{ grid-template-columns:1fr; }
  .lp-foot-grid{ grid-template-columns:1fr; }
  .lp-phone{ display:none; }
  .lp-nav .lp-btn-amber:not(.lp-burger){ display:none; }
}


/* ===========================================================
   Внутренние страницы — page-hero, крошки (тёмный + горчица)
   =========================================================== */
.lp-page-hero{ position:relative; background:var(--lp-dark); color:#fff; padding:clamp(46px,6vw,72px) 0 clamp(40px,5vw,60px); overflow:hidden; }
.lp-page-hero::before{ content:""; position:absolute; inset:0; background:radial-gradient(120% 140% at 100% 0%, rgba(244,168,42,.16), transparent 58%); }
.lp-page-hero .lp-wrap{ position:relative; }
.lp-crumbs{ display:flex; gap:9px; align-items:center; font-size:12.5px; color:rgba(255,255,255,.5); margin-bottom:16px; }
.lp-crumbs a:hover{ color:var(--lp-amber); }
.lp-crumbs span{ color:rgba(255,255,255,.3); }
.lp-page-hero h1{ font-family:var(--lp-display); text-transform:uppercase; font-weight:700; font-size:clamp(32px,4.6vw,52px); line-height:1.04; margin:0; }
.lp-page-hero p{ color:rgba(255,255,255,.72); font-size:16px; max-width:64ch; margin:16px 0 0; }

/* ===========================================================
   Каталог
   =========================================================== */
.lp-cat-layout{ display:grid; grid-template-columns:280px 1fr; gap:42px; align-items:start; }
.lp-filters{ position:sticky; top:90px; display:flex; flex-direction:column; gap:18px; }
.lp-fbox{ background:#fff; border:1px solid var(--lp-line); border-radius:10px; padding:22px; }
.lp-fbox h4{ font-family:var(--lp-display); text-transform:uppercase; font-size:13px; letter-spacing:.06em; margin:0 0 14px; color:var(--lp-ink); font-weight:600; }
.lp-opt{ display:flex; align-items:center; gap:10px; padding:8px 0; color:var(--lp-soft); font-size:14.5px; cursor:pointer; font-weight:500; }
.lp-opt:hover{ color:var(--lp-ink); }
.lp-opt .lp-cb{ width:19px; height:19px; border:1.5px solid #c8ccd6; border-radius:4px; flex:none; display:grid; place-items:center; }
.lp-opt.on .lp-cb{ background:var(--lp-amber); border-color:var(--lp-amber); }
.lp-opt.on .lp-cb::after{ content:""; width:9px; height:9px; background:#1c1407; clip-path:polygon(14% 44%,0 65%,42% 100%,100% 16%,82% 0,38% 67%); }
.lp-opt.on{ color:var(--lp-ink); font-weight:700; }
.lp-opt .lp-ct{ margin-left:auto; font-size:12.5px; color:#9aa0ad; background:var(--lp-line); padding:2px 8px; border-radius:6px; }
.lp-range{ display:flex; align-items:center; gap:10px; }
.lp-range input{ width:100%; background:var(--bg-2,#f6f6f4); border:1.5px solid var(--lp-line); color:var(--lp-ink); padding:10px 12px; border-radius:7px; font-size:13px; }
.lp-range span{ color:var(--lp-soft); }

.lp-cat-top{ display:flex; align-items:center; justify-content:space-between; margin-bottom:22px; gap:16px; flex-wrap:wrap; }
.lp-count{ font-size:14px; color:var(--lp-soft); font-weight:500; }
.lp-sort{ display:flex; gap:8px; }
.lp-sort .s{ font-size:13px; font-weight:600; padding:9px 16px; border:1.5px solid var(--lp-line); border-radius:7px; color:var(--lp-soft); cursor:pointer; transition:.12s; }
.lp-sort .s:hover{ color:var(--lp-ink); border-color:#b9bdc8; }
.lp-sort .s.on{ color:#1c1407; border-color:var(--lp-amber); background:var(--lp-amber); }

.lp-prod-list{ display:flex; flex-direction:column; border:1px solid var(--lp-line); border-radius:12px; overflow:hidden; }
.lp-prow{ background:#fff; border-bottom:1px solid var(--lp-line); transition:background .14s; }
.lp-prow:last-child{ border-bottom:0; }
.lp-prow.open{ background:#fffdf5; }
.lp-row-main{ display:grid; grid-template-columns:1fr auto auto auto; gap:0; align-items:center; cursor:pointer; min-height:78px; }
.lp-row-info{ padding:16px 22px; min-width:0; }
.lp-row-info h3{ font-weight:800; font-size:16.5px; margin:0 0 8px; color:var(--lp-ink); line-height:1.2; }
.lp-chips{ display:flex; gap:7px; flex-wrap:wrap; }
.lp-chip{ font-size:12px; color:var(--lp-soft); background:#f3f3f0; border:1px solid var(--lp-line); padding:4px 10px; border-radius:5px; }
.lp-row-avail{ padding:0 20px; white-space:nowrap; }
.lp-row-avail .av{ font-size:13px; font-weight:700; }
.lp-row-avail .av.yes{ color:#1b7f3b; }
.lp-row-avail .av.no{ color:#9aa0ad; }
.lp-row-price{ padding:0 24px; text-align:right; white-space:nowrap; }
.lp-row-price .p{ font-weight:800; font-size:19px; color:var(--lp-ink); }
.lp-row-price .p-sub{ font-size:12px; color:#9aa0ad; margin-top:3px; }
.lp-row-toggle{ padding:0 22px 0 12px; }
.lp-row-toggle .tog{ width:36px; height:36px; border-radius:50%; border:1.5px solid var(--lp-line); background:#f6f6f4; display:grid; place-items:center; transition:.2s; }
.lp-row-toggle .tog svg{ width:16px; height:16px; transition:transform .25s; color:var(--lp-soft); }
.lp-prow.open .lp-row-toggle .tog{ background:var(--lp-amber); border-color:var(--lp-amber); }
.lp-prow.open .lp-row-toggle .tog svg{ transform:rotate(180deg); color:#1c1407; }

.lp-row-detail{ display:none; border-top:1px solid #f0d98a; background:#fffbea; padding:28px 32px; grid-template-columns:1fr 1fr auto; gap:32px; align-items:start; }
.lp-prow.open .lp-row-detail{ display:grid; }
.lp-row-detail .d-desc{ font-size:14.5px; color:#444; line-height:1.7; }
.lp-row-detail .d-desc strong{ display:block; font-weight:800; font-size:12px; letter-spacing:.07em; text-transform:uppercase; color:#9aa0ad; margin-bottom:8px; }
.lp-row-detail .d-specs strong{ display:block; font-weight:800; font-size:12px; letter-spacing:.07em; text-transform:uppercase; color:#9aa0ad; margin-bottom:10px; }
.lp-row-detail .d-specs table{ width:100%; border-collapse:collapse; }
.lp-row-detail .d-specs td{ padding:6px 0; font-size:13.5px; border-bottom:1px solid #ece3c8; }
.lp-row-detail .d-specs td:first-child{ color:#9aa0ad; font-weight:600; width:50%; }
.lp-row-detail .d-specs td:last-child{ font-weight:700; color:var(--lp-ink); }
.lp-row-detail .d-specs tr:last-child td{ border-bottom:0; }
.lp-row-detail .d-action{ display:flex; flex-direction:column; align-items:flex-end; gap:12px; }
.lp-row-detail .big-price{ font-weight:800; font-size:26px; color:var(--lp-ink); text-align:right; }
.lp-row-detail .big-price small{ display:block; font-size:13px; font-weight:500; color:#9aa0ad; }
.lp-row-detail .d-pdf{ font-size:13px; color:var(--lp-soft); text-decoration:underline; background:none; border:0; cursor:pointer; padding:4px 0; font-weight:600; }

.lp-minicta{ display:flex; align-items:center; justify-content:space-between; gap:24px; flex-wrap:wrap; }

@media(max-width:1100px){
  .lp-cat-layout{ grid-template-columns:1fr; }
  .lp-filters{ position:static; }
  .lp-row-avail{ display:none; }
  .lp-row-detail{ grid-template-columns:1fr 1fr; }
}
@media(max-width:680px){
  .lp-row-main{ grid-template-columns:1fr auto; }
  .lp-row-price{ display:none; }
  .lp-row-detail{ grid-template-columns:1fr; }
  .lp-row-detail .d-action{ align-items:flex-start; }
}


/* ===========================================================
   Услуги — направления, почему мы
   =========================================================== */
.lp-svc{ display:grid; grid-template-columns:auto 1fr; gap:30px; border:1px solid var(--lp-line); border-radius:12px; padding:clamp(26px,3vw,40px); margin-bottom:22px; background:#fff; }
.lp-svc-num{ font-family:var(--lp-display); font-weight:700; font-size:clamp(48px,6vw,84px); line-height:.9; color:var(--lp-amber); }
.lp-svc-info h3{ font-family:var(--lp-display); text-transform:uppercase; font-weight:600; font-size:clamp(22px,2.6vw,30px); margin:0 0 12px; color:var(--lp-ink); }
.lp-svc-info > p{ color:var(--lp-soft); font-size:15.5px; margin:0 0 20px; max-width:70ch; }
.lp-svc-list{ display:grid; grid-template-columns:1fr 1fr; gap:10px 26px; margin-bottom:22px; }
.lp-svc-list .it{ display:flex; gap:10px; align-items:flex-start; font-size:14.5px; color:var(--lp-ink); font-weight:500; }
.lp-svc-list .it::before{ content:""; width:7px; height:7px; background:var(--lp-amber); margin-top:7px; flex:none; }
.lp-svc-act{ display:flex; gap:16px; flex-wrap:wrap; align-items:center; }
.lp-price-note{ font-size:12.5px; color:var(--lp-soft); }

.lp-why{ display:grid; grid-template-columns:repeat(4,1fr); gap:26px; }
.lp-why-c{ background:#fff; border:1px solid var(--lp-line); border-radius:12px; padding:28px 24px; }
.lp-why-ic{ width:52px; height:52px; color:var(--lp-amber); margin-bottom:16px; }
.lp-why-ic svg{ width:46px; height:46px; }
.lp-why-c h4{ font-family:var(--lp-display); text-transform:uppercase; font-weight:600; font-size:17px; margin:0 0 9px; color:var(--lp-ink); }
.lp-why-c p{ margin:0; font-size:14px; color:var(--lp-soft); }

.lp-process-4{ grid-template-columns:repeat(4,1fr); }

@media(max-width:880px){
  .lp-svc{ grid-template-columns:1fr; gap:14px; }
  .lp-svc-list{ grid-template-columns:1fr; }
  .lp-why{ grid-template-columns:1fr 1fr; }
  .lp-process-4{ grid-template-columns:1fr 1fr; }
}
@media(max-width:560px){
  .lp-why{ grid-template-columns:1fr; }
  .lp-process-4{ grid-template-columns:1fr; }
}


/* ===========================================================
   Производители
   =========================================================== */
.lp-brands-intro{ display:grid; grid-template-columns:1.3fr 1fr; gap:48px; align-items:center; }
.lp-brands-lead{ color:var(--lp-soft); font-size:16px; margin:0; max-width:60ch; }
.lp-stats-mini{ display:grid; grid-template-columns:1fr 1fr; gap:1px; background:var(--lp-line); border:1px solid var(--lp-line); border-radius:10px; overflow:hidden; }
.lp-stats-mini .s{ background:#fff; padding:24px; }
.lp-stats-mini .n{ font-family:var(--lp-display); font-weight:700; font-size:38px; line-height:1; color:var(--lp-ink); }
.lp-stats-mini .n span{ color:var(--lp-amber); }
.lp-stats-mini .l{ font-size:13px; color:var(--lp-soft); margin-top:6px; }

.lp-brand-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.lp-bcard{ background:#fff; border:1px solid var(--lp-line); border-radius:12px; overflow:hidden; display:flex; flex-direction:column; transition:.18s; }
.lp-bcard:hover{ border-color:var(--lp-amber); box-shadow:0 14px 34px -22px rgba(20,25,40,.4); transform:translateY(-3px); }
.lp-bcard-logo{ height:120px; display:grid; place-items:center; background:#f6f6f4; border-bottom:1px solid var(--lp-line); font-family:var(--lp-display); font-weight:700; font-size:28px; letter-spacing:.04em; color:var(--lp-ink); }
.lp-bcard-body{ padding:22px; display:flex; flex-direction:column; gap:12px; flex:1; }
.lp-country{ font-size:11px; font-weight:700; letter-spacing:.1em; text-transform:uppercase; color:var(--lp-amber); }
.lp-bcard-body p{ margin:0; color:var(--lp-soft); font-size:14px; }
.lp-tags{ display:flex; gap:7px; flex-wrap:wrap; }
.lp-chip{ font-size:12px; color:var(--lp-soft); background:#f3f3f0; border:1px solid var(--lp-line); padding:4px 10px; border-radius:5px; }
.lp-bcard-foot{ margin-top:auto; padding:16px 22px; border-top:1px solid var(--lp-line); display:flex; align-items:center; justify-content:space-between; }
.lp-bcard-foot a{ font-size:13px; color:var(--lp-amber); font-weight:700; }
.lp-bcard-foot a:hover{ text-decoration:underline; }
.lp-pos{ font-size:12.5px; color:var(--lp-soft); }

@media(max-width:880px){
  .lp-brands-intro{ grid-template-columns:1fr; gap:30px; }
  .lp-brand-grid{ grid-template-columns:1fr 1fr; }
}
@media(max-width:560px){
  .lp-brand-grid{ grid-template-columns:1fr; }
  .lp-stats-mini{ grid-template-columns:1fr 1fr; }
}

/* ===========================================================
   Декоративные чертежи-фоны + варьирование заголовков
   =========================================================== */
.lp-has-decor{ position:relative; overflow:hidden; }
.lp-decor{ position:absolute; z-index:0; background-size:contain; background-repeat:no-repeat; opacity:.20; pointer-events:none; width:min(58%,820px); aspect-ratio:16/9; }
.lp-decor-tr{ top:6%; right:-3%; background-position:top right; }
.lp-decor-bl{ bottom:4%; left:-3%; background-position:bottom left; }
.lp-decor-br{ bottom:-6%; right:-3%; background-position:bottom right; }
.lp-has-decor > .lp-wrap{ position:relative; z-index:1; }
/* заголовок по центру (вариация расположения) */
.lp-head-center{ justify-content:center; align-items:center; text-align:left; }
.lp-head-right{ justify-content:flex-end; align-items:center; text-align:right; }
@media(max-width:880px){ .lp-decor{ display:none; } }


/* ===========================================================
   Scroll-анимации: reveal-появление + параллакс hero.
   Скрипт reveal.js ставит .js-anim на <body> — без JS
   контент виден сразу (анти-FOUC). Логика в reveal.js.
   =========================================================== */

/* элемент появляется только когда JS активен */
.js-anim .reveal{
  opacity:0;
  transform:translateY(24px);
  transition:opacity .6s ease, transform .6s cubic-bezier(.22,.61,.36,1);
  will-change:opacity, transform;
}
.js-anim .reveal.in{ opacity:1; transform:none; }

/* каскад внутри группы — задержка задаётся из JS через --d */
.js-anim .reveal[style*="--d"]{ transition-delay:var(--d); }

/* параллакс hero: JS двигает background-position-y фона И слоя крана синхронно
   (не transform), поэтому кромки слоёв не обнажаются, а два крана не расходятся */
.js-anim .lp-hero-bg,
.js-anim .lp-hero-crane{ will-change:background-position; }

/* уважаем системную настройку «меньше движения» */
@media (prefers-reduced-motion: reduce){
  .js-anim .reveal{ opacity:1 !important; transform:none !important; transition:none !important; }
}

/* ===========================================================
   Страница «О компании» — карточки миссии/философии + KRANFER
   =========================================================== */
.lp-about-cards{ display:grid; grid-template-columns:1fr 1fr; gap:22px; }
.lp-about-card{ background:#fff; border:1px solid var(--lp-line); border-radius:12px; padding:clamp(26px,3vw,38px); }
.lp-about-card h3{ font-family:var(--lp-display); text-transform:uppercase; font-weight:600; font-size:clamp(20px,2.4vw,26px); margin:0 0 14px; color:var(--lp-ink); }
.lp-about-card p{ font-size:15px; color:var(--lp-soft); margin:0 0 14px; }
.lp-about-card p:last-child{ margin-bottom:0; }
.lp-about-card .lp-checks{ margin:0 0 16px; }
.lp-card-accent{ color:var(--lp-ink) !important; font-weight:600; border-left:3px solid var(--lp-amber); padding-left:16px; }

.lp-kranfer{ display:grid; grid-template-columns:1.5fr 1fr; gap:clamp(34px,5vw,64px); align-items:start; }
.lp-kranfer-text p{ font-size:15.5px; color:var(--lp-soft); margin:0 0 16px; }
.lp-kranfer-text p b{ color:var(--lp-ink); }
.lp-kranfer-text .lp-btn{ margin-top:10px; }
.lp-kranfer-side{ background:#fff; border:1px solid var(--lp-line); border-radius:12px; padding:30px 26px; }
.lp-kranfer-side h4{ font-family:var(--lp-display); text-transform:uppercase; font-weight:600; font-size:18px; margin:0 0 16px; color:var(--lp-ink); }

@media(max-width:880px){
  .lp-about-cards{ grid-template-columns:1fr; }
  .lp-kranfer{ grid-template-columns:1fr; gap:28px; }
}

/* ===========================================================
   Cookie-баннер
   =========================================================== */
.lp-cookie{
  position:fixed; left:20px; right:20px; bottom:20px; z-index:2000; margin:0 auto; max-width:760px;
  display:flex; align-items:center; gap:22px;
  background:#1f2024; color:#fff;
  border:4px solid transparent;
  border-image:repeating-linear-gradient(45deg, #1f2024 0, #1f2024 8px, var(--lp-amber) 8px, var(--lp-amber) 16px) 4;
  padding:20px 24px;
  box-shadow:0 18px 50px -20px rgba(0,0,0,.6);
}
.lp-cookie[hidden]{ display:none; }
.lp-cookie-text{ margin:0; font-size:13.5px; line-height:1.55; color:#fff; }
.lp-cookie-text a{ color:var(--lp-amber); text-decoration:underline; }
.lp-cookie-text a:hover{ color:var(--lp-amber-hi); }
.lp-cookie-ok{
  flex:none; cursor:pointer;
  background:var(--lp-amber); color:#1c1407;
  font-weight:700; font-size:13.5px;
  padding:14px 34px; border:0; border-radius:3px;
  transition:.16s;
}
.lp-cookie-ok:hover{ background:var(--lp-amber-hi); }
@media(max-width:560px){
  .lp-cookie{ flex-direction:column; align-items:stretch; gap:16px; text-align:center; padding:18px 20px; }
  .lp-cookie-ok{ width:100%; }
}

/* ===========================================================
   Юридический текст (политика конфиденциальности)
   =========================================================== */
.lp-legal{ max-width:860px; }
.lp-legal h2{ font-family:var(--lp-display); text-transform:uppercase; font-weight:600; font-size:clamp(19px,2.4vw,24px); letter-spacing:.01em; color:var(--lp-ink); margin:38px 0 14px; }
.lp-legal h2:first-child{ margin-top:0; }
.lp-legal p{ font-size:15px; line-height:1.7; color:var(--lp-soft); margin:0 0 14px; }
.lp-legal b{ color:var(--lp-ink); }
.lp-legal-list{ margin:0 0 14px; padding-left:22px; }
.lp-legal-list li{ font-size:15px; line-height:1.7; color:var(--lp-soft); margin-bottom:6px; }
