/* ============================================================
   НИЖПРОМПЛАСТ · Байдарки БД-2 / БД-3
   Чистая дизайн-система. Палитра бренда (с npp-nn.ru):
   индиго #140C64 · навигационный #060322 · белый фон
   Продуктовые цвета: красный + синий
   ============================================================ */

:root {
  /* Бренд */
  --indigo:     #140C64;
  --indigo-600: #2A1F8C;
  --indigo-300: #6E68B0;
  --navy:       #060322;
  --ink:        #16132E;
  --muted:      #6A6880;
  --line:       #E7E5F1;
  --line-2:     #D7D4E8;
  --bg:         #FFFFFF;
  --bg-soft:    #F6F5FB;
  --surface:    #FFFFFF;

  /* Продуктовые цвета */
  --red:        #D32A33;
  --blue:       #1B5FCC;

  /* Метрики */
  --radius:     22px;
  --radius-sm:  14px;
  --maxw:       1180px;
  --shadow:     0 24px 60px -28px rgba(20,12,100,.34);
  --shadow-sm:  0 10px 28px -16px rgba(20,12,100,.30);
  --ring:       0 0 0 1px var(--line);
  --header-h:   74px;

  --font: "Manrope", -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); }
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: clamp(18px, 5vw, 32px);
}

/* ---------- Типографика ---------- */
.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--indigo);
  margin-bottom: 14px;
}
h1, h2, h3 { letter-spacing: -0.02em; color: var(--navy); line-height: 1.08; }
.h2 { font-size: clamp(28px, 4vw, 44px); font-weight: 800; }
.lead { color: var(--muted); font-size: clamp(16px, 1.6vw, 19px); }

