/* src/styles/main.css — СпецТехГид */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
  --navy: #0b1f44;
  --navy-700: #16306b;
  --navy-50: #eef1f9;
  --bg: #f0f2f8;
  --card: #ffffff;
  --pill: #e4e7f5;
  --accent: #ff7a00;
  --accent-hover: #e66b00;
  --text: #1a2233;
  --muted: #6b7280;
  --border: #e5e8f1;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 6px 24px rgba(11,31,68,.08);
  --shadow-lg: 0 12px 40px rgba(11,31,68,.12);
  --maxw: 1180px;
  --font: 'Manrope', system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: var(--font); color: var(--text); background: var(--bg); line-height: 1.6; -webkit-font-smoothing: antialiased; }

h1, h2, h3, h4 { color: var(--navy); font-weight: 800; line-height: 1.18; letter-spacing: -.01em; margin: 1.5em 0 .6em; }
h1 { font-size: clamp(28px, 4vw, 44px); margin-top: .2em; }
h2 { font-size: clamp(22px, 2.8vw, 30px); margin-top: 1.8em; }
h3 { font-size: clamp(17px, 2vw, 20px); }
p { margin: .8em 0; }
a { color: var(--navy-700); text-decoration: none; transition: color .15s; }
a:hover { color: var(--accent); }
img { max-width: 100%; height: auto; }

/* ─── Header ──────────────────────────────────────────── */
.site-header {
  background: #fff;
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 100;
}
.site-header > * { max-width: var(--maxw); margin: 0 auto; }
.site-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px;
}
.site-header__logo {
  font-weight: 800; font-size: 22px; color: var(--navy);
  letter-spacing: -.02em;
  display: inline-flex; align-items: center; gap: 10px;
}
.site-header__logo-img {
  width: 38px; height: 38px; object-fit: contain; display: block;
}
.site-header__nav { display: flex; gap: 28px; }
.site-header__nav a {
  color: var(--text); font-weight: 600; font-size: 15px;
  padding: 6px 0; position: relative;
}
.site-header__nav a:hover { color: var(--accent); }
.site-header__nav a.nav-active { color: var(--accent); }
.site-header__nav a.nav-active::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -2px; height: 2px;
  background: var(--accent); border-radius: 2px;
}

/* ─── Breadcrumbs ─────────────────────────────────────── */
.breadcrumbs { max-width: var(--maxw); margin: 0 auto; padding: 14px 20px 0; color: var(--muted); font-size: 13px; }
.breadcrumbs a { color: var(--muted); }
.breadcrumbs a:hover { color: var(--accent); }
.breadcrumbs .sep { margin: 0 8px; opacity: .5; }

/* ─── Page container ──────────────────────────────────── */
.page { max-width: var(--maxw); margin: 0 auto; padding: 16px 20px 80px; }

/* ─── Pill ────────────────────────────────────────────── */
.pill {
  display: inline-block; background: var(--pill); color: var(--navy);
  border-radius: 999px; padding: 5px 14px; font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .06em;
}

/* ─── Model hero (BigRentz-style 2-column) ───────────── */
.model-hero {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: center;
  margin: 8px 0 40px;
}
.model-hero__photo {
  display: flex; align-items: center; justify-content: center;
  background: #fff;
  border-radius: var(--radius);
  min-height: 320px;
  padding: 20px;
}
.model-hero__photo .card__img {
  max-width: 100%; max-height: 380px;
  object-fit: contain;
  background: transparent;
  box-shadow: none;
  margin: 0; padding: 0;
}
.model-hero__photo .card__placeholder {
  width: 100%; max-width: none; margin: 0;
  background: linear-gradient(135deg, var(--navy-50) 0%, #fff 60%, #fff7ef 100%);
}
.model-hero__meta { display: flex; flex-direction: column; gap: 14px; }
.hero-meta__pill {
  display: inline-block; align-self: flex-start;
  color: var(--accent); font-weight: 700;
  font-size: 12px; letter-spacing: .12em; text-transform: uppercase;
}
.hero-meta__h1 {
  font-size: clamp(28px, 4vw, 42px);
  margin: 4px 0 0; line-height: 1.1;
}
.hero-meta__sub {
  color: var(--muted); margin: 0;
  font-size: 16px;
}
.hero-meta__lead {
  margin: 4px 0 0;
  font-size: 15px; line-height: 1.6;
}
/* ─── Price cards (Two side-by-side cards, Variant B) ── */
.price-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 8px 0 0;
}
.price-cards__item {
  position: relative;
  border-radius: var(--radius);
  padding: 14px 18px 16px;
  display: flex; flex-direction: column; gap: 4px;
  overflow: hidden;
  transition: transform .15s ease;
}
.price-cards__item:hover { transform: translateY(-2px); }

.price-cards__item--primary {
  background: linear-gradient(135deg, #fff 0%, #fffaf3 100%);
  box-shadow: 0 4px 14px rgba(255,122,0,.12);
  border: 1px solid #ffe1bf;
}
.price-cards__item--primary::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0;
  width: 4px; background: var(--accent);
}
.price-cards__item--primary .price-cards__label { color: var(--accent); }
.price-cards__item--primary .price-cards__value { color: var(--navy); }

.price-cards__item--secondary {
  background: var(--navy-50);
  border: 1px solid var(--border);
}
.price-cards__item--secondary .price-cards__label { color: var(--muted); }
.price-cards__item--secondary .price-cards__value { color: var(--navy-700); opacity: .85; }

.price-cards__label {
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .12em;
}
.price-cards__value {
  font-size: clamp(22px, 2.8vw, 28px);
  font-weight: 800; line-height: 1.1;
  letter-spacing: -.01em;
  white-space: nowrap;
}
.price-cards__note {
  font-size: 12px; color: var(--muted); font-style: italic; margin-top: 2px;
}
.price-cards__hint {
  margin: 6px 2px 0;
  font-size: 11px; color: var(--muted);
  letter-spacing: .02em;
}

@media (max-width: 480px) {
  .price-cards { grid-template-columns: 1fr; }
}

/* унаследованный legacy img-стиль (используется на старых хабах) */
.card__img {
  display: block;
  width: 100%;
  max-height: 360px;
  object-fit: contain;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--navy-50) 0%, #fff 100%);
  margin: 16px 0 24px;
  box-shadow: var(--shadow);
  padding: 12px;
}

