/* ════════════════════════════════════════════════════════════
   MOTORGRID — comparison.css
   Scoped under .comp-* to avoid conflicts with layout.css
   Design: Industrial editorial — matches site palette
   ════════════════════════════════════════════════════════════ */

/* ── CSS VARIABLES (scoped to comparison page) ──────────── */
:root {
  --c-ink: #0d0e10;
  --c-ink-soft: #1a1c21;
  --c-steel: #23262d;
  --c-muted: #3d424d;
  --c-border: #2e3139;
  --c-text: #e8eaed;
  --c-text-dim: #8a909d;
  --c-white: #ffffff;

  /* N160 – orange-red */
  --c-a: #e8440a;
  --c-a-lt: #ff6535;
  --c-a-bg: rgba(232, 68, 10, 0.1);
  --c-a-bg-mid: rgba(232, 68, 10, 0.18);

  /* NS160 – electric blue */
  --c-b: #0a7de8;
  --c-b-lt: #3fa3ff;
  --c-b-bg: rgba(10, 125, 232, 0.1);
  --c-b-bg-mid: rgba(10, 125, 232, 0.18);

  /* Win highlight */
  --c-win: #18b86b;
  --c-win-bg: rgba(24, 184, 107, 0.12);

  --c-font-display: "Barlow Condensed", sans-serif;
  --c-font-body: "Barlow", sans-serif;
  --c-font-mono: "DM Mono", monospace;

  --c-max: 1180px;
  --c-radius: 8px;
  --c-radius-lg: 14px;
}

/* ── FONT IMPORT (only if not already loaded by site) ───── */
@import url("https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;600;700;800;900&family=Barlow:wght@400;500;600&family=DM+Mono:wght@400;500&display=swap");

/* ── PAGE BACKGROUND OVERRIDE ───────────────────────────── */
body.comp-page {
  background: var(--c-ink);
  color: var(--c-text);
  -webkit-font-smoothing: antialiased;
}

/* ── COMPARISON STICKY NAV ──────────────────────────────── */
.comp-sticky-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: rgba(13, 14, 16, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--c-border);
  transform: translateY(-100%);
  transition: transform 0.3s ease;
}
.comp-sticky-nav.visible {
  transform: translateY(0);
}
.csn-inner {
  max-width: var(--c-max);
  margin: 0 auto;
  padding: 0 20px;
  height: 48px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.csn-title {
  font-family: var(--c-font-display);
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--c-white);
  white-space: nowrap;
  flex-shrink: 0;
}
.comp-sticky-nav nav {
  display: flex;
  gap: 4px;
  overflow-x: auto;
  scrollbar-width: none;
}
.comp-sticky-nav nav::-webkit-scrollbar {
  display: none;
}
.comp-sticky-nav nav a {
  font-family: var(--c-font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--c-text-dim);
  padding: 4px 10px;
  border-radius: 4px;
  white-space: nowrap;
  transition:
    color 0.2s,
    background 0.2s;
  text-decoration: none;
}
.comp-sticky-nav nav a:hover {
  color: var(--c-white);
  background: var(--c-steel);
}

/* ── BREADCRUMB ─────────────────────────────────────────── */
.comp-breadcrumb {
  position: relative;
  max-width: var(--c-max);
  margin: 0 auto 32px;
  font-size: 0.78rem;
  color: var(--c-text-dim);
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.comp-breadcrumb a {
  color: var(--c-text-dim);
  text-decoration: none;
}
.comp-breadcrumb a:hover {
  color: var(--c-text);
}

/* ── HERO ───────────────────────────────────────────────── */
.comp-hero {
  position: relative;
  background: var(--c-ink-soft);
  overflow: hidden;
  padding: 72px 20px 0;
}
.comp-hero-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.comp-hero-lines span {
  position: absolute;
  top: -40%;
  width: 1px;
  height: 200%;
  background: linear-gradient(
    to bottom,
    transparent,
    var(--c-border),
    transparent
  );
  transform: rotate(15deg);
}
.comp-hero-lines span:nth-child(1) {
  left: 10%;
  opacity: 0.6;
}
.comp-hero-lines span:nth-child(2) {
  left: 28%;
  opacity: 0.4;
}
.comp-hero-lines span:nth-child(3) {
  left: 50%;
  opacity: 0.5;
}
.comp-hero-lines span:nth-child(4) {
  left: 72%;
  opacity: 0.4;
}
.comp-hero-lines span:nth-child(5) {
  left: 88%;
  opacity: 0.6;
}

.comp-hero-inner {
  position: relative;
  max-width: var(--c-max);
  margin: 0 auto;
  text-align: center;
}
.comp-eyebrow {
  font-family: var(--c-font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-text-dim);
  margin-bottom: 18px;
}
.comp-title {
  font-family: var(--c-font-display);
  font-weight: 900;
  font-size: clamp(2.2rem, 6vw, 4.8rem);
  line-height: 0.95;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.comp-bike-a {
  color: var(--c-a-lt);
}
.comp-bike-b {
  color: var(--c-b-lt);
}
.comp-vs {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--c-muted);
  color: var(--c-white);
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  flex-shrink: 0;
  border: 2px solid var(--c-border);
}
.comp-subtitle {
  font-size: 0.96rem;
  color: var(--c-text-dim);
  max-width: 540px;
  margin: 0 auto 16px;
  line-height: 1.5;
}
.comp-meta {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
  font-size: 0.75rem;
  color: var(--c-text-dim);
  font-family: var(--c-font-mono);
}

/* Price strip */
.comp-price-strip {
  position: relative;
  max-width: 680px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  background: var(--c-steel);
  border: 1px solid var(--c-border);
  border-bottom: none;
  border-radius: var(--c-radius-lg) var(--c-radius-lg) 0 0;
  overflow: hidden;
}
.comp-pc {
  padding: 24px 28px;
  text-align: center;
}
.comp-pc.side-a {
  border-right: 1px solid var(--c-border);
}
.comp-pc.side-b {
  border-left: 1px solid var(--c-border);
}
.comp-pc-label {
  font-family: var(--c-font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-text-dim);
  margin-bottom: 5px;
}
.comp-pc-price {
  font-family: var(--c-font-display);
  font-size: 1.7rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.01em;
}
.comp-pc.side-a .comp-pc-price {
  color: var(--c-a-lt);
}
.comp-pc.side-b .comp-pc-price {
  color: var(--c-b-lt);
}
.comp-pc-note {
  font-size: 0.7rem;
  color: var(--c-text-dim);
  margin-top: 4px;
  font-family: var(--c-font-mono);
}
.comp-price-div {
  padding: 10px 6px;
  color: var(--c-muted);
  font-weight: 700;
  font-size: 1.1rem;
}

/* ── LAYOUT / CONTAINERS ────────────────────────────────── */
.comp-main {
  padding-bottom: 0;
}
.comp-container {
  max-width: var(--c-max);
  margin: 0 auto;
  padding: 0 20px;
}
.comp-section {
  padding: 72px 0;
  border-top: 1px solid var(--c-border);
}
.comp-section-dark {
  background: var(--c-ink-soft);
}
.comp-section-title {
  font-family: var(--c-font-display);
  font-weight: 900;
  font-size: clamp(1.7rem, 3.5vw, 2.6rem);
  letter-spacing: -0.01em;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 6px;
}
.comp-section-sub {
  color: var(--c-text-dim);
  font-size: 0.93rem;
  margin-bottom: 40px;
}

/* ── AT A GLANCE ────────────────────────────────────────── */
.comp-glance-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.comp-glance-card {
  border-radius: var(--c-radius-lg);
  padding: 28px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--c-border);
}
.comp-glance-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
}
.gc-n160::before {
  background: var(--c-a);
}
.gc-ns160::before {
  background: var(--c-b);
}
.gc-n160 {
  background: linear-gradient(135deg, var(--c-a-bg) 0%, var(--c-steel) 60%);
}
.gc-ns160 {
  background: linear-gradient(135deg, var(--c-b-bg) 0%, var(--c-steel) 60%);
}

