/* === /products/{slug} — custom product detail page === */
:root {
  --np-primary: #177ec9;
  --np-navy: #0c1f4a;
  --np-yellow: #f9c42e;
  --np-orange: #e85d2f;
  --np-green: #20c77a;
  --np-red: #e54545;
  --np-gray: #a0a4ad;
  --np-bg-soft: linear-gradient(135deg, #f6f7fa 0%, #eef1f6 100%);
}

.np-pdp { max-width: 1320px; margin: 0 auto; padding: 32px 24px 64px; font-family: Inter, sans-serif; }
.np-pdp__grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr); gap: 48px; align-items: start; }
@media (max-width: 960px) { .np-pdp__grid { grid-template-columns: 1fr; gap: 28px; } }

/* Gallery */
.np-pdp__main { background: var(--np-bg-soft); border-radius: 20px; overflow: hidden; }
.np-pdp__main img { display: block; width: 100%; height: auto; }
.np-pdp__thumbs { display: flex; gap: 10px; margin-top: 14px; flex-wrap: wrap; }
.np-pdp__thumb { width: 78px; height: 78px; background: var(--np-bg-soft); border: 2px solid transparent; border-radius: 12px; padding: 6px; cursor: pointer; transition: border-color 0.15s; }
.np-pdp__thumb img { width: 100%; height: 100%; object-fit: contain; }
.np-pdp__thumb:hover { border-color: rgba(23,126,201,0.4); }
.np-pdp__thumb.is-active { border-color: var(--np-primary); }

/* Info column */
.np-pdp__rating { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 600; color: var(--np-navy); margin-bottom: 14px; }
/* Partial-filled stars: same approach as catalog cards. Empty grey layer
   below + gold layer clipped to --rate width on top. */