/* ─── Placeholder when no photo yet ──────────────────── */
.card__placeholder {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  width: 100%; max-width: 720px; aspect-ratio: 16/7;
  background: linear-gradient(135deg, var(--navy-50) 0%, #fff 60%, #fff7ef 100%);
  border: 1px dashed #cdd4e6;
  border-radius: var(--radius);
  color: var(--navy);
  margin: 16px 0 24px; padding: 24px;
  box-shadow: var(--shadow);
  text-align: center;
}
.card__placeholder svg { color: var(--navy-700); opacity: .55; margin-bottom: 12px; }
.card__placeholder-text { font-size: 22px; font-weight: 800; color: var(--navy); letter-spacing: -.01em; }
.card__placeholder-sub { font-size: 13px; color: var(--muted); margin-top: 4px; text-transform: uppercase; letter-spacing: .08em; font-weight: 600; }

/* ─── Price summary bar ───────────────────────────────── */
.price-summary {
  display: inline-block;
  background: linear-gradient(135deg, #fff 0%, var(--navy-50) 100%);
  border: 1px solid var(--border); border-left: 4px solid var(--accent);
  padding: 14px 20px; border-radius: var(--radius-sm);
  font-size: 16px; margin: 8px 0 24px; box-shadow: var(--shadow);
}
.price-summary b { color: var(--navy); font-weight: 800; font-size: 18px; }

/* ─── Lead paragraph ──────────────────────────────────── */
.lead {
  font-size: 17px; line-height: 1.65; color: var(--text);
  background: #fff; border-radius: var(--radius);
  padding: 24px 28px; box-shadow: var(--shadow);
  margin: 24px 0; max-width: 760px;
}
/* блок категорий/разделов как плашки-капсулы */
.stub-links { margin: 44px 0 24px; }
.stub-links__label {
  font-size: 13px; font-weight: 700; color: var(--muted);
  text-transform: uppercase; letter-spacing: .08em; margin-bottom: 16px;
}
/* ровная сетка: теги выровнены по колонкам слева */
.stub-links__tags {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 10px 12px;
}
.stub-tag {
  display: inline-flex; align-items: center; justify-self: start;
  background: var(--navy-50); color: var(--navy);
  border: 1px solid rgba(11,31,68,.08);
  border-radius: 20px; padding: 9px 18px;
  font-size: 14px; font-weight: 600;
  transition: background .15s, color .15s, border-color .15s;
}
.stub-tag:hover { background: var(--accent); color: #fff; border-color: var(--accent); }
.stub-note { font-size: 14px; color: var(--muted); margin: 20px 0; }

/* карточки типов с фото-иконкой */
.icard-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(170px, 1fr)); gap: 14px; }
.icard {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  background: #fff; border: 1px solid rgba(11,31,68,.08); border-radius: 14px;
  padding: 18px 14px; text-align: center;
  transition: transform .15s, box-shadow .15s, border-color .15s;
}
.icard:hover { transform: translateY(-3px); box-shadow: 0 10px 24px rgba(11,31,68,.1); border-color: var(--accent); }
.icard__img { width: 84px; height: 64px; display: flex; align-items: center; justify-content: center; }
.icard__img img { max-width: 100%; max-height: 100%; object-fit: contain; }
.icard__label { font-size: 14px; font-weight: 700; color: var(--navy); }
.icard:hover .icard__label { color: var(--accent); }

/* ─── Секции каталога ─── */
.section { margin: 48px 0; }
.section > h2 { font-size: 26px; margin: 0 0 20px; }
.section__sub { font-size: 22px; margin: 0 0 18px; }

/* Виджет «топ-модели» с вкладками */
.topw__tabs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.topw__tab {
  background: #fff; border: 1px solid rgba(11,31,68,.1);
  border-radius: 999px; padding: 9px 18px; font-size: 14px; font-weight: 700;
  color: var(--navy-700); cursor: pointer; font-family: inherit; transition: all .15s;
}
.topw__tab:hover { border-color: var(--accent); color: var(--accent); }
.topw__tab--active { background: var(--navy); color: #fff; border-color: var(--navy); }
.topw__panel { display: none; }
.topw__panel--active { display: block; }
.topw__cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 20px; }
.topw-card {
  display: flex; flex-direction: column; background: #fff;
  border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden;
  border: 1px solid transparent; transition: transform .15s, box-shadow .15s, border-color .15s;
}
.topw-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); border-color: var(--accent); }
.topw-card__photo { background: #fff; aspect-ratio: 4/3; padding: 16px; }
.topw-card__photo img { width: 100%; height: 100%; object-fit: contain; }
.topw-card__body { padding: 16px 18px 18px; display: flex; flex-direction: column; gap: 6px; flex: 1; border-top: 1px solid var(--border); }
.topw-card__title { font-size: 16px; font-weight: 800; color: var(--navy); }
.topw-card__price { font-size: 17px; font-weight: 800; color: var(--accent); }
.topw-card__cta { font-size: 13px; font-weight: 700; color: var(--navy-700); margin-top: auto; padding-top: 6px; }
.topw-card:hover .topw-card__cta { color: var(--accent); }

/* Гайды */
.guide-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; }
.guide-card {
  display: flex; flex-direction: column; gap: 10px;
  background: var(--navy); color: #fff; border-radius: var(--radius);
  padding: 24px 24px 22px; transition: transform .15s, box-shadow .15s;
}
.guide-card:hover { transform: translateY(-3px); box-shadow: 0 14px 32px rgba(11,31,68,.18); }
.guide-card__tag {
  align-self: flex-start; font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .08em; color: var(--accent); background: rgba(255,122,0,.12);
  padding: 4px 10px; border-radius: 999px;
}
.guide-card__title { font-size: 17px; font-weight: 700; color: #fff; line-height: 1.35; margin: 4px 0; flex: 1; }
.guide-card__cta { font-size: 14px; font-weight: 700; color: var(--accent); }

/* Перелинковка */
.interlink__tags { display: flex; flex-wrap: wrap; gap: 10px 12px; }

/* ─── Быстрый фильтр ─── */
.qfilter { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); padding: 24px 26px; }
.qfilter__row { display: flex; flex-wrap: wrap; align-items: flex-end; gap: 16px; }
.qfilter__field { display: flex; flex-direction: column; gap: 6px; }
.qfilter__field label { font-size: 13px; font-weight: 600; color: var(--navy); }
.qfilter__field { flex: 1; min-width: 160px; }
.qfilter__field select {
  width: 100%; padding: 11px 14px; font-size: 15px; font-weight: 600;
  border: 1.5px solid var(--border); border-radius: 10px; background: #fff; color: var(--navy);
  -webkit-appearance: none; appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath fill='%230b1f44' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; padding-right: 38px;
}
.qfilter__field select:focus { outline: none; border-color: var(--accent); }
.qfilter__field--price { flex: 1.6; min-width: 260px; }
.qfilter__field--sphere { flex: 1.4; min-width: 200px; }