.comp-glance-badge {
  display: inline-block;
  font-family: var(--c-font-mono);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 4px;
  margin-bottom: 10px;
}
.gc-n160 .comp-glance-badge {
  background: var(--c-a-bg-mid);
  color: var(--c-a-lt);
}
.gc-ns160 .comp-glance-badge {
  background: var(--c-b-bg-mid);
  color: var(--c-b-lt);
}

.comp-glance-card h3 {
  font-family: var(--c-font-display);
  font-weight: 800;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
}
.gc-n160 h3 {
  color: var(--c-a-lt);
}
.gc-ns160 h3 {
  color: var(--c-b-lt);
}

.comp-glance-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 20px;
  padding: 0;
}
.comp-glance-list li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.9rem;
  color: var(--c-text);
}
.comp-glance-list li .g-icon {
  font-size: 0.95rem;
  flex-shrink: 0;
}
.comp-glance-verdict {
  font-family: var(--c-font-mono);
  font-size: 0.73rem;
  color: var(--c-text-dim);
  padding-top: 14px;
  border-top: 1px solid var(--c-border);
}

/* ── SPEC TABLE ─────────────────────────────────────────── */
.spec-table-wrapper {
  overflow-x: auto;
  border-radius: var(--c-radius-lg);
  border: 1px solid var(--c-border);
  -webkit-overflow-scrolling: touch;
}
.comp-spec-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.87rem;
  min-width: 520px;
}
.comp-spec-table thead th {
  padding: 15px 18px;
  text-align: left;
  font-family: var(--c-font-display);
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--c-steel);
  color: var(--c-text-dim);
}
.col-a {
  color: var(--c-a-lt) !important;
}
.col-b {
  color: var(--c-b-lt) !important;
}
.comp-spec-table tbody tr {
  border-bottom: 1px solid var(--c-border);
  transition: background 0.15s;
}
.comp-spec-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.02);
}
.comp-spec-table td {
  padding: 11px 18px;
  vertical-align: middle;
  line-height: 1.4;
}
.comp-spec-table td:first-child {
  color: var(--c-text-dim);
  font-size: 0.81rem;
  font-weight: 500;
  width: 36%;
}
.comp-cat-row td {
  background: var(--c-ink) !important;
  font-family: var(--c-font-display);
  font-weight: 800;
  font-size: 0.73rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-text-dim);
  padding: 7px 18px !important;
  border-top: 1px solid var(--c-border);
}
.val-a,
.val-b {
  font-family: var(--c-font-mono);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--c-text);
}
.hl-win {
  color: var(--c-win) !important;
  background: var(--c-win-bg);
  border-radius: 4px;
  padding: 2px 7px;
  display: inline-block;
}
.table-note {
  margin-top: 14px;
  font-size: 0.74rem;
  color: var(--c-text-dim);
  font-family: var(--c-font-mono);
}
.table-scroll-hint {
  text-align: center;
  font-family: var(--c-font-mono);
  font-size: 0.72rem;
  color: var(--c-text-dim);
  margin-bottom: 10px;
  letter-spacing: 0.06em;
}