.np-pdp__stars-rate {
  position: relative;
  display: inline-block;
  font-size: 18px;
  line-height: 1;
  letter-spacing: 1px;
  white-space: nowrap;
}
.np-pdp__stars-rate__bg { color: #e1e3e8; }
.np-pdp__stars-rate__fg {
  color: var(--np-yellow);
  position: absolute;
  inset: 0;
  width: var(--rate, 0%);
  overflow: hidden;
  white-space: nowrap;
  pointer-events: none;
}
.np-pdp__rcount { color: #777; font-weight: 500; }
/* Legacy classes (kept in case other partials still use them) */
.np-pdp__stars { color: var(--np-yellow); font-size: 18px; letter-spacing: -1px; }
.np-pdp__stars-empty { color: #e1e3e8; }

.np-pdp__title { font-size: 36px; font-weight: 800; color: var(--np-navy); text-transform: uppercase; letter-spacing: -0.5px; line-height: 1.1; margin: 0 0 14px; }
@media (max-width: 600px) { .np-pdp__title { font-size: 28px; } }
.np-pdp__subtitle { margin: -4px 0 14px; font-size: 18px; line-height: 1.5; font-weight: 500; color: #4b5563; }
@media (max-width: 600px) { .np-pdp__subtitle { font-size: 16px; } }

.np-pdp__tag { display: inline-flex; background: rgba(23,126,201,0.1); color: var(--np-primary); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; padding: 6px 14px; border-radius: 999px; margin-bottom: 22px; }
.np-pdp__tag--top { background: var(--np-yellow); color: var(--np-navy); }

.np-pdp__bullets { list-style: none; padding: 16px 0; margin: 0 0 24px; border-top: 1px solid #eef0f3; border-bottom: 1px solid #eef0f3; }
.np-pdp__bullets li { display: flex; align-items: flex-start; gap: 13px; padding: 9px 0; color: #333; font-size: 15px; line-height: 1.45; }
.np-pdp__bullets li::before { display: none; }
.np-pdp__bullet-ic { flex: 0 0 auto; width: 30px; height: 30px; color: #0c1f4a; display: inline-flex; margin-top: 1px; }
.np-pdp__bullet-ic svg { width: 100%; height: 100%; display: block; }

.np-pdp__bars { margin-bottom: 26px; }

/* CTA */
.np-pdp__cta { display: block; width: 100%; margin-top: 8px; padding: 18px; background: var(--np-primary); color: #fff; border: none; border-radius: 999px; font-size: 17px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.05em; cursor: pointer; box-shadow: 0 8px 20px rgba(23,126,201,0.35); transition: background 0.15s, transform 0.15s, box-shadow 0.2s; font-family: inherit; }
.np-pdp__cta:hover { background: #1265a1; transform: translateY(-1px); box-shadow: 0 10px 24px rgba(23,126,201,0.5); }
.np-pdp__cta:disabled { background: #999; cursor: not-allowed; box-shadow: none; transform: none; }
.np-pdp__disclaimer { margin: 14px 0 0; font-size: 12px; text-align: center; color: #777; }

/* === MODAL === */
.np-modal { position: fixed; inset: 0; z-index: 1000; display: flex; align-items: center; justify-content: center; padding: 20px; }
.np-modal[hidden] { display: none; }
.np-modal__backdrop { position: absolute; inset: 0; background: rgba(12, 31, 74, 0.65); backdrop-filter: blur(4px); animation: np-fade 0.2s ease; }
.np-modal__panel { position: relative; background: #fff; border-radius: 20px; max-width: 480px; width: 100%; max-height: 90vh; overflow-y: auto; padding: 32px 28px; box-shadow: 0 20px 60px rgba(12,31,74,0.4); animation: np-slide 0.25s ease; font-family: Inter, sans-serif; }
@keyframes np-fade { from { opacity: 0; } to { opacity: 1; } }
@keyframes np-slide { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.np-modal__close { position: absolute; top: 14px; right: 16px; width: 36px; height: 36px; border-radius: 50%; background: #f3f4f7; color: #555; border: none; font-size: 24px; line-height: 1; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background 0.15s, color 0.15s; }
.np-modal__close:hover { background: #e1e3e8; color: #000; }
.np-modal__title { font-size: 24px; font-weight: 800; color: var(--np-navy); margin: 0 0 6px; text-transform: uppercase; letter-spacing: -0.3px; }
.np-modal__sub { font-size: 14px; color: #555; margin: 0 0 20px; line-height: 1.5; }
.np-modal__form { display: block; }
.np-modal__disclaimer { margin: 14px 0 0; font-size: 12px; text-align: center; color: #777; }

/* Form fields */
.np-field { display: block; margin-bottom: 14px; }
.np-field > span { display: block; font-size: 12px; font-weight: 600; color: var(--np-navy); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 6px; }
.np-field > span em { color: #888; font-style: normal; font-weight: 500; text-transform: none; letter-spacing: 0; }
.np-field input, .np-field select, .np-field textarea { width: 100%; padding: 12px 14px; border: 1.5px solid #e1e3e8; border-radius: 10px; font-size: 15px; font-family: inherit; background: #fff; transition: border-color 0.15s; }
.np-field input:focus, .np-field select:focus, .np-field textarea:focus { outline: none; border-color: var(--np-primary); }

/* Messenger picker */
.np-msgr { display: grid; grid-template-columns: repeat(5, 1fr); gap: 6px; }
@media (max-width: 480px) { .np-msgr { grid-template-columns: repeat(3, 1fr); } }
.np-msgr__btn { display: flex; flex-direction: column; align-items: center; gap: 4px; padding: 10px 4px; background: #fff; border: 1.5px solid #e1e3e8; border-radius: 10px; cursor: pointer; font-family: inherit; transition: border-color 0.15s, transform 0.15s; }
.np-msgr__btn:hover { border-color: rgba(23,126,201,0.5); }
.np-msgr__btn.is-active { border-color: var(--np-primary); background: rgba(23,126,201,0.06); transform: translateY(-1px); }
.np-msgr__btn svg { width: 28px; height: 28px; border-radius: 6px; }
.np-msgr__btn span { font-size: 11px; font-weight: 600; color: var(--np-navy); }

/* Modal success */
.np-modal__success { text-align: center; padding: 30px 0 10px; }
.np-modal__success-icon { width: 64px; height: 64px; margin: 0 auto 16px; background: var(--np-green); color: #fff; border-radius: 50%; font-size: 36px; display: flex; align-items: center; justify-content: center; }
.np-modal__success h3 { font-size: 22px; color: var(--np-navy); margin: 0 0 8px; }
.np-modal__success p { color: #555; margin: 0; }

/* === KIT CONTENTS === */
.np-kit { max-width: 1320px; margin: 64px auto; padding: 0 24px; font-family: Inter, sans-serif; }
.np-kit__header { text-align: center; margin-bottom: 32px; }
.np-kit__title { font-size: 32px; font-weight: 700; color: var(--np-navy); text-transform: uppercase; letter-spacing: -0.5px; margin: 0 0 10px; }
.np-kit__sub { font-size: 16px; color: #555; margin: 0; }
.np-kit__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
@media (max-width: 1024px) { .np-kit__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .np-kit__grid { grid-template-columns: 1fr; } }
.np-kit__item { background: #fff; border: 1px solid #eef0f3; border-radius: 14px; padding: 12px; text-align: center; }
.np-kit__img { background: var(--np-bg-soft); border-radius: 10px; aspect-ratio: 1 / 1; margin-bottom: 12px; display: flex; align-items: center; justify-content: center; overflow: hidden; padding: 6px; }
.np-kit__img img { max-width: 100%; max-height: 100%; object-fit: contain; }
.np-kit__item h3 { font-size: 15.5px; font-weight: 700; color: var(--np-navy); margin: 0 0 6px; }
.np-kit__item p { font-size: 13px; color: #555; line-height: 1.45; margin: 0; }

/* === TIMELINE: WHAT CHANGES. AND WHEN. === */
/* ============================================================
   TIMELINE — «От первой сессии до реального прогресса»
   Кинематографичная sticky-сцена: тёмная видео-витрина слева,
   светлый контент справа. Пер-этапные состояния — [data-tl-current].
   ============================================================ */

/* ============================================================
   TIMELINE — «От первой сессии до реального прогресса»
   Кинематографичная sticky-сцена: тёмная видео-витрина слева,
   светлый контент справа. Пер-этапные состояния — [data-tl-current].
   ============================================================ */

.np-tl { max-width: 1280px; margin: 80px auto; padding: 0 24px; font-family: Inter, sans-serif; }

.np-tl__header { text-align: center; margin-bottom: 44px; }
.np-tl__eyebrow { font-size: 13px; font-weight: 700; color: var(--np-primary); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 10px; }
.np-tl__title { font-size: 38px; font-weight: 800; color: var(--np-navy); text-transform: uppercase; letter-spacing: -0.5px; margin: 0 0 12px; }
.np-tl__sub { font-size: 16px; color: #555; max-width: 640px; margin: 0 auto; line-height: 1.55; }
@media (max-width: 600px) { .np-tl__title { font-size: 28px; } }

/* --- scrolly: высокий трек, сцена залипает и листается скроллом --- */
.np-tl__track { position: relative; }
@media (min-width: 1025px) {
  .np-tl__track { height: 540vh; }
  .np-tl__sticky { position: sticky; top: 88px; }
}

.np-tl__body { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr); gap: 48px; align-items: start; margin-bottom: 26px; }
@media (max-width: 1024px) { .np-tl__body { grid-template-columns: 1fr; gap: 32px; } }

/* ============ ЛЕВАЯ КОЛОНКА: видео + приборы, без подложки ============ */
.np-tl__visual { position: relative; display: grid; grid-template-columns: minmax(0, 42%) 1fr; gap: 16px; align-items: start; }

/* --- видео-кадр --- */
.np-tl__frame {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 384 / 704;
  background: #0c1f4a;
  border: 1px solid #e3e9f2;
  box-shadow: 0 20px 44px -18px rgba(12, 31, 74, 0.38);
}
.np-tl__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
/* кинематографичное виньетирование сверху и снизу */
.np-tl__frame-shade {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, rgba(8, 18, 42, 0.38) 0%, transparent 26%, transparent 58%, rgba(8, 18, 42, 0.62) 100%);
}
/* глянцевый блик по кромке кадра */
.np-tl__frame::after {
  content: "";
  position: absolute; inset: 0; pointer-events: none; border-radius: inherit;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22), inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

/* live-бейдж с пульсом */
.np-tl__live {
  position: absolute; top: 12px; left: 12px;
  display: inline-flex; align-items: center; gap: 7px;
  padding: 6px 11px; border-radius: 999px;
  font-size: 10.5px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: #eaf2ff;
  background: rgba(8, 18, 42, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.16);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
.np-tl__live i { width: 7px; height: 7px; border-radius: 50%; background: var(--np-green); box-shadow: 0 0 10px var(--np-green); animation: npTlPulse 2s ease-in-out infinite; }
@keyframes npTlPulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.45; transform: scale(0.78); } }

/* пер-этапный чип периода на видео */
.np-tl__chips { position: absolute; left: 12px; right: 12px; bottom: 12px; display: grid; pointer-events: none; }
.np-tl__chip {
  grid-area: 1 / 1; justify-self: start;
  display: inline-flex; align-items: center;
  padding: 7px 13px; border-radius: 999px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.04em; color: #fff;
  background: rgba(8, 18, 42, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.2);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 20px rgba(2, 8, 26, 0.4);
  opacity: 0; transform: translateY(8px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}
.np-tl:not([data-tl-current]) .np-tl__chip[data-chip="day1"],
.np-tl[data-tl-current="day1"] .np-tl__chip[data-chip="day1"],
.np-tl[data-tl-current="week1"] .np-tl__chip[data-chip="week1"],
.np-tl[data-tl-current="month1"] .np-tl__chip[data-chip="month1"],
.np-tl[data-tl-current="month3"] .np-tl__chip[data-chip="month3"],
.np-tl[data-tl-current="month6"] .np-tl__chip[data-chip="month6"],
.np-tl[data-tl-current="month9"] .np-tl__chip[data-chip="month9"] { opacity: 1; transform: none; }

/* ============ приборы-метрики на тёмной панели ============ */
.np-tl__indicators { display: grid; grid-template-columns: 1fr; gap: 14px; margin-top: 0; align-content: start; }

.np-tl__ind {
  position: relative;
  border-radius: 16px;
  padding: 14px 15px 15px;
  background: linear-gradient(180deg, #ffffff, #f7fafd);
  border: 1px solid #e7edf4;
  box-shadow: 0 8px 22px rgba(12, 31, 74, 0.07);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.np-tl__ind:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(12, 31, 74, 0.11); }
.np-tl__ind-head { display: flex; align-items: center; gap: 9px; margin-bottom: 11px; }
.np-tl__ind-ic {
  flex: 0 0 auto;
  width: 30px; height: 30px; border-radius: 9px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(23, 126, 201, 0.10); color: #177ec9;
  border: 1px solid rgba(23, 126, 201, 0.20);
}
.np-tl__ind--tissue .np-tl__ind-ic { background: rgba(32, 199, 122, 0.12); color: #1c8c57; border-color: rgba(32, 199, 122, 0.24); }
.np-tl__ind-ic svg { width: 17px; height: 17px; }
.np-tl__ind-label { font-size: 10.5px; font-weight: 800; color: var(--np-navy); text-transform: uppercase; letter-spacing: 0.09em; line-height: 1.3; }

/* счётчик «этап N / 6» */
.np-tl__ind-step { margin-left: auto; display: inline-flex; align-items: baseline; gap: 3px; font-variant-numeric: tabular-nums; }
.np-tl__ind-step em { font-style: normal; font-size: 10px; font-weight: 700; color: #93a1b8; }
.np-tl__ind-step-n { display: inline-grid; }
.np-tl__ind-step-n b {
  grid-area: 1 / 1;
  font-size: 14px; font-weight: 800; color: var(--np-navy); line-height: 1;
  opacity: 0; transform: translateY(5px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.np-tl:not([data-tl-current]) .np-tl__ind-step-n b[data-num="day1"],
.np-tl[data-tl-current="day1"] .np-tl__ind-step-n b[data-num="day1"],
.np-tl[data-tl-current="week1"] .np-tl__ind-step-n b[data-num="week1"],
.np-tl[data-tl-current="month1"] .np-tl__ind-step-n b[data-num="month1"],
.np-tl[data-tl-current="month3"] .np-tl__ind-step-n b[data-num="month3"],
.np-tl[data-tl-current="month6"] .np-tl__ind-step-n b[data-num="month6"],
.np-tl[data-tl-current="month9"] .np-tl__ind-step-n b[data-num="month9"] { opacity: 1; transform: none; }

/* сегментный метр: 6 делений, заполняется по этапам */
.np-tl__meter { display: grid; grid-template-columns: repeat(6, 1fr); gap: 4px; margin-bottom: 11px; }
.np-tl__meter i {
  position: relative;
  height: 6px; border-radius: 999px;
  background: #e7edf4;
  overflow: hidden;
  transition: background 0.45s ease, box-shadow 0.45s ease;
}
.np-tl__meter i:nth-child(2) { transition-delay: 0.05s; }
.np-tl__meter i:nth-child(3) { transition-delay: 0.10s; }
.np-tl__meter i:nth-child(4) { transition-delay: 0.15s; }
.np-tl__meter i:nth-child(5) { transition-delay: 0.20s; }
.np-tl__meter i:nth-child(6) { transition-delay: 0.25s; }
.np-tl:not([data-tl-current]) .np-tl__meter i:nth-child(-n+1),
.np-tl[data-tl-current="day1"] .np-tl__meter i:nth-child(-n+1),
.np-tl[data-tl-current="week1"] .np-tl__meter i:nth-child(-n+2),
.np-tl[data-tl-current="month1"] .np-tl__meter i:nth-child(-n+3),
.np-tl[data-tl-current="month3"] .np-tl__meter i:nth-child(-n+4),
.np-tl[data-tl-current="month6"] .np-tl__meter i:nth-child(-n+5) {
  background: linear-gradient(90deg, #1d86d0, #46b1f5);
  box-shadow: 0 0 12px rgba(70, 177, 245, 0.5);
}
/* финал: метр целиком уходит в зелёный — цель достигнута */
.np-tl[data-tl-current="month9"] .np-tl__meter i:nth-child(-n+6) {
  background: linear-gradient(90deg, #1da866, #2ee08e);
  box-shadow: 0 0 12px rgba(46, 224, 142, 0.5);
}
/* метр тканей: цвет = фаза (нагрузка -> перестройка -> адаптация) */
.np-tl[data-tl-current="month3"] .np-tl__meter--tissue i:nth-child(-n+4) {
  background: linear-gradient(90deg, #d9a51f, #f9c42e);
  box-shadow: 0 0 12px rgba(249, 196, 46, 0.45);
}
.np-tl[data-tl-current="month6"] .np-tl__meter--tissue i:nth-child(-n+5) {
  background: linear-gradient(90deg, #1da866, #2ee08e);
  box-shadow: 0 0 12px rgba(46, 224, 142, 0.5);
}
/* бегущий блик на активном сегменте */
.np-tl__meter i::after {
  content: "";
  position: absolute; inset: 0;
  transform: translateX(-110%);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.65), transparent);
}
.np-tl:not([data-tl-current]) .np-tl__meter i:nth-child(1)::after,
.np-tl[data-tl-current="day1"] .np-tl__meter i:nth-child(1)::after,
.np-tl[data-tl-current="week1"] .np-tl__meter i:nth-child(2)::after,
.np-tl[data-tl-current="month1"] .np-tl__meter i:nth-child(3)::after,
.np-tl[data-tl-current="month3"] .np-tl__meter i:nth-child(4)::after,
.np-tl[data-tl-current="month6"] .np-tl__meter i:nth-child(5)::after,
.np-tl[data-tl-current="month9"] .np-tl__meter i:nth-child(6)::after { animation: npTlSweep 2s ease-in-out infinite; }
@keyframes npTlSweep { 0% { transform: translateX(-110%); } 60%, 100% { transform: translateX(110%); } }

/* статусный чип состояния тканей: стресс -> адаптация */
.np-tl__state { display: grid; margin-bottom: 11px; min-height: 26px; }
.np-tl__state-chip {
  grid-area: 1 / 1; justify-self: start;
  display: inline-flex; align-items: center; gap: 7px;
  padding: 4px 11px; border-radius: 999px;
  font-size: 10.5px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.06em;
  border: 1px solid;
  opacity: 0; transform: translateY(6px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.np-tl__state-chip::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: currentColor; box-shadow: 0 0 9px currentColor; }
.np-tl__state-chip[data-state="day1"]   { color: #d4476b; background: rgba(224, 92, 125, 0.10); border-color: rgba(224, 92, 125, 0.32); }
.np-tl__state-chip[data-state="week1"]  { color: #c96f1a; background: rgba(255, 166, 87, 0.13);  border-color: rgba(217, 125, 43, 0.35); }
.np-tl__state-chip[data-state="month1"] { color: #b08908; background: rgba(249, 196, 46, 0.16);  border-color: rgba(199, 145, 16, 0.38); }
.np-tl__state-chip[data-state="month3"] { color: #7e9a1c; background: rgba(197, 224, 84, 0.16);  border-color: rgba(138, 168, 35, 0.38); }
.np-tl__state-chip[data-state="month6"] { color: #1c8c57; background: rgba(32, 199, 122, 0.12);  border-color: rgba(28, 140, 87, 0.35); }
.np-tl__state-chip[data-state="month9"] { color: #149e60; background: rgba(32, 199, 122, 0.14);  border-color: rgba(20, 158, 96, 0.4); }
.np-tl:not([data-tl-current]) .np-tl__state-chip[data-state="day1"],
.np-tl[data-tl-current="day1"] .np-tl__state-chip[data-state="day1"],
.np-tl[data-tl-current="week1"] .np-tl__state-chip[data-state="week1"],
.np-tl[data-tl-current="month1"] .np-tl__state-chip[data-state="month1"],
.np-tl[data-tl-current="month3"] .np-tl__state-chip[data-state="month3"],
.np-tl[data-tl-current="month6"] .np-tl__state-chip[data-state="month6"],
.np-tl[data-tl-current="month9"] .np-tl__state-chip[data-state="month9"] { opacity: 1; transform: none; }

/* тексты метрик (стопкой, переключает JS классом is-active) */
.np-tl__ind-box { display: grid; align-items: start; font-size: 12.5px; line-height: 1.55; color: #51596a; }
.np-tl__ind-box span { grid-area: 1 / 1; opacity: 0; transform: translateY(8px); transition: opacity 0.4s ease, transform 0.4s ease; }
.np-tl__ind-box span.is-active { opacity: 1; transform: none; }

/* ============ ПРАВАЯ КОЛОНКА: этапы ============ */
.np-tl__content { display: grid; align-content: start; }
.np-tl__stage { grid-area: 1 / 1; opacity: 0; transform: translateY(38px); transition: opacity 0.45s ease, transform 0.45s ease; pointer-events: none; }
.np-tl__stage.is-active { opacity: 1; transform: none; pointer-events: auto; }
.np-tl__stage.is-passed { transform: translateY(-38px); }

.np-tl__day {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 800; color: var(--np-navy);
  text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 12px;
}
.np-tl__day::before { content: ""; flex: 0 0 auto; width: 28px; height: 3px; border-radius: 3px; background: linear-gradient(90deg, var(--np-primary), var(--np-green)); }
.np-tl__day::after { content: ""; flex: 1 1 24px; height: 1px; background: linear-gradient(90deg, #dde4ef, transparent); margin-left: 2px; }
.np-tl__day span { flex: 0 0 auto; color: #149e60; padding: 3px 11px; border-radius: 999px; background: rgba(32, 199, 122, 0.10); border: 1px solid rgba(32, 199, 122, 0.26); letter-spacing: 0.05em; }

.np-tl__stage h3 { font-size: clamp(22px, 2vw, 27px); font-weight: 800; color: var(--np-navy); text-transform: uppercase; letter-spacing: -0.3px; line-height: 1.25; margin: 0 0 16px; }

.np-tl__stage ul { list-style: none; padding: 0; margin: 0; }
.np-tl__stage li {
  position: relative;
  padding: 7px 0 7px 32px;
  color: #38404f; font-size: 15px; line-height: 1.55;
  opacity: 0; transform: translateY(14px);
  transition: opacity 0.38s ease, transform 0.38s ease;
}
.np-tl__stage li::before {
  content: "✓";
  position: absolute; left: 0; top: 9px;
  width: 19px; height: 19px;
  background: linear-gradient(135deg, #2bd88b, #17aa64);
  color: #fff; font-size: 11px; font-weight: 700;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 0 4px rgba(32, 199, 122, 0.12), 0 3px 8px rgba(23, 170, 100, 0.3);
}
.np-tl__stage.is-active li { opacity: 1; transform: none; }
.np-tl__stage.is-active li:nth-child(1) { transition-delay: 0.14s; }
.np-tl__stage.is-active li:nth-child(2) { transition-delay: 0.20s; }
.np-tl__stage.is-active li:nth-child(3) { transition-delay: 0.26s; }
.np-tl__stage.is-active li:nth-child(4) { transition-delay: 0.32s; }
.np-tl__stage.is-active li:nth-child(5) { transition-delay: 0.38s; }
.np-tl__stage.is-active li:nth-child(6) { transition-delay: 0.44s; }
.np-tl__stage.is-active li:nth-child(7) { transition-delay: 0.50s; }

/* ============ прогресс-шкала с точками ============ */
.np-tl__line { position: relative; display: grid; grid-template-columns: repeat(6, 1fr); gap: 10px; margin-top: 8px; }
.np-tl__line::before { content: ""; position: absolute; top: 8px; left: 0; right: 0; height: 4px; border-radius: 999px; background: #e4e9f2; }
.np-tl__bar {
  position: absolute; top: 8px; left: 0;
  height: 4px; width: 0; border-radius: 999px;
  background: linear-gradient(90deg, var(--np-primary), var(--np-green));
  box-shadow: 0 0 12px rgba(23, 126, 201, 0.35);
  transition: width 0.15s linear;
}
.np-tl__dot {
  position: relative; z-index: 1;
  background: transparent; border: none; padding: 0; cursor: pointer; font-family: inherit;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.np-tl__dot::before {
  content: "";
  width: 20px; height: 20px; border-radius: 50%;
  background: #fff; border: 2px solid #cfd8e6;
  box-shadow: 0 2px 6px rgba(12, 31, 74, 0.10);
  transition: all 0.25s ease;
}
.np-tl__dot:hover::before { border-color: var(--np-primary); transform: scale(1.08); }
.np-tl__dot:focus-visible { outline: 2px solid var(--np-primary); outline-offset: 4px; border-radius: 12px; }
.np-tl__dot:focus-visible::before { box-shadow: 0 0 0 4px rgba(23, 126, 201, 0.35); border-color: var(--np-primary); }
.np-tl__dot.is-passed::before { background: var(--np-primary); border-color: var(--np-primary); box-shadow: 0 2px 8px rgba(23, 126, 201, 0.35); }
.np-tl__dot.is-active::before {
  background: radial-gradient(circle at 35% 30%, #4fb3f7, var(--np-primary) 70%);
  border-color: var(--np-primary);
  transform: scale(1.18);
  box-shadow: 0 0 0 6px rgba(23, 126, 201, 0.16), 0 4px 12px rgba(23, 126, 201, 0.4);
}
.np-tl__dot span { font-size: 12px; font-weight: 600; color: #5b6577; white-space: nowrap; transition: color 0.2s ease; }
.np-tl__dot.is-passed span { color: var(--np-primary); }
.np-tl__dot.is-active span { color: var(--np-navy); font-weight: 800; }

/* ============ адаптация ============ */
@media (max-width: 700px) {
  .np-tl__visual { grid-template-columns: 1fr; }
  .np-tl__frame { width: 100%; max-width: 300px; margin: 0 auto; }
}
@media (max-width: 600px) {
  .np-tl { margin: 56px auto; }
  .np-tl__stage h3 { font-size: 21px; }
  .np-tl__line { gap: 6px; }
  .np-tl__dot span { font-size: 10px; white-space: normal; text-align: center; }
}

/* низкие ноутбуки: ужимаем колонку видео, чтобы sticky влезал */
@media (min-width: 1025px) and (max-height: 800px) {
  .np-tl__visual { grid-template-columns: minmax(0, 35%) 1fr; }
  .np-tl__ind-box { font-size: 12px; }
  .np-tl__ind { padding: 12px 13px 13px; }
}

@media (prefers-reduced-motion: reduce) {
  .np-tl *, .np-tl *::before, .np-tl *::after { animation: none !important; transition: none !important; }
}


.np-cmp { max-width: 1280px; margin: 96px auto; padding: 0 24px; font-family: Inter, -apple-system, "Segoe UI", sans-serif; }
.np-cmp *, .np-cmp *::before, .np-cmp *::after { box-sizing: border-box; }

/* ---------- Header ---------- */
.np-cmp__header { text-align: center; margin-bottom: 4px; }
.np-cmp__title { margin: 0 0 12px; font-size: clamp(26px, 3.4vw, 38px); font-weight: 800; line-height: 1.12; text-transform: uppercase; letter-spacing: -0.01em; color: var(--np-navy, #0c1f4a); }
.np-cmp__sub { margin: 0 auto; max-width: 520px; font-size: 15.5px; line-height: 1.55; color: #5d6b84; }

/* ---------- Scroll viewport (vertical padding = room for the floating column) ---------- */
.np-cmp__table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; padding: 50px 8px 58px; scrollbar-width: thin; scrollbar-color: #c9d6e6 transparent; }
.np-cmp__table-wrap::-webkit-scrollbar { height: 8px; }
.np-cmp__table-wrap::-webkit-scrollbar-thumb { background: #c9d6e6; border-radius: 999px; }
.np-cmp__table-wrap::-webkit-scrollbar-track { background: transparent; }

/* ---------- Card ---------- */
.np-cmp__table { width: 100%; min-width: 980px; table-layout: fixed; border-collapse: separate; border-spacing: 0; background: #fff; border: 1px solid #e7edf4; border-radius: 18px; box-shadow: 0 30px 60px -38px rgba(12,31,74,.18), 0 1px 2px rgba(12,31,74,.04); }
.np-cmp__col-w-label { width: 218px; }

/* Rounded corners via corner cells — overflow:hidden is forbidden here,
   the winner column must overhang the card. */
.np-cmp__table thead th:first-child { border-top-left-radius: 17px; }
.np-cmp__table thead th:last-child { border-top-right-radius: 17px; }
.np-cmp__table tfoot td:first-child { border-bottom-left-radius: 17px; }
.np-cmp__table tfoot td:last-child { border-bottom-right-radius: 17px; }

/* ---------- Column heads ---------- */
.np-cmp__table thead th { padding: 26px 18px 20px; vertical-align: bottom; text-align: center; border-bottom: 1px solid #e7edf4; font-weight: 600; }
.np-cmp__col-img { display: flex; align-items: center; justify-content: center; width: 150px; height: 96px; margin: 0 auto 12px; padding: 0; background: transparent; }
.np-cmp__col-img img { max-width: 100%; max-height: 100%; object-fit: contain; }
.np-cmp__col-name { display: block; font-size: 15px; font-weight: 700; letter-spacing: -0.01em; line-height: 1.25; color: var(--np-navy, #0c1f4a); }
.np-cmp__col-note { display: block; margin-top: 4px; font-size: 11.5px; font-weight: 500; letter-spacing: .01em; line-height: 1.3; color: #8d99ad; }

/* «Уценённая» 4-я колонка */
.np-cmp__col-img--blur { background: transparent; }
.np-cmp__col-img--blur img { filter: grayscale(1) blur(2.5px) brightness(1.05); opacity: .7; }
.np-cmp__table thead th:last-child .np-cmp__col-name { color: #8b96aa; font-weight: 600; }
.np-cmp__table thead th:last-child .np-cmp__col-note { color: #a3adbe; }
.np-cmp__table tbody td:last-child { color: #8e99ac; }

/* ---------- Floating winner column ----------
   Каждая ячейка несёт одинаковую ambient-тень; clip-path обрезает её точно по
   верх/низ ячейки, и сегменты складываются в одну непрерывную тень колонны. */
.np-cmp__table .is-best { position: relative; z-index: 1; background: #fff; border-left: 1px solid #d8e4f1; border-right: 1px solid #d8e4f1; box-shadow: 0 0 30px -6px rgba(12,31,74,.18); -webkit-clip-path: inset(0 -36px); clip-path: inset(0 -36px); }
.np-cmp__table thead th.is-best { -webkit-clip-path: inset(-90px -36px 0 -36px); clip-path: inset(-90px -36px 0 -36px); padding-top: 30px; border-bottom-color: #eef2f7; }
.np-cmp__table tfoot td.is-best { -webkit-clip-path: inset(0 -36px -90px -36px); clip-path: inset(0 -36px -90px -36px); }

/* Cap — колонка вырастает над картой */
.np-cmp__table thead th.is-best::before { content: ""; position: absolute; left: -1px; right: -1px; top: -22px; height: 26px; z-index: -1; background: #fff; border: 1px solid #d8e4f1; border-bottom: 0; border-radius: 18px 18px 0 0; box-shadow: 0 -10px 24px -14px rgba(12,31,74,.20); }
/* Skirt — и выступает под ней */
.np-cmp__table tfoot td.is-best::before { content: ""; position: absolute; left: -1px; right: -1px; bottom: -22px; height: 26px; z-index: -1; background: #fff; border: 1px solid #d8e4f1; border-top: 0; border-radius: 0 0 18px 18px; box-shadow: 0 24px 34px -18px rgba(12,31,74,.32); }

/* Бейдж-лента седлает верхнюю кромку */
.np-cmp__flag { position: absolute; top: -34px; left: 50%; transform: translateX(-50%); z-index: 3; white-space: nowrap; padding: 7px 16px 8px; border-radius: 999px; font-size: 10.5px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--np-navy, #0c1f4a); background: linear-gradient(180deg, #ffd95f 0%, var(--np-yellow, #f9c42e) 100%); box-shadow: 0 8px 18px -6px rgba(186,136,20,.5), inset 0 1px 0 rgba(255,255,255,.65); }

.np-cmp__table thead th.is-best .np-cmp__col-img { width: 118px; height: 150px; }
.np-cmp__table thead th.is-best .np-cmp__col-name { font-size: 16.5px; font-weight: 800; }
.np-cmp__table thead th.is-best .np-cmp__col-note { color: var(--np-primary, #177ec9); font-weight: 600; }

/* ---------- Body ---------- */
.np-cmp__table tbody th, .np-cmp__table tbody td { padding: 15px 16px; font-size: 13.5px; line-height: 1.45; color: #46556f; vertical-align: middle; text-align: left; transition: background-color .16s ease; }
.np-cmp__table tbody tr + tr th, .np-cmp__table tbody tr + tr td { border-top: 1px solid #f0f4f9; }
.np-cmp__table tbody td.is-best { color: var(--np-navy, #0c1f4a); font-weight: 600; }

/* Лейблы строк: sticky + нумерация 01–12 */
.np-cmp__table tbody { counter-reset: np-cmp-row; }
.np-cmp__table tbody tr { counter-increment: np-cmp-row; }
.np-cmp__table tbody .np-cmp__row-label { position: sticky; left: 0; z-index: 2; background: #fff; padding-left: 56px; text-align: left; font-size: 13px; font-weight: 600; letter-spacing: 0; color: #33415e; }
.np-cmp__row-label::before { content: counter(np-cmp-row, decimal-leading-zero); position: absolute; left: 22px; top: 50%; transform: translateY(-50%); font-size: 10px; font-weight: 700; letter-spacing: .1em; color: #a9b5c9; font-variant-numeric: tabular-nums; }
.np-cmp__corner, .np-cmp__foot-corner { position: sticky; left: 0; z-index: 2; background: #fff; }

/* Ховер строки — полоса сознательно обтекает парящую колонку */
.np-cmp__table tbody tr:hover th, .np-cmp__table tbody tr:hover td { background-color: #f6f9fd; }
.np-cmp__table tbody tr:hover td.is-best { background-color: #fff; }

/* Контент ячейки: иконка + текст, многострочные значения не ломаются */
.np-cmp__cell { display: flex; align-items: flex-start; gap: 9px; max-width: 100%; text-align: left; }
.np-cmp__val { min-width: 0; }

/* ---------- Verdict chips ---------- */
.np-cmp__dot { flex: 0 0 auto; display: inline-flex; align-items: center; justify-content: center; width: 19px; height: 19px; margin-top: 1px; border-radius: 50%; }
.np-cmp__dot::after { font-weight: 800; line-height: 1; }
.np-cmp__dot--g { background: rgba(32,199,122,.15); color: #0e9a5d; }
.np-cmp__dot--g::after { content: "✓"; font-size: 10.5px; }
.np-cmp__dot--y { background: rgba(245,158,11,.16); color: #b25e09; }
.np-cmp__dot--y::after { content: "−"; font-size: 12px; font-weight: 700; }
.np-cmp__dot--r { background: rgba(239,68,68,.12); color: #d23d3d; }
.np-cmp__dot--r::after { content: "✕"; font-size: 9.5px; }
/* В колонке-победителе галочка — сплошная, чуть тяжелее */
.np-cmp__table td.is-best .np-cmp__dot--g { background: var(--np-green, #20c77a); color: #fff; box-shadow: 0 4px 10px -3px rgba(32,199,122,.55); }

/* ---------- Footer row + CTA ---------- */
.np-cmp__table tfoot td { padding: 18px 16px 22px; border-top: 1px solid #eef2f7; }
.np-cmp__table tfoot td.is-best { padding: 18px 10px 22px; border-top-color: #f0f4f9; }
.np-cmp__cta { display: block; width: 100%; margin: 0; padding: 14px 10px; border: 0; border-radius: 999px; cursor: pointer; font-family: inherit; font-size: 13.5px; font-weight: 700; letter-spacing: .01em; white-space: nowrap; color: #fff; background: var(--np-primary, #177ec9); }
.np-cmp__cta:focus-visible { outline: 3px solid rgba(47,147,221,.4); outline-offset: 2px; }

/* ---------- Mobile hint ---------- */
.np-cmp__hint { display: none; margin: -36px 0 14px; text-align: center; font-size: 12px; font-weight: 600; color: #8295b3; }

/* ---------- Legend ---------- */
.np-cmp__legend { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 26px; margin: 0; font-size: 12.5px; color: #7e8aa0; }
.np-cmp__legend-item { display: inline-flex; align-items: center; gap: 8px; }
.np-cmp__legend .np-cmp__dot { width: 17px; height: 17px; margin-top: 0; }


/* Фолбэк: без поддержки clip-path тень колонок переезжает на cap/skirt */
@supports not (clip-path: inset(0 -1px)) {
  .np-cmp__table .is-best { box-shadow: none; clip-path: none; }
  .np-cmp__table thead th.is-best::before { box-shadow: 0 -10px 24px -14px rgba(12,31,74,.2), 14px 0 24px -16px rgba(12,31,74,.28), -14px 0 24px -16px rgba(12,31,74,.28); }
  .np-cmp__table tfoot td.is-best::before { box-shadow: 0 24px 34px -18px rgba(12,31,74,.32), 14px 0 24px -16px rgba(12,31,74,.28), -14px 0 24px -16px rgba(12,31,74,.28); }
}

/* ---------- A11y ---------- */
.np-cmp__sr { position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }

@media (prefers-reduced-motion: reduce) {
  .np-cmp__cta, .np-cmp__table tbody th, .np-cmp__table tbody td { transition: none; }
  .np-cmp__cta:hover, .np-cmp__cta:active { transform: none; }
}

/* ---------- Mobile: горизонтальный скролл + sticky-колонка лейблов ---------- */
@media (max-width: 960px) {
  .np-cmp { margin: 64px auto; padding: 0 16px; }
  .np-cmp__table-wrap { margin: 0 -16px; padding: 46px 16px 52px; }
  .np-cmp__table { min-width: 880px; }
  .np-cmp__col-w-label { width: 152px; }
  .np-cmp__table tbody .np-cmp__row-label { padding-left: 40px; font-size: 12px; }
  .np-cmp__row-label::before { left: 14px; }
  .np-cmp__table tbody th, .np-cmp__table tbody td { padding: 13px 12px; font-size: 12.5px; }
  .np-cmp__table thead th { padding: 22px 12px 16px; }
  .np-cmp__table thead th.is-best { padding-top: 26px; }
  .np-cmp__col-img { width: 112px; height: 72px; margin-bottom: 10px; }
  .np-cmp__table thead th.is-best .np-cmp__col-img { width: 86px; height: 112px; }
  .np-cmp__col-name { font-size: 13px; }
  .np-cmp__table thead th.is-best .np-cmp__col-name { font-size: 14px; }
  .np-cmp__flag { font-size: 9.5px; padding: 6px 13px 7px; top: -31px; }
  .np-cmp__cta { font-size: 13px; padding: 13px 8px; }
  /* Шторка-тень у прилипшей колонки — видно, что таблица скроллится */
  .np-cmp__row-label, .np-cmp__corner, .np-cmp__foot-corner { box-shadow: 10px 0 18px -12px rgba(12,31,74,.18); border-right: 1px solid #e7edf4; }
  .np-cmp__hint { display: block; }
}

/* === OVERALL SCORE === */
.np-score { max-width: 880px; margin: 80px auto; padding: 0 24px; font-family: Inter, sans-serif; }
.np-score__header { text-align: center; margin-bottom: 36px; }
.np-score__title { font-size: 16px; font-weight: 800; color: var(--np-navy); text-transform: uppercase; letter-spacing: 0.15em; margin: 0; }
.np-score__bars { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-bottom: 40px; align-items: end; height: 240px; }
.np-score__bar { position: relative; display: flex; flex-direction: column; justify-content: flex-end; height: 100%; }
.np-score__bar-fill { display: flex; align-items: flex-start; justify-content: center; padding-top: 14px; border-radius: 10px 10px 0 0; color: #fff; font-weight: 800; font-size: 19px; min-height: 50px; }
/* Рост столбиков — чистый CSS (scroll-driven), без JS: Vue-перерисовки не страшны,
   без поддержки animation-timeline столбики просто статичные */
@supports (animation-timeline: view()) {
  .np-score__bar-fill { transform-origin: bottom; animation: npScoreGrow 1ms linear both; animation-timeline: view(); animation-range: entry 10% entry 65%; }
  .np-score__bar:nth-child(2) .np-score__bar-fill { animation-range: entry 20% entry 75%; }
  .np-score__bar:nth-child(3) .np-score__bar-fill { animation-range: entry 30% entry 85%; }
  .np-score__bar:nth-child(4) .np-score__bar-fill { animation-range: entry 40% entry 95%; }
}
@keyframes npScoreGrow { from { transform: scaleY(0); } to { transform: scaleY(1); } }
.np-score__leader { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); z-index: 2; white-space: nowrap; padding: 5px 12px; border-radius: 999px; background: var(--np-navy); color: #ffd95f; font-size: 10.5px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; box-shadow: 0 6px 14px rgba(12, 31, 74, 0.3); }
.np-score__bar--gold .np-score__bar-fill { background: linear-gradient(180deg, #ffd95f 0%, #f3b811 100%); color: var(--np-navy); box-shadow: 0 16px 36px -12px rgba(243, 184, 17, 0.55); }
.np-score__bar--navy .np-score__bar-fill { background: linear-gradient(180deg, #1b3a75 0%, #0c1f4a 100%); }
.np-score__bar--gray .np-score__bar-fill { background: linear-gradient(180deg, #aab3c0 0%, #8b95a3 100%); }
.np-score__bar--red .np-score__bar-fill { background: linear-gradient(180deg, #f0a09e 0%, #e1716e 100%); }
.np-score__bar-label { padding-top: 10px; text-align: center; font-size: 12px; font-weight: 700; color: var(--np-navy); text-transform: uppercase; letter-spacing: 0.05em; }

.np-score__pills { background: linear-gradient(180deg, #ffffff 0%, #f4f8fc 100%); border: 1px solid #e3ebf4; border-radius: 18px; padding: 24px 22px; margin-bottom: 30px; box-shadow: 0 8px 24px rgba(12, 31, 74, 0.05); }
.np-score__pills-intro { font-size: 15px; color: var(--np-navy); text-align: center; margin: 0 0 16px; font-weight: 700; }
.np-score__pills-row { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.np-score__pill { display: inline-flex; align-items: center; gap: 7px; background: #fff; border: 1px solid #e3eaf3; border-radius: 999px; padding: 8px 14px; font-size: 13px; font-weight: 600; color: var(--np-navy); box-shadow: 0 2px 8px rgba(12, 31, 74, 0.04); }
.np-score__pill i { display: inline-flex; align-items: center; justify-content: center; width: 15px; height: 15px; border-radius: 50%; background: var(--np-green); flex: 0 0 auto; }
.np-score__pill i::before { content: "✓"; color: #fff; font-size: 9px; font-weight: 800; line-height: 1; }

.np-score__cta-wrap { text-align: center; margin-bottom: 36px; }
.np-score__cta { display: inline-block; padding: 18px 48px; background: var(--np-primary); color: #fff; border: none; border-radius: 999px; font-size: 17px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em; cursor: pointer; box-shadow: 0 8px 20px rgba(23,126,201,0.35); font-family: inherit; transition: background 0.15s, transform 0.15s, box-shadow 0.2s; }
.np-score__cta:hover { background: #1265a1; transform: translateY(-1px); box-shadow: 0 10px 26px rgba(23,126,201,0.5); }

.np-score__trust { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px 32px; }
@media (max-width: 600px) { .np-score__trust { grid-template-columns: 1fr; } }
.np-score__trust-item { display: flex; align-items: flex-start; gap: 14px; }
.np-score__trust-icon { flex: 0 0 auto; width: 38px; height: 38px; border-radius: 10px; background: rgba(12, 31, 74, 0.06); display: flex; align-items: center; justify-content: center; color: var(--np-navy); }
.np-score__trust-icon svg { width: 20px; height: 20px; display: block; }
@media (prefers-reduced-motion: reduce) { .np-score__bar-fill { animation: none !important; } }
.np-score__trust-title { font-size: 14px; font-weight: 700; color: var(--np-navy); margin-bottom: 2px; }
.np-score__trust-desc { font-size: 13px; color: #666; line-height: 1.45; }

/* === DESCRIPTION === */
.np-pdp-desc { max-width: 880px; margin: 64px auto; padding: 0 24px; font-family: Inter, sans-serif; }
.np-pdp-desc__title { font-size: 28px; font-weight: 700; color: var(--np-navy); text-transform: uppercase; margin: 0 0 18px; text-align: center; }
.np-pdp-desc__body { font-size: 16px; line-height: 1.7; color: #333; }
.np-pdp-desc__body p { margin: 0 0 14px; }
.np-pdp-desc__body h2 { font-size: 22px; font-weight: 800; color: var(--np-navy); line-height: 1.25; margin: 30px 0 12px; }
.np-pdp-desc__body h3 { font-size: 18px; font-weight: 800; color: var(--np-navy); line-height: 1.3; margin: 24px 0 10px; }
.np-pdp-desc__body h2:first-child, .np-pdp-desc__body h3:first-child { margin-top: 0; }
.np-pdp-desc__body ul, .np-pdp-desc__body ol { margin: 0 0 16px; padding-left: 22px; }
.np-pdp-desc__body ul { list-style: disc; }
.np-pdp-desc__body ol { list-style: decimal; }
.np-pdp-desc__body li { margin: 0 0 8px; line-height: 1.6; }
.np-pdp-desc__body li::marker { color: var(--np-primary); }
.np-pdp-desc__body strong, .np-pdp-desc__body b { color: var(--np-navy); font-weight: 800; }
.np-pdp-desc__body a { color: var(--np-primary); text-decoration: underline; }

/* === VIDEO PLACEHOLDER === */
.np-pdp-video { max-width: 1100px; margin: 64px auto; padding: 0 24px; font-family: Inter, sans-serif; }
.np-pdp-video__title { font-size: 28px; font-weight: 700; color: var(--np-navy); text-transform: uppercase; margin: 0 0 24px; text-align: center; }
.np-pdp-video__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
@media (max-width: 700px) { .np-pdp-video__grid { grid-template-columns: 1fr; } }
.np-pdp-video__card { background: var(--np-bg-soft); aspect-ratio: 16 / 9; border-radius: 16px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; color: #888; }
.np-pdp-video__icon { width: 64px; height: 64px; background: var(--np-primary); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 24px; padding-left: 6px; }
.np-pdp-video__txt { font-size: 14px; font-weight: 600; }


/* === WHY BETTER (np-why4) === */
/* Геометрия по референсу: прозрачная карточка с хейрлайн-рамкой (radius 20),
   фото full-bleed со скруглением всех углов, левый заголовок, воздух в тексте. */
.np-why4 { max-width: 1280px; margin: 80px auto; padding: 0 24px; font-family: Inter, sans-serif; }
.np-why4__header { text-align: left; max-width: 820px; margin-bottom: 40px; }
.np-why4__title { font-size: clamp(28px, 3.2vw, 40px); font-weight: 700; color: var(--np-navy); letter-spacing: -0.6px; line-height: 1.15; margin: 0 0 14px; }
.np-why4__sub { font-size: 18px; color: #46556f; line-height: 1.5; margin: 0; }
.np-why4__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
@media (max-width: 1024px) { .np-why4__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .np-why4__grid { grid-template-columns: 1fr; } }
.np-why4__card { display: flex; flex-direction: column; background: transparent; border: 1px solid rgba(12, 31, 74, 0.08); border-radius: 20px; overflow: visible; box-shadow: none; }
.np-why4__img { aspect-ratio: 1 / 1; overflow: hidden; border-radius: 20px; margin: 0; }
.np-why4__img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.np-why4__card h3 { font-size: 21px; font-weight: 700; color: var(--np-navy); letter-spacing: -0.2px; line-height: 1.25; margin: 28px 26px 0; }
.np-why4__card p { font-size: 15px; color: #46556f; line-height: 1.6; margin: 14px 26px 34px; }
@media (max-width: 620px) {
  .np-why4__header { margin-bottom: 28px; }
  .np-why4__card h3 { margin: 22px 20px 0; }
  .np-why4__card p { margin: 12px 20px 26px; }
}


/* === BUNDLES + GUARANTEES === */
.np-bnd { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 26px; }
.np-bnd__card { position: relative; background: #fff; border: 1.5px solid #e3e9f2; border-radius: 14px; padding: 18px 16px 15px; }
.np-bnd__card--active { border: 2px solid var(--np-navy); box-shadow: 0 8px 22px rgba(12, 31, 74, 0.08); }
.np-bnd__card--wide { grid-column: 1 / -1; }
.np-bnd__flag { position: absolute; top: -10px; right: 12px; background: var(--np-yellow); color: var(--np-navy); font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.05em; line-height: 1; padding: 5px 10px; border-radius: 6px; box-shadow: 0 4px 10px rgba(12, 31, 74, 0.15); white-space: nowrap; }
.np-bnd__card h4 { margin: 0 0 3px; font-size: 14.5px; font-weight: 800; color: var(--np-navy); text-transform: uppercase; text-align: center; letter-spacing: 0.02em; }
.np-bnd__sub { margin: 0 0 12px; font-size: 12px; color: #67748c; text-align: center; }
.np-bnd__bars .ext-bar + .ext-bar { margin-top: 6px; }
.np-bnd__card--wide .np-bnd__bars { max-width: 340px; margin: 0 auto; }
.np-bnd__desc { margin: 11px 0 0; font-size: 12.5px; line-height: 1.5; color: #51596a; text-align: center; }
@media (max-width: 640px) { .np-bnd { grid-template-columns: 1fr; } }

.np-pdp__guar { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 22px; margin-top: 20px; padding-top: 18px; border-top: 1px solid #eef0f3; }
.np-guar__item { display: flex; gap: 11px; align-items: flex-start; }
.np-guar__ic { flex: 0 0 auto; width: 22px; height: 22px; color: var(--np-navy); margin-top: 1px; }
.np-guar__ic svg { width: 100%; height: 100%; display: block; }
.np-guar__t { font-size: 13.5px; font-weight: 700; color: var(--np-navy); margin: 0 0 3px; }
.np-guar__d { font-size: 12px; line-height: 1.45; color: #67748c; margin: 0; }
@media (max-width: 480px) { .np-pdp__guar { grid-template-columns: 1fr; } }


/* === HOW IT WORKS (np-how) === */
.np-how { max-width: 1080px; margin: 80px auto; padding: 0 24px; font-family: Inter, sans-serif; }
.np-how__title { font-size: clamp(28px, 3.2vw, 40px); font-weight: 700; color: var(--np-navy); letter-spacing: -0.6px; line-height: 1.15; margin: 0 0 16px; }
.np-how__intro { font-size: 17px; line-height: 1.6; color: #46556f; max-width: 900px; margin: 0 0 30px; }
.np-how__intro strong { color: var(--np-navy); }
.np-how__item { border-top: 1px solid #e7edf4; }
.np-how__item:last-of-type { border-bottom: 1px solid #e7edf4; }
.np-how__sum { display: flex; align-items: center; gap: 14px; padding: 22px 4px; cursor: pointer; list-style: none; }
.np-how__sum::-webkit-details-marker { display: none; }
.np-how__ic { flex: 0 0 auto; width: 24px; height: 24px; color: var(--np-navy); }
.np-how__ic svg { width: 100%; height: 100%; display: block; }
.np-how__sum h3 { font-size: 19px; font-weight: 700; color: var(--np-navy); letter-spacing: -0.2px; margin: 0; }
.np-how__sum:hover h3 { color: var(--np-primary); }
.np-how__sum::after { content: "+"; margin-left: auto; font-size: 28px; font-weight: 300; color: #8b97ad; line-height: 1; flex: 0 0 auto; }
.np-how__item[open] .np-how__sum::after { content: "\00d7"; font-size: 24px; }
.np-how__body { padding: 2px 4px 26px; max-width: 980px; }
.np-how__body p { font-size: 15.5px; line-height: 1.65; color: #46556f; margin: 0 0 14px; }
.np-how__body p:last-child { margin-bottom: 0; }
.np-how__body strong { color: var(--np-navy); }
@media (max-width: 600px) {
  .np-how { margin: 56px auto; }
  .np-how__sum { padding: 18px 2px; }
  .np-how__sum h3 { font-size: 16.5px; }
}


/* === TRUST STRIP (np-strip) === */
/* Геометрия по референсу: кремовый фон, паддинги 72px, текст 20/500, иконки 24px */
.np-strip { background: rgb(246, 244, 238); padding: 72px 0; margin: 72px 0; font-family: Inter, sans-serif; }
.np-strip__inner { max-width: 1280px; margin: 0 auto; padding: 0 24px; display: grid; grid-template-columns: repeat(4, 1fr); }
.np-strip__item { position: relative; display: flex; align-items: center; gap: 20px; padding: 4px 32px 4px 28px; font-size: 19px; font-weight: 500; color: #1d2733; line-height: 1.3; letter-spacing: -0.1px; }
.np-strip__item:first-child { padding-left: 0; }
.np-strip__item + .np-strip__item::before { content: ""; position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 1px; height: 52px; background: rgba(29, 39, 51, 0.14); }
.np-strip__ic { flex: 0 0 auto; width: 24px; height: 24px; color: #1d2733; }
.np-strip__ic svg { width: 100%; height: 100%; display: block; stroke-width: 1.6; }
@media (max-width: 1100px) {
  .np-strip { padding: 52px 0; }
  .np-strip__item { font-size: 16.5px; gap: 14px; padding: 4px 20px 4px 18px; }
}
@media (max-width: 900px) {
  .np-strip__inner { grid-template-columns: 1fr 1fr; gap: 26px 0; }
  .np-strip__item:nth-child(odd) { padding-left: 0; }
  .np-strip__item:nth-child(3)::before { display: none; }
}
@media (max-width: 520px) {
  .np-strip { padding: 40px 0; margin: 56px 0; }
  .np-strip__inner { grid-template-columns: 1fr; gap: 20px; }
  .np-strip__item { padding: 0; font-size: 16px; }
  .np-strip__item::before { display: none !important; }
}

/* === SUPPORT CTA (np-sup) === */
.np-sup { max-width: 1280px; margin: 80px auto; padding: 0 24px; font-family: Inter, sans-serif; }
.np-sup__inner { display: grid; grid-template-columns: minmax(0, 0.95fr) 1.05fr; gap: 22px; align-items: stretch; }
.np-sup__photo { border-radius: 24px; overflow: hidden; aspect-ratio: 1 / 1; }
.np-sup__photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.np-sup__panel { display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; background: rgb(246, 244, 238); border: none; border-radius: 24px; padding: 56px 48px; }
.np-sup__badge-img { width: 110px; height: auto; margin-bottom: 24px; }
.np-sup__title { font-size: clamp(26px, 2.8vw, 36px); font-weight: 700; color: var(--np-navy); letter-spacing: -0.5px; line-height: 1.2; margin: 0 0 16px; max-width: 480px; }
.np-sup__sub { font-size: 16.5px; line-height: 1.55; color: #36435e; margin: 0 0 18px; max-width: 520px; }
.np-sup__text { font-size: 15px; line-height: 1.6; color: #46556f; margin: 0 0 14px; max-width: 520px; }
.np-sup__text strong { color: var(--np-navy); }
.np-sup__cta { display: inline-flex; align-items: center; gap: 10px; margin-top: 14px; padding: 16px 26px; border: 1px solid rgba(29, 39, 51, 0.3); border-radius: 12px; cursor: pointer; font-family: inherit; font-size: 15.5px; font-weight: 600; color: #1d2733; background: transparent; transition: background-color 0.18s ease, border-color 0.18s ease; }
.np-sup__cta svg { width: 18px; height: 18px; transition: transform 0.18s ease; }
.np-sup__cta:hover { background: #fff; border-color: #1d2733; }
.np-sup__cta:hover svg { transform: translateX(3px); }
@media (max-width: 900px) {
  .np-sup__inner { grid-template-columns: 1fr; }
  .np-sup__photo { aspect-ratio: 1 / 1; }
  .np-sup__panel { padding: 40px 22px; }
}


/* === VIDEO BAND (np-vband) === */
.np-vband { position: relative; height: min(82vh, 660px); overflow: hidden; }
.np-vband__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.np-vband__shade { position: absolute; inset: 0; background: radial-gradient(85% 70% at 50% 45%, rgba(8, 16, 34, 0.42) 0%, rgba(8, 16, 34, 0.22) 55%, rgba(8, 16, 34, 0.38) 100%); pointer-events: none; }
.np-vband__content { position: relative; z-index: 1; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 0 24px; color: #fff; font-family: Inter, sans-serif; }
.np-vband__content h2 { font-size: clamp(32px, 4.6vw, 58px); font-weight: 700; letter-spacing: -1px; line-height: 1.1; margin: 0 0 16px; text-shadow: 0 2px 18px rgba(8, 16, 34, 0.35); }
.np-vband__content p { font-size: 18px; line-height: 1.55; max-width: 580px; margin: 0; color: rgba(255, 255, 255, 0.94); text-shadow: 0 1px 12px rgba(8, 16, 34, 0.35); }
.np-vband__pause { position: absolute; right: 26px; bottom: 56px; z-index: 2; width: 46px; height: 46px; border-radius: 50%; border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; background: rgba(255, 255, 255, 0.85); -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); transition: background-color 0.15s ease, transform 0.15s ease; }
.np-vband__pause:hover { background: #fff; transform: scale(1.06); }
.np-vband__pause-ic { display: block; position: relative; width: 12px; height: 14px; }
.np-vband__pause-ic::before, .np-vband__pause-ic::after { content: ""; position: absolute; top: 0; bottom: 0; width: 4px; border-radius: 1.5px; background: #1d2733; }
.np-vband__pause-ic::before { left: 0; }
.np-vband__pause-ic::after { right: 0; }
.np-vband__pause.is-paused .np-vband__pause-ic::before { width: 0; background: transparent; border-left: 12px solid #1d2733; border-top: 7px solid transparent; border-bottom: 7px solid transparent; border-radius: 0; left: 2px; }
.np-vband__pause.is-paused .np-vband__pause-ic::after { display: none; }
@media (max-width: 600px) { .np-vband { height: 60vh; } .np-vband__content p { font-size: 15.5px; } .np-vband__pause { right: 16px; bottom: 44px; } }

/* стык секций: полоса со скруглённым верхом, «Как работает» наезжает на видео листом */
.np-strip { margin: 72px 0 0; border-radius: 30px 30px 0 0; }
.np-how { max-width: none; position: relative; z-index: 1; margin: -40px 0 80px; background: #fff; border-radius: 30px 30px 0 0; padding: 64px 24px 8px; }
.np-how > * { max-width: 1032px; margin-left: auto; margin-right: auto; }
@media (max-width: 600px) { .np-how { padding: 44px 16px 4px; margin-top: -32px; border-radius: 22px 22px 0 0; } }


/* === np-how: метрики референса === */
.np-how > * { max-width: 1200px; }
.np-how__title { font-size: clamp(30px, 3.6vw, 48px); font-weight: 600; letter-spacing: -0.02em; margin: 0 auto 18px; }
.np-how__intro { font-size: 18px; line-height: 1.6; max-width: 1200px; margin: 0 auto 34px; }
.np-how__item { border-top: 1px solid rgba(12, 31, 74, 0.08); }
.np-how__item:last-of-type { border-bottom: 1px solid rgba(12, 31, 74, 0.08); }
.np-how__sum { padding: 32px 2px; gap: 13px; }
.np-how__sum h3 { font-size: 20px; font-weight: 500; letter-spacing: 0; }
.np-how__sum:hover h3 { color: var(--np-navy); opacity: 0.75; }
/* тонкий плюс, поворачивается в крест */
.np-how__sum::after {
  content: "";
  width: 14px; height: 14px;
  margin-left: auto; flex: 0 0 auto;
  background:
    linear-gradient(currentColor, currentColor) center / 14px 1.5px no-repeat,
    linear-gradient(currentColor, currentColor) center / 1.5px 14px no-repeat;
  color: #1d2733;
  font-size: 0;
  transition: transform 0.25s ease;
}
.np-how__item[open] .np-how__sum::after { content: ""; transform: rotate(45deg); }
.np-how__body { padding: 0 2px 32px; max-width: none; }
.np-how__body p { font-size: 16px; line-height: 1.6; color: rgba(29, 39, 51, 0.62); margin: 0 0 14px; }
.np-how__body strong { color: rgba(12, 31, 74, 0.9); }
@media (max-width: 600px) {
  .np-how__sum { padding: 22px 2px; }
  .np-how__sum h3 { font-size: 17px; }
  .np-how__body p { font-size: 15px; }
}

/* === РЕАЛЬНЫЕ РЕЗУЛЬТАТЫ (np-rr) === */
.np-rr { max-width: 1280px; margin: 0 auto; padding: 64px 20px 8px; }
.np-rr__title { font-size: clamp(28px, 3.6vw, 42px); font-weight: 800; text-transform: uppercase; text-align: center; letter-spacing: -0.01em; color: #0c1f4a; margin: 0 0 36px; }
.np-rr__inner { display: grid; grid-template-columns: minmax(0, 440px) 1fr; gap: 28px; align-items: stretch; }
.np-rr__photo { position: relative; border-radius: 24px; overflow: hidden; background: linear-gradient(160deg, #fbfdff, #eef4fa); border: 1px solid #e7edf4; }
.np-rr__photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; padding: 30px; display: block; }
.np-rr__stats { display: flex; flex-direction: column; gap: 12px; }
.np-rr__card { display: flex; align-items: center; gap: 22px; flex: 1; background: #fff; border: 1px solid #e7edf4; border-radius: 16px; padding: 18px 26px; box-shadow: 0 8px 22px rgba(12, 31, 74, 0.05); }
.np-rr__num { flex: 0 0 130px; text-align: center; }
.np-rr__num b { display: block; font-size: 38px; font-weight: 800; line-height: 1; color: #0c1f4a; font-variant-numeric: tabular-nums; letter-spacing: -0.02em; }
.np-rr__num span { display: block; margin-top: 7px; font-size: 10.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: #8d9cb6; line-height: 1.3; }
.np-rr__text { margin: 0; font-size: 15.5px; line-height: 1.5; color: #3a4a6e; }
.np-rr__note { text-align: center; font-size: 12.5px; color: #9aa8c0; margin: 26px 0 0; }
@media (max-width: 860px) {
    .np-rr { padding: 44px 0 4px; }
    .np-rr__title { margin-bottom: 26px; }
    .np-rr__inner { grid-template-columns: 1fr; gap: 18px; }
    .np-rr__photo { height: 340px; }
    .np-rr__card { padding: 14px 16px; gap: 14px; }
    .np-rr__num { flex-basis: 92px; }
    .np-rr__num b { font-size: 30px; }
    .np-rr__text { font-size: 14px; }
}

/* === БАННЕР ГАРАНТИИ (np-grnt) === */
.np-grnt { max-width: 860px; margin: 0 auto; padding: 8px 20px 12px; }
.np-grnt__box { display: flex; align-items: center; gap: 28px; background: #fff; border: 2px solid #177ec9; border-radius: 16px; padding: 26px 34px; box-shadow: 0 10px 26px rgba(23, 126, 201, 0.07); }
.np-grnt__icon { flex: 0 0 88px; display: grid; place-items: center; }
.np-grnt__icon svg, .np-grnt__icon img { width: 84px; height: 84px; display: block; object-fit: contain; }
.np-grnt__body { min-width: 0; }
.np-grnt__label { margin: 0 0 4px; font-size: 14px; font-weight: 700; color: #1d2733; }
.np-grnt__title { margin: 0 0 8px; font-size: 20px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.01em; color: #0c1f4a; line-height: 1.15; }
.np-grnt__desc { margin: 0; font-size: 14.5px; line-height: 1.55; color: #5b6b8c; max-width: 760px; }
@media (max-width: 680px) {
    .np-grnt__box { flex-direction: column; text-align: center; gap: 16px; padding: 22px 18px; }
    .np-grnt__icon { flex-basis: auto; }
    .np-grnt__desc { max-width: none; }
}


/* === ОБЩИЙ РЕЙТИНГ / ЧТО ВЫ ПОЛУЧАЕТЕ (np-score, редизайн P1) === */
.np-score { max-width: 1180px; margin: 0 auto; padding: 64px 20px 8px; background: transparent; }
.np-score__head { text-align: center; margin-bottom: 28px; }
.np-score__eyebrow { display: inline-flex; align-items: center; gap: 7px; font-size: 11.5px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: #177ec9; background: linear-gradient(180deg,#eef6fd,#e6f2fb); border: 1px solid #d6e8f7; padding: 6px 14px; border-radius: 999px; margin-bottom: 16px; }
.np-score__eyebrow svg { width: 14px; height: 14px; stroke: #177ec9; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.np-score__h2 { font-size: clamp(24px,3vw,34px); font-weight: 800; text-transform: uppercase; letter-spacing: .01em; line-height: 1.12; color: #0c1f4a; margin: 0; }
.np-score__h2 .ac { background: linear-gradient(90deg,#177ec9,#2bb6e0); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.np-score__sub { margin: 10px 0 0; font-size: 15px; color: #6b7a95; }
.np-score__sub b { color: #0c1f4a; font-weight: 600; }
.np-score__panel { position: relative; background: linear-gradient(160deg,#ffffff 0%,#f5f9fd 100%); border: 1px solid #e7edf4; border-radius: 22px; box-shadow: 0 1px 2px rgba(12,31,74,.04), 0 22px 50px -28px rgba(12,31,74,.28); padding: 30px 30px 26px; overflow: hidden; }
.np-score__panel::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 3px; background: linear-gradient(90deg,#177ec9,#2bb6e0 55%,#20c77a); }
.np-score__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 6px 26px; }
.np-score__it { display: flex; align-items: center; gap: 13px; padding: 9px 6px; border-radius: 12px; transition: background .18s ease, transform .18s ease, box-shadow .18s ease; }
.np-score__it:hover { background: #fff; transform: translateY(-1px); box-shadow: 0 8px 20px rgba(12,31,74,.06); }
.np-score__tile { flex: 0 0 auto; width: 40px; height: 40px; border-radius: 12px; display: flex; align-items: center; justify-content: center; background: linear-gradient(145deg,#1f8fd6,#27a7df); box-shadow: 0 6px 14px rgba(23,126,201,.28), inset 0 1px 0 rgba(255,255,255,.35); }
.np-score__tile svg { width: 21px; height: 21px; stroke: #fff; fill: none; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.np-score__it--key .np-score__tile { background: linear-gradient(145deg,#13b06f,#23cd84); box-shadow: 0 6px 14px rgba(32,199,122,.3), inset 0 1px 0 rgba(255,255,255,.35); }
.np-score__it-txt { font-size: 14px; font-weight: 600; line-height: 1.25; color: #0c1f4a; }
@media (max-width: 900px) { .np-score__grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px) { .np-score { padding: 44px 16px 4px; } .np-score__grid { grid-template-columns: 1fr; } .np-score__panel { padding: 22px 18px; } }