/* кастомный мультиселект */
.msel { position: relative; }
.msel__btn {
  display: flex; align-items: center; justify-content: space-between; gap: 8px;
  width: 100%; padding: 11px 14px; font-size: 15px; font-weight: 600;
  border: 1.5px solid var(--border); border-radius: 10px; background: #fff; color: var(--navy);
  cursor: pointer; font-family: inherit; text-align: left;
}
.msel__btn-text { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.msel__chev {
  width: 10px; height: 10px; flex-shrink: 0;
  border-right: 2px solid var(--navy); border-bottom: 2px solid var(--navy);
  transform: rotate(45deg); transition: transform .2s; margin-top: -3px;
}
.msel--open .msel__btn { border-color: var(--accent); border-radius: 10px 10px 0 0; }
.msel--open .msel__chev { transform: rotate(-135deg); margin-top: 3px; }
.msel__panel {
  display: none; position: absolute; top: 100%; left: 0; right: 0; z-index: 20;
  background: #fff; border: 1.5px solid var(--accent); border-top: 0;
  border-radius: 0 0 12px 12px; box-shadow: 0 12px 28px rgba(11,31,68,.14);
  overflow: hidden;
}
.msel--open .msel__panel { display: block; }
.msel__opt {
  display: flex; align-items: center; gap: 10px; padding: 11px 14px;
  font-size: 14px; font-weight: 500; color: var(--navy); cursor: pointer;
  border-bottom: 1px solid #f1f3f8;
}
.msel__opt:last-child { border-bottom: 0; }
.msel__opt:hover { background: var(--navy-50); }
.msel__opt input { width: 17px; height: 17px; accent-color: var(--accent); cursor: pointer; }
.qfilter__field--price #qf-price-label { color: var(--accent); font-weight: 700; }
/* двойной слайдер */
.qfilter__slider { position: relative; height: 36px; display: flex; align-items: center; }
.qfilter__track { position: absolute; left: 0; right: 0; height: 5px; background: var(--border); border-radius: 999px; }
.qfilter__track-fill { position: absolute; height: 100%; background: var(--accent); border-radius: 999px; }
.qfilter__slider input[type=range] {
  position: absolute; left: 0; right: 0; width: 100%; margin: 0;
  -webkit-appearance: none; appearance: none; background: transparent; pointer-events: none; height: 36px;
}
.qfilter__slider input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none; pointer-events: auto;
  width: 20px; height: 20px; border-radius: 50%; background: #fff;
  border: 3px solid var(--accent); box-shadow: 0 1px 4px rgba(0,0,0,.2); cursor: pointer;
}
.qfilter__slider input[type=range]::-moz-range-thumb {
  pointer-events: auto; width: 20px; height: 20px; border-radius: 50%; background: #fff;
  border: 3px solid var(--accent); box-shadow: 0 1px 4px rgba(0,0,0,.2); cursor: pointer;
}
.qfilter__btn { white-space: nowrap; padding: 13px 28px; }
.qfilter__results { margin-top: 22px; }
.qfilter__count { font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 16px; }
.qfilter__empty { color: var(--muted); font-size: 14px; }
@media (max-width: 760px) {
  .qfilter__field, .qfilter__field select { width: 100%; }
  .qfilter__btn { width: 100%; }
}

/* ─── Trust bar (под H1 в hero) ──────────────────────── */
.trust-bar {
  list-style: none; padding: 0; margin: 4px 0 0;
  display: flex; flex-wrap: wrap; gap: 8px 16px;
  font-size: 13px;
}
.trust-bar li {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--navy-700); font-weight: 600;
}
.trust-bar li::before {
  content: '✓';
  display: inline-flex; align-items: center; justify-content: center;
  width: 16px; height: 16px; border-radius: 50%;
  background: #1aa472; color: #fff;
  font-size: 11px; font-weight: 800;
}

/* ─── Spec groups (accordion) ────────────────────────── */
.spec-groups { display: flex; flex-direction: column; gap: 8px; margin: 16px 0; }
.spec-group {
  background: var(--card); border-radius: var(--radius);
  box-shadow: var(--shadow); overflow: hidden;
}
.spec-group__header {
  display: flex; align-items: center;
  padding: 16px 22px;
  font-weight: 700; color: var(--navy);
  border-bottom: 1px solid var(--border);
}
.spec-group__name { font-size: 16px; }
/* список характеристик «Параметр: значение» */
.spec-list { list-style: none; margin: 0; padding: 8px 22px 16px; }
.spec-item {
  padding: 8px 0; font-size: 15px; line-height: 1.5;
  border-bottom: 1px solid #f1f3f8;
}
.spec-item:last-child { border-bottom: 0; }
.spec-item__key { color: var(--muted); font-weight: 500; }
.spec-item__val { color: var(--navy); font-weight: 700; }
.spec-group__count {
  background: var(--navy-50); color: var(--navy);
  border-radius: 999px; padding: 2px 10px;
  font-size: 12px; font-weight: 700;
}
.spec-group .spec-table {
  border-radius: 0; box-shadow: none; margin: 0;
  border-top: 1px solid var(--border);
}