/* ── VARIANTS ───────────────────────────────────────────── */
.comp-variant-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.comp-variant-col {
  border: 1px solid var(--c-border);
  border-radius: var(--c-radius-lg);
  overflow: hidden;
}
.comp-vc-header {
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.vch-n160 {
  background: var(--c-a-bg-mid);
  border-bottom: 1px solid var(--c-a);
}
.vch-ns160 {
  background: var(--c-b-bg-mid);
  border-bottom: 1px solid var(--c-b);
}
.comp-vc-tag {
  font-family: var(--c-font-mono);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 7px;
  border-radius: 4px;
  flex-shrink: 0;
}
.vch-n160 .comp-vc-tag {
  background: var(--c-a);
  color: #fff;
}
.vch-ns160 .comp-vc-tag {
  background: var(--c-b);
  color: #fff;
}
.comp-vc-header h3 {
  font-family: var(--c-font-display);
  font-weight: 800;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.comp-variant-item {
  padding: 16px 22px;
  border-bottom: 1px solid var(--c-border);
  background: var(--c-ink-soft);
  transition: background 0.15s;
}
.comp-variant-item:last-child {
  border-bottom: none;
}
.comp-variant-item:hover {
  background: var(--c-steel);
}
.comp-variant-item.vt-top {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.025), transparent);
}
.vi-name {
  font-size: 0.87rem;
  color: var(--c-text);
  margin-bottom: 3px;
  font-weight: 500;
}
.vi-price {
  font-family: var(--c-font-display);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--c-white);
  letter-spacing: -0.01em;
  margin-bottom: 7px;
}
.vi-tags {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
}
.vi-tags span {
  font-size: 0.66rem;
  font-family: var(--c-font-mono);
  background: var(--c-muted);
  color: var(--c-text-dim);
  padding: 2px 7px;
  border-radius: 3px;
  letter-spacing: 0.04em;
}
.tag-modes {
  background: var(--c-win-bg) !important;
  color: var(--c-win) !important;
}

/* ── PROS & CONS ────────────────────────────────────────── */
.comp-pc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.comp-pc-block {
  border: 1px solid var(--c-border);
  border-radius: var(--c-radius-lg);
  overflow: hidden;
}
.comp-pc-bike {
  padding: 11px 18px;
  font-family: var(--c-font-display);
  font-weight: 900;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
}
.pcb-n160 {
  background: var(--c-a-bg-mid);
  color: var(--c-a-lt);
}
.pcb-ns160 {
  background: var(--c-b-bg-mid);
  color: var(--c-b-lt);
}
.comp-pc-col {
  padding: 18px 22px;
}
.comp-pc-col.pros-col {
  border-bottom: 1px solid var(--c-border);
}
.comp-pc-heading {
  font-family: var(--c-font-display);
  font-weight: 800;
  font-size: 0.88rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.comp-pc-heading.ph-pros {
  color: var(--c-win);
}
.comp-pc-heading.ph-cons {
  color: #e06060;
}
.comp-pc-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding: 0;
}
.pros-col li {
  font-size: 0.86rem;
  padding-left: 17px;
  position: relative;
  color: var(--c-text);
}
.pros-col li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--c-win);
  font-weight: 700;
  font-size: 0.73rem;
}
.cons-col li {
  font-size: 0.86rem;
  padding-left: 17px;
  position: relative;
  color: var(--c-text-dim);
}
.cons-col li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: #e06060;
  font-size: 0.78rem;
}

/* ── KEY DIFFERENCES ────────────────────────────────────── */
.comp-diff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.comp-diff-card {
  background: var(--c-steel);
  border: 1px solid var(--c-border);
  border-radius: var(--c-radius-lg);
  padding: 22px;
  transition:
    border-color 0.2s,
    transform 0.2s;
}
.comp-diff-card:hover {
  border-color: var(--c-muted);
  transform: translateY(-2px);
}
.diff-icon {
  font-size: 1.5rem;
  margin-bottom: 10px;
}
.comp-diff-card h3 {
  font-family: var(--c-font-display);
  font-weight: 800;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
  color: var(--c-white);
}
.comp-diff-card p {
  font-size: 0.84rem;
  color: var(--c-text-dim);
  line-height: 1.6;
  margin-bottom: 14px;
}
.comp-diff-card p strong {
  color: var(--c-text);
}
.diff-winner {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid var(--c-border);
}
.dw-label {
  font-size: 0.7rem;
  color: var(--c-text-dim);
  font-family: var(--c-font-mono);
}
.dw-bike {
  font-family: var(--c-font-display);
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  padding: 2px 9px;
  border-radius: 4px;
  text-transform: uppercase;
}
.dw-n160 {
  background: var(--c-a-bg-mid);
  color: var(--c-a-lt);
}
.dw-ns160 {
  background: var(--c-b-bg-mid);
  color: var(--c-b-lt);
}