/* ---------- Кнопки ---------- */
.btn {
  --bg: var(--indigo);
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 28px;
  border-radius: 999px;
  font-weight: 700; font-size: 15px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s, background .18s, color .18s, border-color .18s;
  white-space: nowrap;
}
.btn--primary { background: var(--indigo); color: #fff; box-shadow: 0 14px 30px -12px rgba(20,12,100,.6); }
.btn--primary:hover { background: var(--indigo-600); transform: translateY(-2px); }
.btn--outline { background: transparent; color: var(--indigo); border-color: var(--line-2); }
.btn--outline:hover { border-color: var(--indigo); transform: translateY(-2px); }
.btn--light { background:#fff; color: var(--indigo); }
.btn--light:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.btn--ghost { background: rgba(255,255,255,.1); color:#fff; border-color: rgba(255,255,255,.3); }
.btn--ghost:hover { background: rgba(255,255,255,.18); }

/* ============================================================
   ШАПКА — всегда с фоном, sticky, без лагов
   ============================================================ */
.header {
  position: sticky; top: 0; z-index: 100;
  height: var(--header-h);
  background: #fff;                        /* фон ВСЕГДА */
  border-bottom: 1px solid var(--line);
  box-shadow: 0 6px 24px -20px rgba(6,3,34,.5);
}
.header__inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.brand img { height: 38px; width: auto; }
.nav { display: flex; align-items: center; gap: 28px; }
.nav a { font-size: 15px; font-weight: 600; color: var(--ink); transition: color .15s; }
.nav a:hover { color: var(--indigo); }
.header__right { display: flex; align-items: center; gap: 18px; }
.header__phone { font-weight: 800; font-size: 16px; color: var(--navy); white-space: nowrap; }
.burger { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.burger span { width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition:.2s; }

/* ============================================================
   СЕКЦИИ — единый ритм отступов
   ============================================================ */
.section { padding-block: clamp(56px, 8vw, 104px); }
.section--soft { background: var(--bg-soft); }
.section__head { max-width: 720px; margin-bottom: clamp(34px, 5vw, 56px); }
.section__head--center { margin-inline: auto; text-align: center; }
.section__head .lead { margin-top: 14px; }

/* ============================================================
   ХЕРО
   ============================================================ */
.hero {
  position: relative; overflow: hidden; color: #fff;
  background:
    radial-gradient(110% 120% at 88% -10%, rgba(42,31,140,.85), transparent 55%),
    linear-gradient(165deg, var(--navy) 0%, #0d0840 58%, var(--indigo) 125%);
}
.hero__inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.05fr 1fr;
  gap: clamp(28px, 4vw, 60px); align-items: center;
  padding-block: clamp(52px, 7vw, 96px);
}
.hero__badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 15px; border-radius: 999px;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2);
  font-size: 12px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
  color: #DAD7F2; margin-bottom: 22px;
}
.hero h1 { color: #fff; font-size: clamp(34px, 5.4vw, 62px); font-weight: 800; margin-bottom: 20px; }
.hero h1 em { font-style: normal; color: #B7B2EA; }
.hero__lead { color: rgba(255,255,255,.8); font-size: clamp(16px,1.7vw,19px); max-width: 30em; margin-bottom: 30px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 38px; }
.hero__chips { display: flex; flex-wrap: wrap; gap: 24px; border-top: 1px solid rgba(255,255,255,.14); padding-top: 24px; }
.chip__num { font-size: clamp(22px,3vw,32px); font-weight: 800; }
.chip__lbl { font-size: 13px; color: rgba(255,255,255,.6); margin-top: 4px; }

/* ============================================================
   ПЛЕЙСХОЛДЕР ФОТО (кадр с силуэтом байдарки)
   ============================================================ */
.photo {
  position: relative; border-radius: var(--radius);
  background: var(--bg-soft);
  border: 1px solid var(--line);
  overflow: hidden; display: grid; place-items: center;
  aspect-ratio: 4 / 3;
}
.photo--hero {
  background: linear-gradient(150deg, rgba(255,255,255,.14), rgba(255,255,255,.04));
  border-color: rgba(255,255,255,.18);
  box-shadow: var(--shadow);
}
.photo svg { width: 80%; height: auto; }
.photo__tag {
  position: absolute; left: 14px; bottom: 14px;
  font-size: 12px; font-weight: 700; letter-spacing: .03em;
  background: rgba(6,3,34,.62); color: #fff;
  padding: 6px 13px; border-radius: 999px;
  border: 1px dashed rgba(255,255,255,.35);
}
.photo--hero .photo__tag { background: rgba(6,3,34,.5); }

/* ============================================================
   МОДЕЛИ — 2 карточки БД-2 / БД-3
   ============================================================ */
.models { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.model {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
  transition: transform .22s ease, box-shadow .22s, border-color .22s;
}
.model:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--line-2); }
.model__media { aspect-ratio: 16/10; border-bottom: 1px solid var(--line); }
.model__media .photo { border: 0; border-radius: 0; aspect-ratio: auto; height: 100%; }
.model__body { padding: clamp(22px, 2.6vw, 32px); display: flex; flex-direction: column; gap: 14px; flex: 1; }
.model__name { font-size: 28px; font-weight: 800; }
.model__seats { font-size: 15px; color: var(--muted); }
.model__specs { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 18px; margin-top: 4px; }
.model__specs div { font-size: 14px; }
.model__specs b { display: block; font-size: 18px; color: var(--navy); }
.model__specs span { color: var(--muted); }
.model__foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 14px; padding-top: 8px; }
.model__price { font-size: 24px; font-weight: 800; color: var(--navy); }
.model__price small { display:block; font-size: 12px; font-weight: 600; color: var(--muted); }

/* свотчи цвета: красный + синий */
.swatches { display: flex; gap: 10px; align-items: center; }
.swatch {
  width: 26px; height: 26px; border-radius: 50%;
  border: 2px solid #fff; box-shadow: 0 0 0 1px var(--line-2);
  cursor: pointer; transition: transform .15s;
}
.swatch:hover { transform: scale(1.12); }
.swatch--red  { background: var(--red); }
.swatch--blue { background: var(--blue); }
.swatch__label { font-size: 13px; color: var(--muted); margin-left: 6px; }

/* ============================================================
   FEATURES — креативная bento-сетка
   ============================================================ */
.bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: minmax(170px, auto);
  gap: 20px;
}
.card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: clamp(22px, 2.4vw, 30px);
  display: flex; flex-direction: column; gap: 12px;
  transition: transform .22s ease, box-shadow .22s, border-color .22s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); border-color: var(--line-2); }