/* ─── Sticky CTA bar (BigRentz-style) ────────────────── */
.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0;
  background: #fff;
  border-top: 1px solid var(--border);
  box-shadow: 0 -8px 28px rgba(11,31,68,.12);
  transform: translateY(100%);
  transition: transform .25s ease;
  z-index: 200;
  padding: 10px 16px env(safe-area-inset-bottom);
}
.sticky-cta.is-visible { transform: translateY(0); }
.sticky-cta__inner {
  max-width: var(--maxw); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
}
.sticky-cta__info { min-width: 0; }
.sticky-cta__name {
  font-weight: 800; color: var(--navy); font-size: 15px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.sticky-cta__price { color: var(--accent); font-weight: 700; font-size: 14px; }
.sticky-cta__btn { padding: 10px 22px; font-size: 14px; white-space: nowrap; }

@media (max-width: 480px) {
  .sticky-cta__name { font-size: 13px; }
  .sticky-cta__price { font-size: 12px; }
  .sticky-cta__btn { padding: 10px 16px; font-size: 13px; }
}

/* ─── Spec table ──────────────────────────────────────── */
.spec-table {
  width: 100%; border-collapse: collapse; background: var(--card);
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow);
  margin: 16px 0;
}
.spec-table td { padding: 14px 20px; border-bottom: 1px solid #eef0f6; font-size: 15px; }
.spec-table tr:last-child td { border-bottom: 0; }
.spec-table td:first-child {
  color: var(--muted); font-weight: 500;
  width: 1%; white-space: nowrap; padding-right: 44px;
}
.spec-table td:last-child { font-weight: 600; color: var(--navy); text-align: left; }
.spec-table tr:hover td { background: var(--navy-50); }
@media (max-width: 768px) {
  .spec-table td:first-child { white-space: normal; padding-right: 16px; width: 45%; }
}

/* ─── Body types tags ─────────────────────────────────── */
.body-types {
  background: var(--card); border-radius: var(--radius);
  padding: 24px 28px; box-shadow: var(--shadow); margin: 24px 0;
}
.body-types h2 { margin-top: 0; }
.tag {
  display: inline-block; background: var(--navy-50); color: var(--navy);
  border-radius: 999px; padding: 6px 14px; margin: 4px 6px 4px 0;
  font-size: 13px; font-weight: 600;
  border: 1px solid var(--border);
}

/* ─── Pros / Cons ─────────────────────────────────────── */
.proscons {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
  margin: 24px 0;
}
.proscons__col {
  background: var(--card); border-radius: var(--radius);
  padding: 24px 28px; box-shadow: var(--shadow);
  border-top: 4px solid;
}
.proscons__col:nth-child(1) { border-top-color: #1aa472; }
.proscons__col:nth-child(2) { border-top-color: #e25b3e; }
.proscons__col h3 { margin-top: 0; font-size: 17px; }
.proscons__col ul { margin: 10px 0 0; padding-left: 0; list-style: none; }
.proscons__col li {
  padding: 11px 0 11px 32px; position: relative; font-size: 15px; line-height: 1.55;
  border-bottom: 1px solid var(--border);
}
.proscons__col li:last-child { border-bottom: 0; }
/* круглые цветные бейджи-маркеры */
.proscons__col:nth-child(1) li::before {
  content: '✓'; position: absolute; left: 0; top: 12px;
  width: 20px; height: 20px; border-radius: 50%;
  background: rgba(26,164,114,.12); color: #1aa472;
  font-size: 12px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}
.proscons__col:nth-child(2) li::before {
  content: '−'; position: absolute; left: 0; top: 12px;
  width: 20px; height: 20px; border-radius: 50%;
  background: rgba(226,91,62,.12); color: #e25b3e;
  font-size: 14px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}

/* ─── CTA ─────────────────────────────────────────────── */
.cta {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  background: var(--accent); color: #fff !important; border: 0;
  border-radius: 12px; padding: 16px 28px;
  font-size: 16px; font-weight: 700; text-decoration: none; text-align: center;
  cursor: pointer; transition: background .15s, transform .1s;
  box-shadow: 0 4px 14px rgba(255,122,0,.3);
}
.cta:hover { background: var(--accent-hover); transform: translateY(-1px); color: #fff !important; }
.cta--rent { background: var(--navy); box-shadow: 0 4px 14px rgba(11,31,68,.3); }
.cta--rent:hover { background: var(--navy-700); }
.cta__ad { font-size: 10px; opacity: .8; font-weight: 500; }

/* ─── Calc insert ─────────────────────────────────────── */
.calc-insert {
  background: var(--navy-50); border-radius: var(--radius-sm);
  padding: 16px 22px; margin: 24px 0; font-size: 15px;
  border-left: 3px solid var(--navy-700);
}
.calc-insert a { color: var(--accent); font-weight: 700; border-bottom: 1px dashed currentColor; }
.calc-insert a:hover { border-bottom-style: solid; }

/* ─── Калькулятор окупаемости ─── */
.calc-page > .pill { display: inline-block; margin-bottom: 12px; }
.calc { display: grid; grid-template-columns: 1.4fr 1fr; gap: 28px; margin: 28px 0; align-items: start; }
.calc__inputs {
  background: #fff; border-radius: var(--radius);
  box-shadow: 0 4px 24px rgba(11,31,68,.06); padding: 28px 28px 32px;
}
.calc__group-title {
  font-size: 12px; font-weight: 700; color: var(--accent);
  text-transform: uppercase; letter-spacing: .1em;
  margin: 22px 0 12px; padding-top: 16px; border-top: 1px solid var(--border);
}
.calc__group-title:first-of-type { border-top: 0; padding-top: 0; margin-top: 8px; }
.calc__field { margin-bottom: 16px; }
.calc__field label {
  display: block; font-size: 14px; font-weight: 600; color: var(--navy);
  margin-bottom: 6px;
}
.calc__hint { font-weight: 400; color: var(--muted); font-size: 12px; }
.calc__field input, .calc__field select {
  width: 100%; padding: 12px 14px; font-size: 16px; font-weight: 600;
  border: 1.5px solid var(--border); border-radius: 10px;
  background: #fff; color: var(--navy); transition: border-color .15s;
  -webkit-appearance: none; appearance: none;
}
.calc__field input:focus, .calc__field select:focus {
  outline: none; border-color: var(--accent);
}
.calc__field select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%230b1f44' d='M1 1l5 5 5-5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; }
.calc__field--row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.calc__field--row label { font-size: 13px; }

.calc__result {
  position: sticky; top: 20px;
  background: var(--navy); border-radius: var(--radius);
  padding: 28px 26px; color: #fff;
}
.calc__result-card { text-align: center; padding-bottom: 20px; border-bottom: 1px solid rgba(255,255,255,.15); }
.calc__result-label { font-size: 12px; color: rgba(255,255,255,.6); text-transform: uppercase; letter-spacing: .08em; font-weight: 600; }
.calc__result-value { font-size: 34px; font-weight: 800; color: var(--accent); margin-top: 6px; letter-spacing: -.02em; }
.calc__result-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; padding: 20px 0; border-bottom: 1px solid rgba(255,255,255,.15); }
.calc__result-grid > div { text-align: center; }
.calc__result-sub { font-size: 22px; font-weight: 800; color: #fff; margin-top: 4px; }
.calc__breakdown { padding: 18px 0; }
.calc__bd-row { display: flex; justify-content: space-between; align-items: center; padding: 7px 0; font-size: 14px; }
.calc__bd-row span { color: rgba(255,255,255,.7); }
.calc__bd-row b { color: #fff; font-weight: 700; }
.calc__note { font-size: 12px; color: rgba(255,255,255,.55); line-height: 1.5; margin-bottom: 16px; }
.calc__result .cta { width: 100%; text-align: center; box-sizing: border-box; }

@media (max-width: 860px) {
  .calc { grid-template-columns: 1fr; }
  .calc__result { position: static; }
}

/* ─── FAQ ─────────────────────────────────────────────── */
.faq { margin: 40px 0; }
.faq h2 { margin-bottom: 18px; }
.faq__item {
  background: var(--card); border-radius: var(--radius-sm);
  padding: 18px 24px; margin-bottom: 12px; box-shadow: var(--shadow);
  border-left: 3px solid var(--accent);
}
.faq__q { font-size: 17px; margin: 0 0 8px; color: var(--navy); }
.faq__a { margin: 0; color: var(--text); font-size: 15px; line-height: 1.6; }

/* ─── Cards grid (hubs) ───────────────────────────────── */
.cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; margin: 24px 0; }
.card {
  background: var(--card); border-radius: var(--radius); box-shadow: var(--shadow);
  overflow: hidden; display: flex; flex-direction: column;
  text-decoration: none; color: inherit;
  transition: transform .15s, box-shadow .15s;
  border: 1px solid transparent;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); border-color: var(--accent); }
.card .card__img {
  aspect-ratio: 4/3; max-height: none; margin: 0;
  border-radius: 0; box-shadow: none; padding: 16px;
  object-fit: contain;
  background: #fff;
}
.card__img--placeholder {
  display: flex; align-items: center; justify-content: center;
  color: var(--navy-700); opacity: .35;
  background: linear-gradient(135deg, var(--navy-50) 0%, #fff 100%);
}
.card__body { padding: 18px 20px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.card__title { font-size: 18px; margin: 0; color: var(--navy); font-weight: 800; }
.card__tags { display: flex; flex-wrap: wrap; gap: 6px; }
.card__tag {
  display: inline-block; background: var(--navy-50);
  color: var(--navy-700); font-size: 11px; font-weight: 600;
  padding: 3px 8px; border-radius: 999px;
}
/* ─── Type-hero (фото типа на хабе) ─── */
.type-hero {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 40px;
  align-items: center; margin-bottom: 32px;
  background: #fff; border-radius: var(--radius);
  box-shadow: 0 4px 24px rgba(11, 31, 68, .06);
  padding: 40px 48px;
}
.type-hero__text > .pill { display: inline-block; margin-bottom: 12px; }
.type-hero__text h1 { margin: 0 0 12px; }
.type-hero__photo {
  position: relative; background: #fff;
  border-radius: 12px; padding: 0; aspect-ratio: 4/3; overflow: hidden;
}
.type-hero__photo img {
  width: 100%; height: 100%; object-fit: contain; display: block;
}
@media (max-width: 768px) {
  .type-hero { grid-template-columns: 1fr; gap: 16px; padding: 28px 20px; }
}

/* ─── Cat-card (Категории техники на главной) ─── */
.cat-card {
  display: grid; grid-template-rows: auto 1fr;
  padding: 0; overflow: hidden; background: #fff;
  border: 1px solid rgba(11, 31, 68, .06);
  transition: transform .25s cubic-bezier(.4,0,.2,1), box-shadow .25s, border-color .25s;
}
.cat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(11, 31, 68, .12), 0 0 0 1px var(--accent) inset;
}
.cat-card__photo {
  background: #fff;
  padding: 24px; aspect-ratio: 16/10;
  display: flex; align-items: center; justify-content: center;
}
.cat-card__photo img {
  width: 100%; height: 100%; object-fit: contain;
  transition: transform .35s cubic-bezier(.4,0,.2,1);
}
.cat-card:hover .cat-card__photo img { transform: scale(1.06); }
.cat-card__body {
  padding: 20px 24px 22px;
  display: flex; flex-direction: column; gap: 0;
  border-top: 1px solid var(--border);
}
.cat-card__title {
  font-size: 22px; font-weight: 800; color: var(--navy);
  letter-spacing: -.015em; line-height: 1.15; margin: 0 0 6px;
}
.cat-card__meta {
  font-size: 13px; color: #6b7280; font-weight: 600;
  margin-bottom: 14px; letter-spacing: .01em;
}
.cat-card__price-row {
  display: flex; align-items: baseline; gap: 5px; margin-bottom: 14px;
}
/* состояние «скоро в каталоге» */
.cat-card--soon { opacity: .6; cursor: default; }
.cat-card--soon:hover { transform: none; box-shadow: 0 14px 32px rgba(11,31,68,.06); border-color: rgba(11,31,68,.06); }
.cat-card--soon:hover .cat-card__photo img { transform: none; }
.cat-card__meta--soon { color: var(--accent); font-weight: 700; }
.cat-card__cta--soon { color: var(--muted); }
.cat-card__price-label {
  font-size: 11px; font-weight: 700; color: var(--muted);
  text-transform: uppercase; letter-spacing: .12em;
}
.cat-card__price-value {
  font-size: 22px; font-weight: 800; color: var(--accent);
  letter-spacing: -.015em;
}
.cat-card__cta {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 14px; font-weight: 700; color: var(--navy-700);
  transition: color .15s, gap .15s;
}
.cat-card:hover .cat-card__cta { color: var(--accent); gap: 8px; }

/* ─── Stub-hero (для /o-nas/ /redakciya/) ─── */
.stub-hero {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 40px; align-items: center; margin-bottom: 32px;
  background: #fff; border-radius: var(--radius);
  box-shadow: 0 4px 24px rgba(11, 31, 68, .06);
  padding: 40px 48px;
}
.stub-hero__text > .pill { display: inline-block; margin-bottom: 12px; }
.stub-hero__text h1 { margin: 0 0 12px; }
.stub-hero__photo {
  background: #fff;
  border-radius: 12px; padding: 0; aspect-ratio: 3/2; overflow: hidden;
}
.stub-hero__photo img { width: 100%; height: 100%; object-fit: contain; display: block; }
@media (max-width: 768px) {
  .stub-hero { grid-template-columns: 1fr; gap: 16px; padding: 28px 20px; }
}
/* lead без белой плашки (для hero) */
.lead--plain {
  background: none; box-shadow: none; padding: 0; border-radius: 0;
  font-size: 18px; line-height: 1.6; max-width: 52ch; color: var(--text);
}
.stub-hero__text .cta { padding: 16px 32px; font-size: 17px; margin-top: 4px; }
.stub-proof { font-size: 13px; color: var(--muted); margin: 14px 0 0; font-weight: 600; }

/* Единый блок цены: подпись сверху, цена снизу, всё по левому краю */
.card__price-row {
  display: flex; flex-direction: column; align-items: flex-start; gap: 3px;
  border-top: 1px solid var(--border); padding-top: 12px; margin-top: 2px;
}
.card__price-label { color: var(--muted); font-size: 11px; text-transform: uppercase; letter-spacing: .1em; font-weight: 700; }
.card__price { color: var(--accent); font-weight: 800; font-size: 18px; letter-spacing: -.01em; }
.card__price-row--no-data .card__price { color: var(--muted); font-weight: 600; font-size: 15px; }
/* CTA жёстко к низу карточки */
.card__cta { color: var(--navy-700); font-size: 13px; font-weight: 700; margin-top: auto; padding-top: 4px; }
.card:hover .card__cta { color: var(--accent); }

/* ─── Статья гайда: журнальная типографика ─── */
.article { max-width: 760px; }
.article h2 {
  font-size: 24px; margin: 40px 0 14px; line-height: 1.25;
}
.article h2:first-child { margin-top: 16px; }
.article h3 {
  font-size: 19px; margin: 32px 0 12px; line-height: 1.3;
}
.article p {
  font-size: 17px; line-height: 1.7; color: var(--text); margin: 0 0 18px;
}
.article b, .article strong { color: var(--navy); font-weight: 700; }
/* списки с оранжевыми маркерами */
.article ul { list-style: none; padding: 0; margin: 0 0 20px; }
.article ul li {
  position: relative; padding: 6px 0 6px 26px;
  font-size: 17px; line-height: 1.6; color: var(--text);
}
.article ul li::before {
  content: ''; position: absolute; left: 4px; top: 14px;
  width: 8px; height: 8px; border-radius: 2px;
  background: var(--accent);
}
.article ol { padding-left: 22px; margin: 0 0 20px; }
.article ol li { font-size: 17px; line-height: 1.6; margin-bottom: 8px; padding-left: 4px; }

/* коммерческая врезка модели внутри статьи */
.article-embed {
  display: flex; gap: 20px; align-items: center;
  margin: 32px 0; background: #fff; border-radius: var(--radius);
  box-shadow: var(--shadow); border: 1px solid transparent;
  overflow: hidden; transition: transform .15s, box-shadow .15s, border-color .15s;
}
.article-embed:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); border-color: var(--accent); }
.article-embed__photo { flex: 0 0 200px; aspect-ratio: 4/3; background: #fff; padding: 14px; }
.article-embed__photo img { width: 100%; height: 100%; object-fit: contain; }
.article-embed__body { display: flex; flex-direction: column; gap: 6px; padding: 18px 22px 18px 0; flex: 1; }
.article-embed__tag {
  align-self: flex-start; font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .08em; color: var(--accent); background: rgba(255,122,0,.1);
  padding: 3px 10px; border-radius: 999px;
}
.article-embed__title { font-size: 19px; font-weight: 800; color: var(--navy); }
.article-embed__price { font-size: 18px; font-weight: 800; color: var(--accent); }
.article-embed__cta { font-size: 14px; font-weight: 700; color: var(--navy-700); margin-top: 2px; }
.article-embed:hover .article-embed__cta { color: var(--accent); }
@media (max-width: 600px) {
  .article-embed { flex-direction: column; align-items: stretch; }
  .article-embed__photo { flex: none; width: 100%; }
  .article-embed__body { padding: 0 18px 18px; }
}

.article-embeds { display: grid; grid-template-columns: 1fr; gap: 0; }

/* ─── Справочник (база знаний под AI Overviews) ─── */
/* hero-картинка статьи (каталожный рендер на белом фоне) */
.kb-hero-img {
  max-width: 760px; margin: 18px 0 8px; background: #fff;
  border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden;
}
.kb-hero-img img { display: block; width: 100%; height: auto; max-height: 360px; object-fit: contain; padding: 16px; }
/* answer-unit: извлекаемое определение в начале статьи */
.kb-answer {
  max-width: 760px; margin: 18px 0 24px;
  background: linear-gradient(180deg, rgba(255,122,0,.06), rgba(255,122,0,.02));
  border: 1px solid rgba(255,122,0,.25); border-left: 4px solid var(--accent);
  border-radius: var(--radius); padding: 20px 24px;
}
.kb-answer p { font-size: 18px; line-height: 1.65; color: var(--navy); font-weight: 600; margin: 0; }
/* таблицы в статьях */
.kb-table { margin: 24px 0; max-width: 760px; overflow-x: auto; }
.kb-table figcaption {
  font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em;
  color: var(--navy-700); margin-bottom: 10px;
}
.kb-table table { width: 100%; border-collapse: collapse; font-size: 16px; background: #fff; border-radius: 10px; overflow: hidden; box-shadow: var(--shadow); }
.kb-table th, .kb-table td { padding: 12px 16px; text-align: left; border-bottom: 1px solid #eef0f3; }
.kb-table thead th { background: var(--navy); color: #fff; font-weight: 700; font-size: 14px; }
.kb-table tbody th { color: var(--navy); font-weight: 700; }
.kb-table tbody tr:last-child th, .kb-table tbody tr:last-child td { border-bottom: none; }
.kb-table tbody tr:nth-child(even) { background: #fafbfc; }
/* индекс справочника */
.kb-cat { margin: 36px 0; }
.kb-cat h2 { font-size: 22px; margin: 0 0 16px; color: var(--navy); }
.kb-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 16px; }
.kb-card {
  display: flex; flex-direction: column; gap: 8px; padding: 22px;
  background: #fff; border-radius: var(--radius); box-shadow: var(--shadow);
  border: 1px solid transparent; transition: transform .15s, box-shadow .15s, border-color .15s;
}
.kb-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); border-color: var(--accent); }
.kb-card__q { font-size: 17px; font-weight: 800; color: var(--navy); line-height: 1.3; }
.kb-card__a { font-size: 14px; line-height: 1.55; color: var(--text); flex: 1; }

/* ─── Редакция / авторы ─── */
.authors { display: flex; flex-direction: column; gap: 18px; margin: 28px 0; }
.author {
  display: flex; gap: 22px; align-items: flex-start;
  background: #fff; border-radius: var(--radius); box-shadow: var(--shadow);
  padding: 26px 28px;
}
.author__avatar {
  flex-shrink: 0; width: 64px; height: 64px; border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-700));
  color: #fff; font-size: 22px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  letter-spacing: .02em;
}
.author__name { font-size: 20px; margin: 0 0 2px; }
.author__role { font-size: 14px; font-weight: 700; color: var(--accent); margin-bottom: 4px; }
.author__exp { font-size: 13px; color: var(--muted); margin-bottom: 12px; }
.author__bio { font-size: 15px; line-height: 1.6; color: var(--text); margin: 0 0 14px; }
.author__knows { display: flex; flex-wrap: wrap; gap: 7px; }
.author__tag {
  font-size: 12px; font-weight: 600; color: var(--navy-700);
  background: var(--navy-50); border-radius: 999px; padding: 4px 11px;
}
@media (max-width: 560px) {
  .author { flex-direction: column; gap: 14px; }
}

/* ─── Анализ цен на б/у рынке ─── */
.price-an {
  display: grid; grid-template-columns: minmax(220px, 280px) 1fr; gap: 28px;
  align-items: center; background: #fff; border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 28px 30px; margin: 16px 0 8px;
}
.price-an__main { text-align: center; border-right: 1px solid var(--border); padding-right: 28px; }
.price-an__label { font-size: 12px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 8px; }
.price-an__avg { font-size: 34px; font-weight: 800; color: var(--accent); letter-spacing: -.02em; }
.price-an__bar {
  position: relative; height: 8px; border-radius: 999px;
  background: linear-gradient(90deg, #ffd9b0, var(--accent));
  margin: 26px 0 10px;
}
.price-an__bar-from, .price-an__bar-to {
  position: absolute; top: -22px; font-size: 13px; font-weight: 700; color: var(--navy);
}
.price-an__bar-from { left: 0; }
.price-an__bar-to { right: 0; }
.price-an__text { font-size: 14px; line-height: 1.6; color: var(--text); margin: 14px 0 0; }
@media (max-width: 680px) {
  .price-an { grid-template-columns: 1fr; gap: 18px; }
  .price-an__main { border-right: 0; border-bottom: 1px solid var(--border); padding: 0 0 18px; }
}

/* ─── Pros / Cons items with topic icons ─────────────── */
.proscons__col ul { margin: 8px 0 0; padding-left: 0; list-style: none; }
.proscons__item {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 12px 0; border-bottom: 1px solid var(--border);
}
.proscons__item:last-child { border-bottom: 0; }
.proscons__item::before { content: none !important; }
.proscons__icon {
  flex: 0 0 36px; height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 8px;
  color: var(--navy-700);
}
.proscons__col:nth-child(1) .proscons__icon { background: #e6f6ef; color: #1aa472; }
.proscons__col:nth-child(2) .proscons__icon { background: #fce9e3; color: #e25b3e; }
.proscons__body { display: flex; flex-direction: column; gap: 2px; min-width: 0; flex: 1; }
.proscons__topic {
  font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em;
  color: var(--muted);
}
.proscons__text { font-size: 14.5px; line-height: 1.55; }

/* ─── Footer ──────────────────────────────────────────── */
.site-footer {
  background: var(--navy); color: #c7d0e6;
  padding: 56px 20px 28px; margin-top: 64px;
}
.footer-grid {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 32px 40px;
}
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col h4 {
  color: #fff; font-size: 13px; font-weight: 700; margin: 0 0 6px;
  text-transform: uppercase; letter-spacing: .08em;
}
.footer-col a { color: #9aa6c4; font-size: 14px; transition: color .12s; align-self: flex-start; }
.footer-col a:hover { color: #fff; }
.footer-col a.footer-active { color: var(--accent); font-weight: 700; }
/* лого-локап: иконка слева, текстовый блок справа — «С» и «Э» на одной вертикали */
.footer-brand-lockup { display: flex; gap: 12px; align-items: flex-start; }
.footer-logo-img { width: 40px; height: 40px; object-fit: contain; flex-shrink: 0; }
.footer-brand-text { display: flex; flex-direction: column; }
.footer-wordmark { font-size: 20px; font-weight: 800; color: #fff; line-height: 1.1; margin-bottom: 8px; }
.footer-tagline { font-size: 14px; line-height: 1.6; color: #95a3c4; margin: 0; max-width: 300px; }
.footer-bottom {
  max-width: var(--maxw); margin: 36px auto 0; padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.1);
  font-size: 13px; color: #7e8cb0;
}
@media (max-width: 760px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px 24px; }
  .footer-col--brand { grid-column: 1 / -1; }
}

/* ─── Hero (homepage) ─────────────────────────────────── */
.hero { text-align: center; padding: 40px 20px 24px; }
.hero h1 { font-size: clamp(32px, 5vw, 56px); margin-top: 0; }
.hero-lead { max-width: 720px; margin: 16px auto 28px; font-size: 18px; border-left: 0; background: transparent; box-shadow: none; padding: 0; }

/* ─── Home hero (2-column with photo) ─────────────────── */
.home-hero {
  display: grid; grid-template-columns: 1.2fr 1fr;
  gap: 40px; align-items: center;
  padding: 48px 48px 40px;
  background: #fff; border-radius: var(--radius);
  box-shadow: 0 4px 24px rgba(11, 31, 68, .06);
  margin-top: 24px;
}
.home-hero__content h1 { font-size: clamp(32px, 4.5vw, 52px); margin-top: 8px; }
.home-hero__content .lead { padding: 0; background: transparent; box-shadow: none; border-left: 0; }
.home-hero__content .cta { margin-top: 8px; }
.home-hero__pill {
  display: inline-block; color: var(--accent);
  font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .12em;
}
.home-hero__trust { margin-top: 18px; }
.home-hero__photo {
  display: flex; align-items: center; justify-content: center;
  background: #fff; border-radius: var(--radius);
  padding: 0; min-height: 320px;
  color: var(--navy-700);
}
.home-hero__photo img { max-width: 100%; max-height: 360px; object-fit: contain; }
.home-hero__photo svg { max-width: 70%; max-height: 70%; opacity: .4; }
@media (max-width: 900px) {
  .home-hero { grid-template-columns: 1fr; gap: 24px; padding: 28px 20px; }
  .home-hero__photo { min-height: 220px; padding: 0; }
}
.features {
  background: var(--card); border-radius: var(--radius);
  padding: 24px 32px; box-shadow: var(--shadow);
  list-style: none; margin: 16px 0;
}
.features li { padding: 10px 0; border-bottom: 1px solid var(--border); font-size: 15px; }
.features li:last-child { border-bottom: 0; }
.features b { color: var(--accent); font-size: 18px; }

/* ─── Comparison table ────────────────────────────────── */
.cmp-table {
  width: 100%; border-collapse: collapse; background: var(--card);
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); margin: 16px 0;
}
.cmp-table th, .cmp-table td {
  padding: 14px 18px; border-bottom: 1px solid #eef0f6;
  font-size: 14px; text-align: left;
}
.cmp-table th { background: var(--navy); color: #fff; font-weight: 700; }
.cmp-table tr:last-child td { border-bottom: 0; }
.cmp-table td:first-child { color: var(--muted); font-weight: 500; width: 35%; }
.cmp-table td:not(:first-child) { color: var(--navy); font-weight: 600; }
.cmp-table tbody tr:hover td { background: var(--navy-50); }

/* ─── Comparison links / related ──────────────────────── */
.cmp-links { display: flex; flex-wrap: wrap; gap: 12px; margin: 16px 0; }
.cmp-link {
  display: inline-block; background: var(--card); border-radius: var(--radius-sm);
  padding: 14px 20px; box-shadow: var(--shadow);
  font-weight: 700; color: var(--navy);
  border-left: 3px solid var(--accent);
  transition: transform .1s, box-shadow .15s;
}
.cmp-link:hover { transform: translateX(3px); box-shadow: var(--shadow-lg); color: var(--accent); }

/* ─── Brand filter ────────────────────────────────────── */
.brand-filter {
  background: #fff; border-radius: var(--radius);
  padding: 22px 24px 24px;
  border: 1px solid var(--accent);
  margin: 16px 0 8px;
}
.brand-filter__head {
  font-size: 18px; font-weight: 800; color: var(--navy);
  letter-spacing: -.01em; margin-bottom: 16px;
}
.brand-filter__sub {
  font-size: 11px; font-weight: 600; color: #aab2c0;
  text-transform: uppercase; letter-spacing: .14em;
  margin: 20px 0 12px; padding-top: 18px;
  border-top: 1px solid var(--border);
}
.brand-filter__top { display: flex; flex-wrap: wrap; gap: 10px; }
.brand-tile {
  display: inline-flex; align-items: baseline; gap: 8px;
  min-width: 150px;
  background: var(--navy-50); border: 1px solid rgba(255,122,0,.25);
  border-radius: 10px; padding: 11px 16px;
  font-size: 15px; font-weight: 800; color: var(--navy);
  transition: border-color .15s, background .15s, transform .15s;
}
.brand-tile:hover { border-color: var(--accent); background: #fff; transform: translateY(-1px); color: var(--accent); }
.brand-filter__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  grid-auto-flow: row;
  gap: 2px 12px;
}
.brand-pill {
  display: inline-flex; align-items: baseline; gap: 8px;
  justify-content: flex-start;
  background: transparent; color: var(--navy-700); border: 0;
  padding: 8px 6px; border-radius: 8px;
  font-size: 14px; font-weight: 600; font-family: inherit;
  cursor: pointer; transition: color .12s, background .12s;
}
.brand-pill:hover { background: var(--navy-50); color: var(--accent); }
.brand-pill__count { margin-left: 0; font-size: 12px; color: #9ca3af; font-weight: 600; }
.brand-tile .brand-pill__count { font-size: 13px; }
.brand-filter__hint { margin-top: 14px; font-size: 12px; color: var(--muted); }

/* Empty state for filter */
.cards-empty {
  background: var(--card); border-radius: var(--radius);
  padding: 32px 24px; box-shadow: var(--shadow);
  text-align: center; margin: 16px 0;
  color: var(--muted);
}
.cards-empty a {
  color: var(--accent); font-weight: 700; text-decoration: none;
}
.cards-empty a:hover { text-decoration: underline; }

/* ─── Hub listing header ──────────────────────────────── */
.hub-listing-head {
  display: flex; align-items: baseline; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
  margin-top: 32px;
}
.hub-listing-head h2 { margin: 0; }
.hub-listing-meta {
  color: var(--muted); font-size: 14px; font-weight: 600;
}

/* ─── Pagination ──────────────────────────────────────── */
.pager {
  display: flex; justify-content: center; align-items: center; gap: 6px;
  margin: 32px 0 64px;
}
.pager__item {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 40px; height: 40px; padding: 0 12px;
  background: var(--card); border-radius: 10px;
  font-weight: 800; font-size: 16px; color: var(--navy);
  text-decoration: none; box-shadow: var(--shadow);
  border: 1px solid rgba(11,31,68,.06);
  transition: all .12s;
}
.pager__item:hover { background: var(--accent); color: #fff; border-color: var(--accent); }
.pager__item--current { background: var(--accent); color: #fff; pointer-events: none; border-color: var(--accent); }
.pager__item--disabled { opacity: .3; pointer-events: none; }
.pager__sep { color: var(--muted); padding: 0 4px; }

/* ─── Responsive ──────────────────────────────────────── */
@media (max-width: 900px) {
  .model-hero { grid-template-columns: 1fr; gap: 24px; }
  .model-hero__photo { min-height: 240px; padding: 12px; }
  .model-hero__photo .card__img { max-height: 300px; }
}
@media (max-width: 720px) {
  .proscons { grid-template-columns: 1fr; }
  .site-header__nav { gap: 16px; font-size: 14px; }
  .site-header__nav a { font-size: 14px; }
  .spec-table td { padding: 12px 14px; font-size: 14px; }
  .lead, .body-types, .proscons__col { padding: 18px 20px; }
  .price-summary { font-size: 14px; padding: 12px 16px; }
  .hero-meta__price-row b { font-size: 18px; }
}
@media (max-width: 480px) {
  .site-header { flex-wrap: wrap; padding: 12px 16px; }
  .site-header__nav { width: 100%; margin-top: 8px; }
}