/* ── VERDICT ────────────────────────────────────────────── */
.comp-section-verdict {
  background: var(--c-ink-soft);
  position: relative;
  overflow: hidden;
}
.comp-section-verdict::before {
  content: "VERDICT";
  position: absolute;
  top: 20px;
  right: -20px;
  font-family: var(--c-font-display);
  font-weight: 900;
  font-size: 7rem;
  color: rgba(255, 255, 255, 0.025);
  letter-spacing: 0.05em;
  pointer-events: none;
  line-height: 1;
}
.comp-verdict-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 20px;
}
.comp-verdict-card {
  border-radius: var(--c-radius-lg);
  padding: 28px;
  border: 1px solid var(--c-border);
  position: relative;
  overflow: hidden;
}
.comp-verdict-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
}
.vc-n160::before {
  background: var(--c-a);
}
.vc-ns160::before {
  background: var(--c-b);
}
.vc-n160 {
  background: linear-gradient(135deg, var(--c-a-bg) 0%, var(--c-steel) 60%);
}
.vc-ns160 {
  background: linear-gradient(135deg, var(--c-b-bg) 0%, var(--c-steel) 60%);
}
.vc-score {
  display: flex;
  align-items: baseline;
  gap: 7px;
  margin-bottom: 14px;
}
.vc-num {
  font-family: var(--c-font-display);
  font-weight: 900;
  font-size: 2.8rem;
  line-height: 1;
  letter-spacing: -0.03em;
}
.vc-n160 .vc-num {
  color: var(--c-a-lt);
}
.vc-ns160 .vc-num {
  color: var(--c-b-lt);
}
.vc-stars {
  font-size: 0.82rem;
  color: #f59e0b;
}
.comp-verdict-card h3 {
  font-family: var(--c-font-display);
  font-weight: 800;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 14px;
  color: var(--c-text-dim);
}
.vc-n160 h3 span {
  color: var(--c-a-lt);
}
.vc-ns160 h3 span {
  color: var(--c-b-lt);
}
.comp-verdict-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding: 0;
}
.comp-verdict-card li {
  font-size: 0.86rem;
  padding-left: 17px;
  position: relative;
  color: var(--c-text);
}
.comp-verdict-card li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--c-text-dim);
  font-size: 0.73rem;
}
.comp-verdict-summary {
  background: var(--c-steel);
  border: 1px solid var(--c-border);
  border-radius: var(--c-radius-lg);
  padding: 24px 28px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
}
.vs-icon {
  font-size: 1.7rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.comp-verdict-summary p {
  font-size: 0.94rem;
  line-height: 1.7;
  color: var(--c-text);
}
.comp-verdict-summary strong {
  color: var(--c-white);
}

/* ── FAQ ────────────────────────────────────────────────── */
.comp-faq-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.comp-faq-item {
  border: 1px solid var(--c-border);
  border-radius: var(--c-radius);
  overflow: hidden;
  background: var(--c-steel);
  transition: border-color 0.2s;
}
.comp-faq-item.open {
  border-color: var(--c-a);
}
.comp-faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 22px;
  text-align: left;
  cursor: pointer;
  font-family: var(--c-font-body);
  font-size: 0.93rem;
  font-weight: 600;
  color: var(--c-text);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  transition: color 0.2s;
}
.comp-faq-q:hover {
  color: var(--c-white);
}
.comp-faq-item.open .comp-faq-q {
  color: var(--c-a-lt);
}
.comp-faq-arrow {
  flex-shrink: 0;
  font-size: 1rem;
  transition: transform 0.3s ease;
  color: var(--c-text-dim);
}
.comp-faq-item.open .comp-faq-arrow {
  transform: rotate(180deg);
  color: var(--c-a-lt);
}
.comp-faq-a {
  padding: 0 22px 18px;
}
.comp-faq-a p {
  font-size: 0.88rem;
  color: var(--c-text-dim);
  line-height: 1.7;
}

/* ── FOOTER (comparison page override) ─────────────────── */
.comp-footer {
  background: var(--c-ink);
  border-top: 1px solid var(--c-border);
  padding: 28px 20px;
  text-align: center;
}
.comp-footer p {
  font-size: 0.76rem;
  color: var(--c-text-dim);
  margin-bottom: 6px;
  line-height: 1.6;
}
.comp-footer a {
  color: var(--c-text-dim);
  transition: color 0.2s;
  text-decoration: none;
}
.comp-footer a:hover {
  color: var(--c-a-lt);
}

/* ══════════════════════════════════════ RESPONSIVE ═════ */

/* Tablet: collapse diff to 2-col */
@media (max-width: 900px) {
  .comp-diff-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Mobile */
@media (max-width: 700px) {
  .comp-hero {
    padding: 56px 16px 0;
  }
  .comp-title {
    gap: 12px;
  }
  .comp-vs {
    width: 44px;
    height: 44px;
    font-size: 0.95rem;
  }

  /* Price strip stacks */
  .comp-price-strip {
    grid-template-columns: 1fr;
    border-radius: var(--c-radius-lg) var(--c-radius-lg) 0 0;
  }
  .comp-pc.side-a {
    border-right: none;
    border-bottom: 1px solid var(--c-border);
  }
  .comp-pc.side-b {
    border-left: none;
  }
  .comp-price-div {
    display: none;
  }

  /* All 2-col grids become 1-col */
  .comp-glance-grid,
  .comp-variant-cols,
  .comp-pc-grid,
  .comp-verdict-grid {
    grid-template-columns: 1fr;
  }

  .comp-diff-grid {
    grid-template-columns: 1fr;
  }

  .comp-section {
    padding: 48px 0;
  }
  .comp-section-title {
    font-size: 1.7rem;
  }

  /* Tighten spec table label col */
  .comp-spec-table td:first-child {
    width: 42%;
    font-size: 0.78rem;
  }
  .val-a,
  .val-b {
    font-size: 0.78rem;
  }

  .comp-verdict-summary {
    flex-direction: column;
    gap: 10px;
  }

  .csn-title {
    display: none;
  }
  .csn-inner {
    gap: 8px;
  }

  .comp-faq-q {
    font-size: 0.88rem;
    padding: 16px 16px;
  }
  .comp-faq-a {
    padding: 0 16px 16px;
  }
}

@media (max-width: 480px) {
  .comp-pc {
    padding: 18px 16px;
  }
  .comp-pc-price {
    font-size: 1.45rem;
  }
}

/* Print */
@media print {
  .comp-sticky-nav,
  .comp-hero-lines {
    display: none;
  }
  body.comp-page {
    background: #fff;
    color: #000;
  }
  .comp-section-dark {
    background: #f5f5f5;
  }
}

/* ── SPACING RESTORE ────────────────────────────────────── */
.comp-section {
  padding: 80px 0;
}
.comp-section-sub {
  margin-bottom: 48px;
}
.comp-glance-card {
  padding: 32px;
}
.comp-variant-item {
  padding: 20px 24px;
}
.comp-pc-col {
  padding: 22px 24px;
}
.comp-diff-card {
  padding: 26px;
}
.comp-verdict-card {
  padding: 32px;
}
.comp-verdict-summary {
  padding: 28px 32px;
}
.comp-faq-q {
  padding: 20px 24px;
}
.comp-faq-a {
  padding: 0 24px 20px;
}

/* ── HERO BIKE IMAGES ───────────────────────────────────── */
.comp-bikes-row {
  position: relative;
  max-width: 860px;
  margin: 0 auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: flex-end;
}
.comp-bike-img-wrap {
  position: relative;
  text-align: center;
  padding: 0 12px;
}
.comp-bike-img-wrap img {
  width: 100%;
  max-width: 420px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 16px 40px rgba(0, 0, 0, 0.6));
  transition:
    filter 0.3s ease,
    transform 0.3s ease;
}
.bike-img-a img {
  filter: drop-shadow(0 16px 40px rgba(232, 68, 10, 0.25));
}
.bike-img-b img {
  filter: drop-shadow(0 16px 40px rgba(10, 125, 232, 0.25));
}
.comp-bike-img-wrap:hover img {
  transform: translateY(-4px);
}
.comp-bike-img-label {
  display: block;
  font-family: var(--c-font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-text-dim);
  margin-top: 6px;
  margin-bottom: 16px;
}