.card__icon {
  width: 50px; height: 50px; border-radius: 14px;
  background: var(--bg-soft); color: var(--indigo);
  display: grid; place-items: center;
}
.card h3 { font-size: 20px; font-weight: 800; }
.card p { color: var(--muted); font-size: 15px; }
.card--wide { grid-column: span 2; }
.card--tall { grid-row: span 2; }
.card--indigo { background: linear-gradient(160deg, var(--indigo), var(--indigo-600)); border-color: transparent; color: #fff; }
.card--indigo h3 { color: #fff; }
.card--indigo p { color: rgba(255,255,255,.82); }
.card--indigo .card__icon { background: rgba(255,255,255,.14); color: #fff; }
.card--photo { padding: 0; overflow: hidden; }
.card--photo .photo { border: 0; border-radius: 0; height: 100%; width: 100%; aspect-ratio: auto; }

/* ---------- Чередующиеся строки текст+фото (напр. «Держатели весла») ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 4vw, 60px); align-items: center; }
.split + .split { margin-top: clamp(40px, 6vw, 80px); }
.split--rev .split__media { order: -1; }
.split__text h3 { font-size: clamp(24px, 3vw, 34px); font-weight: 800; margin-bottom: 14px; }
.split__text p { color: var(--muted); font-size: 17px; margin-bottom: 12px; }
.ticks { display: grid; gap: 10px; margin-top: 18px; }
.ticks li { display: flex; gap: 10px; align-items: flex-start; font-size: 16px; }
.ticks svg { flex-shrink: 0; margin-top: 3px; color: var(--indigo); }

/* ============================================================
   СРАВНЕНИЕ / ХАРАКТЕРИСТИКИ
   ============================================================ */
.specs {
  width: 100%; border-collapse: separate; border-spacing: 0;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden;
}
.specs th, .specs td { padding: 16px 20px; text-align: left; font-size: 15px; border-bottom: 1px solid var(--line); }
.specs thead th { background: var(--navy); color: #fff; font-weight: 700; }
.specs tbody tr:last-child td { border-bottom: 0; }
.specs td:first-child { color: var(--muted); font-weight: 600; }
.specs td b { color: var(--navy); }
.specs tbody tr:nth-child(even) { background: var(--bg-soft); }

/* ============================================================
   CTA / ФОРМА
   ============================================================ */
.cta {
  background: linear-gradient(160deg, var(--navy), var(--indigo));
  border-radius: var(--radius); color: #fff;
  padding: clamp(34px, 5vw, 64px);
  display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(28px,4vw,56px); align-items: center;
}
.cta h2 { color: #fff; font-size: clamp(26px,3.4vw,40px); font-weight: 800; margin-bottom: 14px; }
.cta p { color: rgba(255,255,255,.8); font-size: 17px; }
.form { display: grid; gap: 14px; }
.form input, .form select {
  width: 100%; padding: 15px 18px; border-radius: 14px;
  border: 1px solid rgba(255,255,255,.25); background: rgba(255,255,255,.08);
  color: #fff; font-size: 15px; font-family: inherit;
}
.form input::placeholder { color: rgba(255,255,255,.6); }
.form input:focus, .form select:focus { outline: 2px solid rgba(255,255,255,.5); }
.form select option { color: #16132e; }
.form .btn { justify-content: center; }
.form__note { font-size: 12px; color: rgba(255,255,255,.55); }

/* ============================================================
   ПОДВАЛ
   ============================================================ */
.footer { background: var(--navy); color: rgba(255,255,255,.7); padding-block: clamp(40px,6vw,64px); }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 32px; }
.footer img { height: 40px; margin-bottom: 16px; filter: brightness(0) invert(1); opacity: .92; }
.footer h4 { color: #fff; font-size: 15px; margin-bottom: 14px; letter-spacing: .02em; }
.footer a { color: rgba(255,255,255,.7); font-size: 15px; line-height: 2; }
.footer a:hover { color: #fff; }
.footer__bottom { margin-top: 36px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.12); font-size: 13px; display:flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; }

/* ============================================================
   АДАПТИВ — чтобы ничего не съезжало
   ============================================================ */
@media (max-width: 980px) {
  .hero__inner, .models, .split, .cta { grid-template-columns: 1fr; }
  .split--rev .split__media { order: 0; }
  .bento { grid-template-columns: 1fr 1fr; }
  .card--tall { grid-row: span 1; }
}
@media (max-width: 820px) {
  .nav, .header__phone { display: none; }
  .burger { display: flex; }
  .hero__media { max-width: 520px; }
}
@media (max-width: 600px) {
  .bento { grid-template-columns: 1fr; }
  .card--wide { grid-column: span 1; }
  .footer__grid { grid-template-columns: 1fr; }
  .hero__chips { gap: 18px; }
}

/* мобильное меню (открывается через JS) */
.nav.is-open {
  display: flex; flex-direction: column; gap: 18px;
  position: absolute; top: var(--header-h); left: 0; right: 0;
  background: #fff; border-bottom: 1px solid var(--line);
  padding: 22px clamp(18px,5vw,32px); box-shadow: var(--shadow);
}

/* ============================================================
   ДОП. КОМПОНЕНТЫ — структура «как у keelson» + больше акцента
   ============================================================ */

/* ---------- Теги назначения (Реки / Озёра / Море) ---------- */
.tags { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 26px; }
.tag {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 8px 16px; border-radius: 999px;
  font-size: 13px; font-weight: 700; letter-spacing: .02em;
}
.tag--solid { background: var(--indigo); color: #fff; }
.tag--ghost { background: rgba(255,255,255,.1); color: #fff; border: 1px solid rgba(255,255,255,.28); }
.tag--soft  { background: #ECEAFA; color: var(--indigo); border: 1px solid var(--line-2); }

/* ---------- Блок покупки (рассрочка, даты предзаказа) ---------- */
.buy__pay { display: grid; gap: 6px; font-size: 14px; color: var(--muted); }
.buy__pay b { color: var(--navy); }
.buy__meta { display: grid; gap: 8px; margin-top: 4px; }
.buy__meta div { display: flex; gap: 9px; align-items: center; font-size: 14px; color: var(--muted); }
.buy__meta svg { color: var(--indigo); flex-shrink: 0; }
.model__actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ---------- Заявление (акцентная индиго-секция) ---------- */
.statement {
  position: relative; overflow: hidden;
  background: linear-gradient(155deg, var(--indigo) 0%, var(--indigo-600) 70%, #3a2db0 130%);
  color: #fff; border-radius: var(--radius);
  padding: clamp(40px, 6vw, 72px);
}
.statement::after {
  content: ""; position: absolute; right: -80px; top: -80px;
  width: 320px; height: 320px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.14), transparent 70%);
}
.statement .eyebrow { color: #C8C3F2; }
.statement h2 { color: #fff; font-size: clamp(26px, 3.6vw, 44px); font-weight: 800; max-width: 16ch; position: relative; z-index: 1; }
.statement p { color: rgba(255,255,255,.82); font-size: 18px; margin-top: 18px; max-width: 52ch; position: relative; z-index: 1; }

/* ---------- USP-лента (полоса ключевых преимуществ) ---------- */
.usp { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.usp__item { background: #fff; padding: 26px 22px; }
.usp__num { font-size: clamp(26px, 3vw, 38px); font-weight: 800; color: var(--indigo); line-height: 1; }
.usp__lbl { margin-top: 8px; font-size: 14px; color: var(--muted); }

/* ---------- «Что внутри» — нумерованная сетка преимуществ ---------- */
.benefits { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.benefit {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-sm); padding: 24px;
  display: flex; gap: 16px; align-items: flex-start;
  transition: border-color .2s, transform .2s, box-shadow .2s;
}
.benefit:hover { border-color: var(--indigo); transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.benefit__no {
  flex-shrink: 0; width: 40px; height: 40px; border-radius: 11px;
  background: #ECEAFA; color: var(--indigo);
  font-weight: 800; font-size: 16px; display: grid; place-items: center;
}
.benefit h4 { font-size: 17px; font-weight: 800; color: var(--navy); margin-bottom: 5px; }
.benefit p { font-size: 14px; color: var(--muted); }

/* ---------- Отзывы ---------- */
.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.review { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-sm); }
.review__stars { color: var(--red); font-size: 16px; letter-spacing: 2px; margin-bottom: 12px; }
.review p { color: var(--ink); font-size: 15px; margin-bottom: 18px; }
.review__author { display: flex; align-items: center; gap: 12px; }
.review__avatar { width: 42px; height: 42px; border-radius: 50%; background: linear-gradient(135deg, var(--indigo), var(--indigo-300)); color: #fff; display: grid; place-items: center; font-weight: 800; }
.review__name { font-weight: 700; font-size: 14px; }
.review__role { font-size: 13px; color: var(--muted); }

/* акцент на заголовке секции */
.section__head h2 .ac { color: var(--indigo); }

/* сравнительная таблица — выделить колонку */
.specs td.win { color: var(--indigo); font-weight: 700; }

@media (max-width: 980px) {
  .benefits { grid-template-columns: 1fr 1fr; }
  .usp { grid-template-columns: 1fr 1fr; }
  .reviews { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .benefits { grid-template-columns: 1fr; }
  .usp { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   ФОТО в плейсхолдерах (реальные изображения из assets)
   ============================================================ */
.photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.photo--contain { background: #fff; }
.photo--contain img { object-fit: contain; padding: 6%; }
.model__media .photo { aspect-ratio: auto; height: 100%; }
.split__media .photo { aspect-ratio: 4/3; }

/* ============================================================
   КАТАЛОГ — фильтры + сетка товаров
   ============================================================ */
.filters { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 34px; }
.filter {
  padding: 11px 22px; border-radius: 999px;
  border: 1px solid var(--line-2); background: #fff;
  font-weight: 700; font-size: 15px; color: var(--ink); cursor: pointer;
  transition: all .18s ease;
}
.filter:hover { border-color: var(--indigo); color: var(--indigo); }
.filter.is-active { background: var(--indigo); border-color: var(--indigo); color: #fff; }

.catalog { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.product {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column;
  box-shadow: var(--shadow-sm); transition: transform .22s, box-shadow .22s, border-color .22s;
}
.product:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--line-2); }
.product__media { height: 230px; background: #fff; border-bottom: 1px solid var(--line); position: relative; }
.product__media img { width: 100%; height: 100%; object-fit: contain; padding: 6%; }
.product__badge {
  position: absolute; top: 14px; left: 14px;
  background: var(--indigo); color: #fff; font-size: 12px; font-weight: 700;
  padding: 6px 13px; border-radius: 999px;
}
.product__body { padding: 24px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.product__cat { font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--indigo); }
.product__name { font-size: 21px; font-weight: 800; color: var(--navy); }
.product__desc { font-size: 14px; color: var(--muted); flex: 1; }
.product__foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: auto; padding-top: 16px; }
.product__price { font-size: 20px; font-weight: 800; color: var(--navy); }
.product__price small { display:block; font-size: 12px; font-weight: 600; color: var(--muted); }
.is-hidden { display: none !important; }

/* ============================================================
   КОНТАКТЫ
   ============================================================ */
.contacts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 40px; }
.contact-card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 30px;
  box-shadow: var(--shadow-sm);
}
.contact-card__icon { width: 50px; height: 50px; border-radius: 14px; background: var(--bg-soft); color: var(--indigo); display: grid; place-items: center; margin-bottom: 16px; }
.contact-card h3 { font-size: 18px; font-weight: 800; margin-bottom: 8px; }
.contact-card a, .contact-card p { font-size: 16px; color: var(--ink); }
.contact-card a:hover { color: var(--indigo); }
.contact-card span { color: var(--muted); font-size: 14px; }
.map-holder {
  border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line);
  background: var(--bg-soft); aspect-ratio: 21/9; display: grid; place-items: center;
  color: var(--muted); font-weight: 600;
}

@media (max-width: 900px) {
  .catalog { grid-template-columns: 1fr 1fr; }
  .contacts { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .catalog { grid-template-columns: 1fr; }
}

/* ============================================================
   ЕДИНАЯ ШАПКА .npp-hd (одинаковая на всех страницах)
   ============================================================ */
.npp-hd{position:sticky;top:0;z-index:1000;background:#fff;border-bottom:1px solid #E7E5F1;box-shadow:0 6px 24px -20px rgba(6,3,34,.5);}
.npp-hd__inner{max-width:1180px;margin:0 auto;height:74px;display:flex;align-items:center;justify-content:space-between;gap:24px;padding:0 clamp(18px,5vw,32px);}
.npp-brand{display:flex;align-items:center;flex-shrink:0;text-decoration:none;}
.npp-brand img{height:38px;width:auto;}
.npp-nav{display:flex;align-items:center;gap:28px;}
.npp-nav a{font-size:15px;font-weight:600;color:#16132E;text-decoration:none;transition:color .15s;}
.npp-nav a:hover,.npp-nav a.is-current{color:#140C64;}
.npp-hd__right{display:flex;align-items:center;gap:18px;}
.npp-phone{font-weight:800;font-size:16px;color:#060322;text-decoration:none;white-space:nowrap;}
.npp-cta{display:inline-flex;align-items:center;background:#140C64;color:#fff;font-weight:700;font-size:15px;padding:13px 24px;border-radius:999px;text-decoration:none;transition:background .18s,transform .18s;}
.npp-cta:hover{background:#2A1F8C;transform:translateY(-2px);}
.npp-burger{display:none;flex-direction:column;gap:5px;background:none;border:0;cursor:pointer;padding:8px;}
.npp-burger span{width:24px;height:2px;background:#060322;border-radius:2px;}
@media(max-width:860px){
  .npp-nav,.npp-phone{display:none;}
  .npp-burger{display:flex;}
  .npp-nav.open{display:flex;flex-direction:column;gap:18px;position:absolute;top:74px;left:0;right:0;background:#fff;border-bottom:1px solid #E7E5F1;padding:22px clamp(18px,5vw,32px);box-shadow:0 24px 60px -28px rgba(20,12,100,.34);}
}
