/* 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;
}
.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); }

/* ─── 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;
  border-left: 4px solid var(--navy);
}

/* ─── 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; justify-content: space-between;
  padding: 16px 22px; cursor: pointer; user-select: none;
  font-weight: 700; color: var(--navy);
  list-style: none; gap: 16px;
}
.spec-group__header::-webkit-details-marker { display: none; }
.spec-group__header::after {
  content: ''; width: 10px; height: 10px;
  border-right: 2px solid var(--navy); border-bottom: 2px solid var(--navy);
  transform: rotate(45deg); margin-left: 8px;
  transition: transform .2s;
}
.spec-group[open] .spec-group__header::after { transform: rotate(-135deg); }
.spec-group__name { font-size: 16px; flex: 1; }
.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); width: 45%; font-weight: 500; }
.spec-table td:last-child { font-weight: 600; color: var(--navy); }
.spec-table tr:hover td { background: var(--navy-50); }

/* ─── 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: 8px 0 0; padding-left: 0; list-style: none; }
.proscons__col li {
  padding: 8px 0 8px 24px; 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: 8px;
  color: #1aa472; font-weight: 800;
}
.proscons__col:nth-child(2) li::before {
  content: '−'; position: absolute; left: 0; top: 8px;
  color: #e25b3e; font-weight: 800;
}

/* ─── 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; }

/* ─── 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: linear-gradient(135deg, var(--navy-50) 0%, #fff 100%);
}
.card__img--placeholder {
  display: flex; align-items: center; justify-content: center;
  color: var(--navy-700); opacity: .35;
}
.card__body { padding: 18px 20px; display: flex; flex-direction: column; gap: 10px; }
.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;
}
.card__price-row {
  display: flex; align-items: baseline; gap: 8px;
  border-top: 1px solid var(--border); padding-top: 10px;
}
.card__price-row--range { flex-direction: column; align-items: stretch; gap: 2px; }
.card__price-row--range .card__price { margin-left: 0; font-size: 16px; }
.card__price-row--no-data .card__price { color: var(--muted); font-weight: 600; font-size: 14px; }
.card__price-label { color: var(--muted); font-size: 12px; text-transform: uppercase; letter-spacing: .08em; font-weight: 600; }
.card__price { color: var(--accent); font-weight: 800; font-size: 18px; margin-left: auto; }
/* badge "по живым объявлениям" для priced карточек */
.card--priced { position: relative; }
.card--priced::before {
  content: "🟢 Avito"; position: absolute; top: 8px; right: 8px; z-index: 1;
  background: rgba(255,255,255,.95); color: var(--navy-700);
  font-size: 10px; font-weight: 700; padding: 3px 7px; border-radius: 999px;
  letter-spacing: .03em; box-shadow: 0 1px 3px rgba(0,0,0,.1);
}
.card__cta { color: var(--navy-700); font-size: 13px; font-weight: 700; }
.card:hover .card__cta { color: var(--accent); }

/* ─── 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: 48px 20px; margin-top: 80px;
  text-align: center;
}
.site-footer p { margin: 8px auto; max-width: var(--maxw); }
.site-footer a { color: #fff; }
.site-footer a:hover { color: var(--accent); }

/* ─── 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: 40px 0 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: 24px; min-height: 320px;
  color: var(--navy-700);
  box-shadow: var(--shadow);
}
.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: 20px 0; }
  .home-hero__photo { min-height: 220px; padding: 16px; }
}
.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: var(--card); border-radius: var(--radius);
  padding: 16px 20px; box-shadow: var(--shadow);
  margin: 16px 0 8px;
}
.brand-filter__label {
  font-size: 13px; font-weight: 700; color: var(--muted);
  text-transform: uppercase; letter-spacing: .08em;
  margin-bottom: 10px;
}
.brand-filter__pills {
  display: flex; flex-wrap: wrap; gap: 8px;
  max-height: 180px; overflow-y: auto;
}
.brand-pill {
  background: var(--navy-50); color: var(--navy-700);
  border: 1px solid transparent;
  border-radius: 999px; padding: 6px 14px;
  font-size: 13px; font-weight: 600; font-family: inherit;
  cursor: pointer; transition: all .12s;
}
.brand-pill:hover { background: #fff; border-color: var(--accent); color: var(--accent); }
.brand-pill--active {
  background: var(--accent); color: #fff; border-color: var(--accent);
}
.brand-pill__count {
  display: inline-block; margin-left: 4px;
  font-size: 11px; opacity: .7; font-weight: 700;
}
.brand-pill--active .brand-pill__count { opacity: .9; }
.brand-filter__hint {
  margin-top: 10px; font-size: 12px; color: var(--muted); font-style: italic;
}

/* 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 24px;
}
.pager__item {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 38px; height: 38px; padding: 0 12px;
  background: var(--card); border-radius: 10px;
  font-weight: 700; color: var(--navy-700);
  text-decoration: none; box-shadow: var(--shadow);
  transition: all .12s;
}
.pager__item:hover { background: var(--accent); color: #fff; }
.pager__item--current { background: var(--navy); color: #fff; pointer-events: none; }
.pager__item--disabled { opacity: .35; 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; }
}