/* Mobile: stack images */
@media (max-width: 700px) {
  .comp-bikes-row {
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }
  .comp-bike-img-wrap img {
    max-width: 100%;
  }
}

/* Hero */
.comp-hero {
  padding: 72px 20px 0;
}
.comp-meta {
  margin-bottom: 48px;
}
.comp-price-strip {
  max-width: 680px;
}
.comp-pc {
  padding: 24px 28px;
}
.comp-pc-price {
  font-size: 1.7rem;
}
.comp-pc-label {
  font-size: 0.75rem;
}

/* Section spacing */
.comp-section {
  padding: 80px 0;
}
.comp-section-title {
  font-size: clamp(1.7rem, 3.5vw, 2.6rem);
  margin-bottom: 6px;
}
.comp-section-sub {
  font-size: 0.93rem;
  margin-bottom: 48px;
}

/* At a glance */
.comp-glance-grid {
  gap: 20px;
}
.comp-glance-card {
  padding: 32px;
}
.comp-glance-card h3 {
  font-size: 1.2rem;
  margin-bottom: 18px;
}
.comp-glance-list {
  gap: 11px;
  margin-bottom: 22px;
}
.comp-glance-list li {
  font-size: 0.92rem;
}
.comp-glance-verdict {
  font-size: 0.75rem;
  padding-top: 16px;
}

/* Spec table */
.comp-spec-table {
  font-size: 0.87rem;
}
.comp-spec-table thead th {
  padding: 16px 20px;
  font-size: 0.82rem;
}
.comp-spec-table td {
  padding: 12px 20px;
}
.comp-spec-table td:first-child {
  font-size: 0.83rem;
}
.comp-cat-row td {
  padding: 9px 20px !important;
  font-size: 0.75rem;
}
.val-a,
.val-b {
  font-size: 0.84rem;
}
.table-note {
  margin-top: 16px;
  font-size: 0.76rem;
}

/* Variants */
.comp-variant-cols {
  gap: 20px;
}
.comp-vc-header {
  padding: 20px 24px;
}
.comp-vc-header h3 {
  font-size: 1rem;
}
.comp-variant-item {
  padding: 18px 24px;
}
.vi-name {
  font-size: 0.89rem;
  margin-bottom: 4px;
}
.vi-price {
  font-size: 1.3rem;
  margin-bottom: 8px;
}
.vi-tags span {
  font-size: 0.68rem;
  padding: 3px 8px;
}

/* Pros & cons */
.comp-pc-grid {
  gap: 20px;
}
.comp-pc-bike {
  padding: 13px 20px;
  font-size: 0.8rem;
}
.comp-pc-col {
  padding: 22px 24px;
}
.comp-pc-col.pros-col {
  border-bottom: 1px solid var(--c-border);
}
.comp-pc-heading {
  font-size: 0.9rem;
  margin-bottom: 12px;
}
.comp-pc-col ul {
  gap: 9px;
}
.pros-col li,
.cons-col li {
  font-size: 0.88rem;
}

/* Key differences */
.comp-diff-grid {
  gap: 16px;
}
.comp-diff-card {
  padding: 26px;
}
.diff-icon {
  font-size: 1.6rem;
  margin-bottom: 12px;
}
.comp-diff-card h3 {
  font-size: 1rem;
  margin-bottom: 10px;
}
.comp-diff-card p {
  font-size: 0.86rem;
  margin-bottom: 14px;
}
.diff-winner {
  padding-top: 12px;
  margin-top: 12px;
}
.dw-label {
  font-size: 0.72rem;
}
.dw-bike {
  font-size: 0.84rem;
  padding: 3px 10px;
}

/* Verdict */
.comp-verdict-grid {
  gap: 20px;
  margin-bottom: 24px;
}
.comp-verdict-card {
  padding: 32px;
}
.vc-num {
  font-size: 3rem;
}
.vc-stars {
  font-size: 0.85rem;
}
.comp-verdict-card h3 {
  font-size: 1.1rem;
  margin-bottom: 16px;
}
.comp-verdict-card ul {
  gap: 9px;
}
.comp-verdict-card li {
  font-size: 0.88rem;
}
.comp-verdict-summary {
  padding: 28px 32px;
  gap: 20px;
}
.vs-icon {
  font-size: 1.8rem;
}
.comp-verdict-summary p {
  font-size: 0.96rem;
  line-height: 1.75;
}

/* FAQ */
.comp-faq-list {
  gap: 4px;
}
.comp-faq-q {
  padding: 20px 24px;
  font-size: 0.95rem;
}
.comp-faq-arrow {
  font-size: 1.1rem;
}
.comp-faq-a {
  padding: 0 24px 20px;
}
.comp-faq-a p {
  font-size: 0.9rem;
  line-height: 1.75;
}

/* Mobile overrides — keep these tight on small screens */
@media (max-width: 700px) {
  .comp-section {
    padding: 52px 0;
  }
  .comp-glance-card {
    padding: 24px;
  }
  .comp-verdict-card {
    padding: 24px;
  }
  .comp-verdict-summary {
    padding: 20px 22px;
  }
  .comp-faq-q {
    font-size: 0.88rem;
    padding: 16px 18px;
  }
  .comp-faq-a {
    padding: 0 18px 16px;
  }
}
/* Fix comp-title — force single row, tighter size */
.comp-title {
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-size: clamp(1.8rem, 4.5vw, 3.8rem);
}

@media (max-width: 700px) {
  .comp-title {
    font-size: clamp(1.4rem, 7vw, 2.4rem);
    gap: 10px;
  }
  .comp-vs {
    width: 36px;
    height: 36px;
    font-size: 0.8rem;
  }
}
.comp-subtitle {
  max-width: 600px;
  font-size: 1rem;
  text-wrap: balance;
}
.comp-meta {
  gap: 16px;
  font-size: 0.8rem;
  margin-bottom: 40px;
}
/* ── PRICE STRIP ENLARGED ───────────────────────────────── */
.comp-price-strip {
  max-width: 860px;
}
.comp-pc {
  padding: 30px 48px;
}
.comp-pc-label {
  font-size: 0.85rem;
  margin-bottom: 8px;
  letter-spacing: 0.12em;
}
.comp-pc-price {
  font-size: 2.2rem;
  margin-bottom: 2px;
}
.comp-pc-note {
  font-size: 0.76rem;
  margin-top: 6px;
}
.comp-price-div {
  font-size: 1.4rem;
  padding: 10px 12px;
}

@media (max-width: 700px) {
  .comp-pc {
    padding: 22px 28px;
  }
  .comp-pc-price {
    font-size: 1.7rem;
  }
}

/* PATCH */

/* ════════════════════════════════════════════════════════════
   MOTORGRID — comparison-light-patch.css
   DROP-IN PATCH: Converts comparison page from dark → light
   Add this AFTER comparison.css in your HTML <head>
   ════════════════════════════════════════════════════════════ */

/* ── OVERRIDE CSS VARIABLES FOR LIGHT THEME ────────────── */
:root {
  --c-ink: #f7f8fa; /* was #0d0e10 — now off-white page bg */
  --c-ink-soft: #eef0f4; /* was #1a1c21 — light warm grey sections */
  --c-steel: #ffffff; /* was #23262d — pure white cards */
  --c-muted: #cbd0da; /* was #3d424d — soft mid-grey */
  --c-border: #dde1e9; /* was #2e3139 — light border */
  --c-text: #1a1d24; /* was #e8eaed — near-black for body text */
  --c-text-dim: #6b7282; /* was #8a909d — medium grey secondary text */
  --c-white: #0d0e10; /* was #ffffff — inverted: dark for "white" text */

  /* N160 accent — slightly deeper orange for legibility on light */
  --c-a: #d63d08;
  --c-a-lt: #e8440a;
  --c-a-bg: rgba(214, 61, 8, 0.07);
  --c-a-bg-mid: rgba(214, 61, 8, 0.12);

  /* NS160 accent — richer blue on light */
  --c-b: #0869c8;
  --c-b-lt: #0a7de8;
  --c-b-bg: rgba(8, 105, 200, 0.07);
  --c-b-bg-mid: rgba(8, 105, 200, 0.12);

  /* Win highlight — kept green, slightly adjusted */
  --c-win: #12a05e;
  --c-win-bg: rgba(18, 160, 94, 0.1);
}

/* ── PAGE BACKGROUND ────────────────────────────────────── */
body.comp-page {
  background: var(--c-ink);
  color: var(--c-text);
}

/* ── HERO — light with subtle warm tint ─────────────────── */
.comp-hero {
  background: #ffffff;
  border-bottom: 1px solid var(--c-border);
}

/* Hero decorative lines: use border color on white */
.comp-hero-lines span {
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(180, 185, 200, 0.45),
    transparent
  );
}

/* Eyebrow text */
.comp-eyebrow {
  color: var(--c-text-dim);
}

/* VS bubble: dark on light */
.comp-vs {
  background: #1a1d24;
  color: #ffffff;
  border-color: #2e3340;
}

/* Subtitle */
.comp-subtitle {
  color: var(--c-text-dim);
}

/* Meta pills */
.comp-meta {
  color: var(--c-text-dim);
}

/* ── BREADCRUMB ─────────────────────────────────────────── */
.comp-breadcrumb,
.comp-breadcrumb a {
  color: var(--c-text-dim);
}
.comp-breadcrumb a:hover {
  color: var(--c-text);
}

/* ── PRICE STRIP ────────────────────────────────────────── */
.comp-price-strip {
  background: #ffffff;
  border-color: var(--c-border);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}
.comp-pc.side-a {
  border-right-color: var(--c-border);
}
.comp-pc.side-b {
  border-left-color: var(--c-border);
}
.comp-pc-label {
  color: var(--c-text-dim);
}
.comp-pc-note {
  color: var(--c-text-dim);
}
.comp-price-div {
  color: var(--c-muted);
}

/* ── SECTION BACKGROUNDS ────────────────────────────────── */
.comp-section {
  border-top-color: var(--c-border);
}
.comp-section-dark {
  background: var(--c-ink-soft);
}
.comp-section-sub {
  color: var(--c-text-dim);
}

/* ── AT A GLANCE CARDS ──────────────────────────────────── */
.gc-n160,
.gc-ns160 {
  border-color: var(--c-border);
}
.gc-n160 {
  background: linear-gradient(135deg, rgba(214, 61, 8, 0.05) 0%, #ffffff 55%);
  box-shadow: 0 2px 16px rgba(214, 61, 8, 0.06);
}
.gc-ns160 {
  background: linear-gradient(135deg, rgba(8, 105, 200, 0.05) 0%, #ffffff 55%);
  box-shadow: 0 2px 16px rgba(8, 105, 200, 0.06);
}
.comp-glance-list li {
  color: var(--c-text);
}
.comp-glance-verdict {
  color: var(--c-text-dim);
  border-top-color: var(--c-border);
}

/* ── SPEC TABLE ─────────────────────────────────────────── */
.spec-table-wrapper {
  border-color: var(--c-border);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}
.comp-spec-table thead th {
  background: #f0f2f6;
  color: var(--c-text-dim);
  border-bottom: 2px solid var(--c-border);
}
.comp-spec-table tbody tr {
  border-bottom-color: var(--c-border);
}
.comp-spec-table tbody tr:hover {
  background: rgba(0, 0, 0, 0.02);
}
.comp-spec-table td:first-child {
  color: var(--c-text-dim);
}
.comp-cat-row td {
  background: #e9ecf2 !important;
  color: #5a6174;
  border-top-color: var(--c-border);
}
.val-a,
.val-b {
  color: var(--c-text);
}
.table-note {
  color: var(--c-text-dim);
}

/* ── VARIANT CARDS ──────────────────────────────────────── */
.comp-variant-col {
  border-color: var(--c-border);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.05);
}
.comp-vc-header h3 {
  color: var(--c-text);
}
.comp-variant-item {
  background: #ffffff;
  border-bottom-color: var(--c-border);
}
.comp-variant-item:hover {
  background: #f5f7fa;
}
.comp-variant-item.vt-top {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.02), transparent);
}
.vi-name {
  color: var(--c-text);
}
.vi-price {
  color: #0d0e10;
}
.vi-tags span {
  background: #eef0f5;
  color: var(--c-text-dim);
}

/* ── PROS & CONS ────────────────────────────────────────── */
.comp-pc-block {
  border-color: var(--c-border);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.05);
  background: #ffffff;
}
.comp-pc-col.pros-col {
  border-bottom-color: var(--c-border);
}
.pros-col li,
.cons-col li {
  color: var(--c-text);
}
.cons-col li {
  color: var(--c-text-dim);
}

/* ── KEY DIFFERENCES ────────────────────────────────────── */
.comp-diff-card {
  background: #ffffff;
  border-color: var(--c-border);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}
.comp-diff-card:hover {
  border-color: var(--c-muted);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.09);
}
.comp-diff-card h3 {
  color: #0d0e10;
}
.comp-diff-card p {
  color: var(--c-text-dim);
}
.comp-diff-card p strong {
  color: var(--c-text);
}
.diff-winner {
  border-top-color: var(--c-border);
}
.dw-label {
  color: var(--c-text-dim);
}

/* ── VERDICT SECTION ────────────────────────────────────── */
.comp-section-verdict {
  background: var(--c-ink-soft);
}
.comp-section-verdict::before {
  color: rgba(0, 0, 0, 0.04);
}
.comp-verdict-card {
  border-color: var(--c-border);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
}
.vc-n160 {
  background: linear-gradient(135deg, rgba(214, 61, 8, 0.06) 0%, #ffffff 55%);
}
.vc-ns160 {
  background: linear-gradient(135deg, rgba(8, 105, 200, 0.06) 0%, #ffffff 55%);
}
.comp-verdict-card h3 {
  color: var(--c-text-dim);
}
.comp-verdict-card li {
  color: var(--c-text);
}
.comp-verdict-card li::before {
  color: var(--c-muted);
}
.comp-verdict-summary {
  background: #ffffff;
  border-color: var(--c-border);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.05);
}
.comp-verdict-summary p {
  color: var(--c-text);
}
.comp-verdict-summary strong {
  color: #0d0e10;
}

/* ── FAQ ────────────────────────────────────────────────── */
.comp-faq-item {
  background: #ffffff;
  border-color: var(--c-border);
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.04);
}
.comp-faq-item.open {
  border-color: var(--c-a);
  box-shadow: 0 2px 12px rgba(214, 61, 8, 0.1);
}
.comp-faq-q {
  color: var(--c-text);
}
.comp-faq-q:hover {
  color: #0d0e10;
}
.comp-faq-item.open .comp-faq-q {
  color: var(--c-a);
}
.comp-faq-arrow {
  color: var(--c-muted);
}
.comp-faq-item.open .comp-faq-arrow {
  color: var(--c-a);
}
.comp-faq-a p {
  color: var(--c-text-dim);
}

/* ── STICKY NAV ─────────────────────────────────────────── */
.comp-sticky-nav {
  background: rgba(255, 255, 255, 0.96);
  border-bottom-color: var(--c-border);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}
.csn-title {
  color: #0d0e10;
}
.comp-sticky-nav nav a {
  color: var(--c-text-dim);
}
.comp-sticky-nav nav a:hover {
  color: #0d0e10;
  background: var(--c-ink-soft);
}

/* ── BIKE IMAGES — recolor drop shadows on light bg ─────── */
.bike-img-a img {
  filter: drop-shadow(0 16px 40px rgba(214, 61, 8, 0.18));
}
.bike-img-b img {
  filter: drop-shadow(0 16px 40px rgba(8, 105, 200, 0.18));
}
.comp-bike-img-label {
  color: var(--c-text-dim);
}

/* ── PRINT: no change needed (already near white) ───────── */
@media print {
  body.comp-page {
    background: #fff;
    color: #000;
  }
  .comp-section-dark {
    background: #f5f5f5;
  }
}

/* Full specs table No scrolling horizontally */
/* ════════════════════════════════════════════════════════════
   SPEC TABLE — MOBILE CARD LAYOUT FIX
   Paste this at the bottom of comparison.css
   Converts horizontal-scroll table → stacked card rows on mobile
   ════════════════════════════════════════════════════════════ */

@media (max-width: 700px) {
  /* Remove the scrollable wrapper behaviour */
  .spec-table-wrapper {
    overflow-x: visible;
    border: none;
    border-radius: 0;
    background: transparent;
  }

  /* Hide the original thead (col labels replaced by data-label) */
  .comp-spec-table thead {
    display: none;
  }

  /* Make table behave like a block */
  .comp-spec-table,
  .comp-spec-table tbody {
    display: block;
    width: 100%;
    min-width: unset;
  }

  /* ── CATEGORY HEADER ROWS ── */
  .comp-cat-row {
    display: block;
    width: 100%;
    margin-top: 20px;
  }
  .comp-cat-row td {
    display: block;
    width: 100%;
    box-sizing: border-box;
    border-radius: 6px 6px 0 0;
    background: var(--c-ink) !important;
    font-size: 0.72rem !important;
    padding: 8px 14px !important;
    letter-spacing: 0.14em;
    border: 1px solid var(--c-border);
    border-bottom: none;
  }

  /* ── SPEC ROWS — card style ── */
  .comp-spec-table tbody tr:not(.comp-cat-row) {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    border: 1px solid var(--c-border);
    border-top: none;
    background: var(--c-steel);
    margin-bottom: 0;
  }

  /* Last row before next category gets bottom radius */
  .comp-spec-table tbody tr:not(.comp-cat-row):last-child {
    border-radius: 0 0 6px 6px;
  }

  /* ── LABEL cell (first td) spans full width on row 1 ── */
  .comp-spec-table tbody tr:not(.comp-cat-row) td:first-child {
    grid-column: 1 / -1; /* full width */
    grid-row: 1;
    width: auto;
    padding: 10px 14px 4px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--c-text-dim);
    border-bottom: 1px dashed var(--c-border);
    background: transparent;
    text-decoration: underline dotted var(--c-border);
    text-underline-offset: 3px;
  }

  /* ── VALUE cells (val-a, val-b) sit side by side on row 2 ── */
  .comp-spec-table tbody tr:not(.comp-cat-row) td:nth-child(2),
  .comp-spec-table tbody tr:not(.comp-cat-row) td:nth-child(3) {
    grid-row: 2;
    padding: 8px 14px 12px;
    font-size: 0.84rem;
    vertical-align: middle;
  }

  /* Left value cell — N160 side */
  .comp-spec-table tbody tr:not(.comp-cat-row) td:nth-child(2) {
    grid-column: 1;
    border-right: 1px solid var(--c-border);
    position: relative;
  }

  /* Add "N160" micro-label above value */
  .comp-spec-table tbody tr:not(.comp-cat-row) td:nth-child(2)::before {
    content: "N160";
    display: block;
    font-family: var(--c-font-mono);
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: var(--c-a-lt);
    margin-bottom: 3px;
    text-transform: uppercase;
  }

  /* Right value cell — NS160 side */
  .comp-spec-table tbody tr:not(.comp-cat-row) td:nth-child(3) {
    grid-column: 2;
    position: relative;
  }

  /* Add "NS160" micro-label above value */
  .comp-spec-table tbody tr:not(.comp-cat-row) td:nth-child(3)::before {
    content: "NS160";
    display: block;
    font-family: var(--c-font-mono);
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: var(--c-b-lt);
    margin-bottom: 3px;
    text-transform: uppercase;
  }

  /* Keep win highlight working */
  .hl-win {
    display: inline-block;
    padding: 2px 6px;
    font-size: 0.82rem;
  }

  /* Scroll hint no longer needed */
  .table-scroll-hint {
    display: none;
  }

  /* Table note stays below */
  .table-note {
    margin-top: 16px;
    padding: 0 4px;
  }
}
/* ── PRICE STRIP LINK ───────────────────────────────────── */
.comp-pc-link {
  display: inline-block;
  margin-top: 12px;
  font-family: var(--c-font-display);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 7px 16px;
  border-radius: 5px;
  border: 1px solid transparent;
  transition:
    background 0.2s,
    color 0.2s,
    border-color 0.2s;
}
.comp-pc-link-a {
  color: var(--c-a-lt);
  border-color: var(--c-a);
  background: var(--c-a-bg);
}
.comp-pc-link-a:hover {
  background: var(--c-a);
  color: #fff;
}
.comp-pc-link-b {
  color: var(--c-b-lt);
  border-color: var(--c-b);
  background: var(--c-b-bg);
}
.comp-pc-link-b:hover {
  background: var(--c-b);
  color: #fff;
}

/* ── VERDICT CTA BUTTON ─────────────────────────────────── */
.comp-verdict-cta {
  display: block;
  margin-top: 20px;
  padding: 12px 20px;
  text-align: center;
  font-family: var(--c-font-display);
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 7px;
  border: 1px solid transparent;
  transition:
    background 0.2s,
    color 0.2s,
    transform 0.15s;
}
.comp-verdict-cta:hover {
  transform: translateY(-2px);
}
.cta-n160 {
  background: var(--c-a-bg-mid);
  color: var(--c-a-lt);
  border-color: var(--c-a);
}
.cta-n160:hover {
  background: var(--c-a);
  color: #fff;
  border-color: var(--c-a);
}
.cta-ns160 {
  background: var(--c-b-bg-mid);
  color: var(--c-b-lt);
  border-color: var(--c-b);
}
.cta-ns160:hover {
  background: var(--c-b);
  color: #fff;
  border-color: var(--c-b);
}

/* Mobile: full-width buttons */
@media (max-width: 700px) {
  .comp-pc-link {
    display: block;
    text-align: center;
  }
  .comp-verdict-cta {
    padding: 14px 20px;
    font-size: 0.85rem;
  }
}

/* ── HERO BIKE IMAGES — uniform size fix ───────────────── */
.comp-bike-img-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.comp-bike-img-wrap img {
  width: 100%;
  height: 260px; /* fixed height — both images same box */
  max-width: 420px;
  object-fit: contain; /* scales image inside box, no cropping */
}

@media (max-width: 900px) {
  .comp-bike-img-wrap img {
    height: 200px;
  }
}

@media (max-width: 700px) {
  .comp-bike-img-wrap img {
    height: 140px;
  }
}
