/* Compare page — BE FORWARD marketplace theme */

body.bf-compare-page main.cmp {
  background: var(--bf-page);
  overflow-x: clip;
  font-family: var(--bf-font);
  color: var(--bf-black);
}

/* ── Page head ───────────────────────────────────────────────── */

.cmp-head {
  background: #fff;
  border-bottom: 1px solid var(--bf-line);
  padding: 20px 0 0;
}

.cmp-head__crumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 12px;
  color: var(--bf-muted);
  margin-bottom: 12px;
}

.cmp-head__crumb a {
  color: var(--bf-muted) !important;
  text-decoration: none;
}

.cmp-head__crumb a:hover {
  color: var(--bf-orange) !important;
}

.cmp-head__crumb i {
  font-size: 9px;
  opacity: 0.45;
}

.cmp-head__crumb span {
  color: var(--bf-black);
  font-weight: 600;
}

.cmp-head__row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  padding-bottom: 20px;
}

.cmp-head__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px 6px 8px;
  border-radius: 999px;
  background: var(--bf-bg-soft);
  border: 1px solid var(--bf-line);
  font-size: 12px;
  font-weight: 600;
  color: var(--bf-muted);
  margin-bottom: 14px;
}

.cmp-head__flag {
  width: 26px;
  height: 17px;
  border-radius: 2px;
  background: #fff;
  box-shadow: 0 0 0 1px var(--bf-line);
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.cmp-head__flag::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 62% 50%, var(--bf-orange) 36%, transparent 37%);
}

.cmp-head__title {
  margin: 0 0 8px;
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--bf-black);
}

.cmp-head__title em {
  font-style: normal;
  color: var(--bf-orange);
}

.cmp-head__lead {
  margin: 0 0 14px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--bf-muted);
  max-width: 52ch;
}

.cmp-head__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
}

.cmp-head__trust li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--bf-grey);
}

.cmp-head__trust i {
  color: var(--bf-orange);
}

.cmp-head__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cmp-head__stats {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cmp-head__stat {
  padding: 10px 16px;
  background: var(--bf-bg-soft);
  border: 1px solid var(--bf-line);
  border-radius: var(--bf-radius-sm);
  text-align: center;
  min-width: 88px;
}

.cmp-head__stat strong {
  display: block;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--bf-black);
  line-height: 1.1;
}

.cmp-head__stat span {
  display: block;
  margin-top: 4px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bf-muted);
}

/* ── Orange quick panel ──────────────────────────────────────── */

.cmp-quick-wrap {
  padding: 24px 0;
  background: var(--bf-page);
}

.cmp-quick-panel {
  background: linear-gradient(145deg, #0047FF 0%, #0038CC 55%, #002FA8 100%);
  padding: 22px 24px;
  border-radius: var(--bf-radius);
  box-shadow: var(--bf-shadow-md);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.cmp-quick-panel h2 {
  margin: 0 0 16px;
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
}

.cmp-quick-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.cmp-quick-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  min-height: 72px;
  padding: 16px;
  box-sizing: border-box;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--bf-radius-sm);
  text-decoration: none !important;
  color: inherit !important;
  transition: background 0.15s ease, transform 0.15s ease;
}

a.cmp-quick-item:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-1px);
}

.cmp-quick-item__num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 2px;
}

.cmp-quick-item__text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
  flex: 1;
}

.cmp-quick-item__text strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
  color: #fff;
}

.cmp-quick-item__text em {
  display: block;
  font-style: normal;
  font-size: 11px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.82);
}

/* ── Comparison slots strip ──────────────────────────────────── */

.cmp-slots-wrap {
  padding: 0 0 8px;
  background: var(--bf-page);
}

.cmp-slots-panel {
  background: #fff;
  border: 1px solid var(--bf-line);
  border-radius: var(--bf-radius);
  padding: 18px 20px;
  box-shadow: var(--bf-shadow);
}

.cmp-slots-panel__head {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--bf-muted);
  margin-bottom: 14px;
}

.cmp-slots-panel__head i {
  color: var(--bf-orange);
}

.cmp-slots {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.cmp-slot {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: var(--bf-radius-sm);
  border: 1px dashed var(--bf-line);
  background: var(--bf-bg-soft);
  text-decoration: none !important;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.cmp-slot--filled {
  border-style: solid;
  border-color: rgba(0, 71, 255, 0.45);
  background: var(--bf-orange-soft);
}

.cmp-slot--filled:hover {
  border-color: var(--bf-orange);
}

.cmp-slot--empty:hover {
  border-color: var(--bf-orange);
  background: var(--bf-orange-soft);
}

.cmp-slot--empty > i {
  width: 40px;
  height: 40px;
  border-radius: var(--bf-radius-sm);
  background: #fff;
  border: 1px solid var(--bf-line);
  color: var(--bf-orange);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.cmp-slot img {
  width: 56px;
  height: 42px;
  object-fit: cover;
  border-radius: 4px;
  flex-shrink: 0;
}

.cmp-slot span {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.cmp-slot strong {
  font-size: 13px;
  font-weight: 600;
  color: var(--bf-black);
  line-height: 1.35;
}

.cmp-slot em {
  font-style: normal;
  font-size: 11px;
  color: var(--bf-muted);
}

.cmp-slots-tip {
  margin: 12px 0 0;
  font-size: 13px;
  color: var(--bf-muted);
}

.cmp-slots-tip i {
  color: var(--bf-orange);
  margin-right: 6px;
}

/* ── Pillars ─────────────────────────────────────────────────── */

.cmp-pillars {
  padding: 0 0 24px;
  background: var(--bf-page);
}

.cmp-pillar-bar {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: #fff;
  border: 1px solid var(--bf-line);
  border-radius: var(--bf-radius);
  box-shadow: var(--bf-shadow);
  overflow: hidden;
}

.cmp-pillar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  border-right: 1px solid var(--bf-line);
  text-decoration: none !important;
  color: inherit !important;
  transition: background 0.15s ease;
}

.cmp-pillar:last-child {
  border-right: none;
}

.cmp-pillar:hover {
  background: var(--bf-bg-soft);
}

.cmp-pillar > i {
  width: 40px;
  height: 40px;
  border-radius: var(--bf-radius-sm);
  background: var(--bf-orange-soft);
  color: var(--bf-orange);
  display: grid;
  place-items: center;
  font-size: 16px;
  flex-shrink: 0;
}

.cmp-pillar span {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.cmp-pillar strong {
  font-size: 13px;
  font-weight: 700;
  color: var(--bf-black);
}

.cmp-pillar em {
  font-style: normal;
  font-size: 11px;
  color: var(--bf-muted);
}

/* ── Main layout ───────────────────────────────────────────────── */

.cmp-main {
  padding: 0 0 32px;
  background: var(--bf-page);
}

.cmp-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.34fr) minmax(0, 0.66fr);
  gap: 24px;
  align-items: start;
}

.cmp-sidebar {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cmp-side-card {
  padding: 20px 18px;
  background: #fff;
  border: 1px solid var(--bf-line);
  border-radius: var(--bf-radius);
  box-shadow: var(--bf-shadow);
}

.cmp-side-head {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  color: var(--bf-black);
  margin-bottom: 14px;
}

.cmp-side-head i {
  color: var(--bf-orange);
}

.cmp-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cmp-steps li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13px;
  line-height: 1.55;
  color: var(--bf-muted);
}

.cmp-steps li span {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--bf-orange-soft);
  color: var(--bf-orange);
  font-size: 11px;
  font-weight: 800;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.cmp-side-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cmp-side-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 12px;
  border-radius: var(--bf-radius-sm);
  border: 1px solid var(--bf-line);
  background: var(--bf-bg-soft);
  font-size: 13px;
  font-weight: 600;
  color: var(--bf-black) !important;
  text-decoration: none !important;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.cmp-side-link:hover {
  border-color: var(--bf-orange);
  background: var(--bf-orange-soft);
}

.cmp-side-link i {
  color: var(--bf-orange);
  width: 18px;
  text-align: center;
}

.cmp-side-wa i {
  color: #25d366;
}

.cmp-side-clear i {
  color: #dc2626;
}

/* ── Toolbar ─────────────────────────────────────────────────── */

.cmp-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  background: #fff;
  border: 1px solid var(--bf-line);
  border-radius: var(--bf-radius);
  padding: 12px 16px;
  margin-bottom: 16px;
  box-shadow: var(--bf-shadow);
}

.cmp-toolbar__left,
.cmp-toolbar__right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.cmp-count-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--bf-orange-soft);
  border: 1px solid rgba(0, 71, 255, 0.35);
  font-size: 12px;
  font-weight: 700;
  color: var(--bf-orange-d);
}

.cmp-toolbar-hint {
  font-size: 12px;
  color: var(--bf-muted);
}

/* ── Vehicle cards ───────────────────────────────────────────── */

.cmp-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 24px;
}

.cmp-vehicle-card {
  background: #fff;
  border: 1px solid var(--bf-line);
  border-radius: var(--bf-radius-sm);
  overflow: hidden;
  box-shadow: var(--bf-shadow);
  transition: box-shadow 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.cmp-vehicle-card:not(.cmp-vehicle-add):hover {
  transform: translateY(-2px);
  box-shadow: var(--bf-shadow-md);
  border-color: #d1d5db;
}

.cmp-vehicle-img {
  position: relative;
  aspect-ratio: 16 / 10;
  background: var(--bf-bg-soft);
}

.cmp-vehicle-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cmp-vehicle-img > span {
  position: absolute;
  top: 8px;
  left: 8px;
  padding: 3px 8px;
  border-radius: 4px;
  background: var(--bf-orange);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  z-index: 2;
}

.cmp-remove {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(17, 24, 39, 0.75);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  text-decoration: none;
  transition: background 0.15s ease;
  z-index: 2;
}

.cmp-remove:hover {
  background: #dc2626;
}

.cmp-vehicle-body {
  padding: 16px 18px 18px;
}

.cmp-vehicle-body h3 {
  margin: 0 0 4px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
  color: var(--bf-black);
}

.cmp-stock {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: var(--bf-muted);
  margin-bottom: 10px;
}

.cmp-price {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 4px;
}

.cmp-price strong {
  font-size: 18px;
  font-weight: 700;
  color: var(--bf-orange-d);
}

.cmp-price span {
  font-size: 10px;
  font-weight: 600;
  color: var(--bf-muted);
  text-transform: uppercase;
}

.cmp-price em {
  font-style: normal;
  font-size: 10px;
  font-weight: 700;
  color: #16a34a;
  background: rgba(22, 163, 74, 0.1);
  padding: 2px 8px;
  border-radius: 999px;
}

.cmp-price-best strong {
  color: #16a34a;
}

.cmp-cif {
  font-size: 12px;
  color: var(--bf-muted);
  margin-bottom: 12px;
}

.cmp-mini-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  list-style: none;
  margin: 0 0 14px;
  padding: 0;
}

.cmp-mini-specs li {
  font-size: 11px;
  color: var(--bf-muted);
  background: var(--bf-bg-soft);
  padding: 4px 8px;
  border-radius: 4px;
}

.cmp-mini-specs i {
  color: var(--bf-orange);
  margin-right: 4px;
}

.cmp-detail-btn {
  width: 100%;
  justify-content: center;
}

.cmp-vehicle-add {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
  border-style: dashed;
  text-decoration: none !important;
  background: var(--bf-bg-soft);
}

.cmp-vehicle-add:hover {
  border-color: var(--bf-orange);
  background: var(--bf-orange-soft);
}

.cmp-add-inner {
  text-align: center;
  padding: 24px;
}

.cmp-add-inner i {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--bf-line);
  color: var(--bf-orange);
  display: grid;
  place-items: center;
  margin: 0 auto 12px;
  font-size: 18px;
}

.cmp-add-inner strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--bf-black);
  margin-bottom: 4px;
}

.cmp-add-inner span {
  font-size: 12px;
  color: var(--bf-muted);
}

/* ── Comparison table ────────────────────────────────────────── */

.cmp-table-panel {
  background: #fff;
  border: 1px solid var(--bf-line);
  border-radius: var(--bf-radius);
  box-shadow: var(--bf-shadow);
  overflow: hidden;
}

.cmp-table-head {
  padding: 22px 24px 0;
}

.cmp-table-head h2 {
  margin: 0 0 8px;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--bf-black);
}

.cmp-table-head p {
  margin: 0 0 16px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--bf-muted);
}

.cmp-table-head .rj-kicker {
  color: var(--bf-orange);
  margin-bottom: 10px;
}

.cmp-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.cmp-table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  font-size: 13px;
}

.cmp-table th,
.cmp-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--bf-line);
  text-align: left;
  vertical-align: middle;
}

.cmp-table thead th {
  background: var(--bf-bg-soft);
  font-weight: 600;
}

.cmp-table th:first-child,
.cmp-table td:first-child {
  position: sticky;
  left: 0;
  z-index: 1;
  background: #fff;
  font-weight: 600;
  color: var(--bf-grey);
  min-width: 140px;
  box-shadow: 1px 0 0 var(--bf-line);
}

.cmp-table thead th:first-child {
  background: var(--bf-bg-soft);
  z-index: 2;
}

.cmp-th-vehicle {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 180px;
}

.cmp-th-vehicle img {
  width: 48px;
  height: 36px;
  object-fit: cover;
  border-radius: 4px;
  flex-shrink: 0;
}

.cmp-th-vehicle span {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
  flex: 1;
}

.cmp-th-vehicle strong {
  font-size: 12px;
  font-weight: 600;
  color: var(--bf-black);
  line-height: 1.35;
}

.cmp-th-vehicle em {
  font-style: normal;
  font-size: 11px;
  color: var(--bf-muted);
}

.cmp-th-remove {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--bf-bg-soft);
  color: var(--bf-muted);
  display: grid;
  place-items: center;
  text-decoration: none;
  flex-shrink: 0;
  transition: background 0.15s ease, color 0.15s ease;
}

.cmp-th-remove:hover {
  background: #fee2e2;
  color: #dc2626;
}

.cmp-table-section td {
  background: var(--bf-bg-soft);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--bf-muted);
}

.cmp-highlight {
  font-weight: 700;
  color: var(--bf-black);
}

.cmp-best {
  color: #16a34a;
  background: rgba(22, 163, 74, 0.06);
}

.cmp-table-actions td {
  background: var(--bf-bg-soft);
}

.cmp-table-actions .rj-btn {
  width: 100%;
  justify-content: center;
}

/* ── Empty state ─────────────────────────────────────────────── */

.cmp-empty {
  text-align: center;
  padding: 48px 28px;
  background: #fff;
  border: 1px solid var(--bf-line);
  border-radius: var(--bf-radius);
  box-shadow: var(--bf-shadow);
}

.cmp-empty__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--bf-orange-soft);
  color: var(--bf-orange);
  display: grid;
  place-items: center;
  font-size: 1.5rem;
}

.cmp-empty h2 {
  margin: 0 0 10px;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--bf-black);
}

.cmp-empty > p {
  margin: 0 auto 24px;
  max-width: 46ch;
  font-size: 14px;
  line-height: 1.65;
  color: var(--bf-muted);
}

.cmp-empty-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 24px;
  text-align: left;
}

.cmp-empty-step {
  padding: 16px;
  background: var(--bf-bg-soft);
  border: 1px solid var(--bf-line);
  border-radius: var(--bf-radius-sm);
}

.cmp-empty-step i {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bf-orange-soft);
  color: var(--bf-orange);
  display: grid;
  place-items: center;
  margin-bottom: 10px;
}

.cmp-empty-step strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--bf-black);
  margin-bottom: 4px;
}

.cmp-empty-step span {
  font-size: 12px;
  line-height: 1.5;
  color: var(--bf-muted);
}

.cmp-empty-actions {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Quote band ──────────────────────────────────────────────── */

.cmp-quote {
  padding: 0 0 32px;
  background: var(--bf-page);
}

.cmp-quote__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  padding: 28px 32px;
  background: #fff;
  border: 1px solid var(--bf-line);
  border-radius: var(--bf-radius);
  box-shadow: var(--bf-shadow-md);
}

.cmp-quote__copy h2 {
  margin: 0 0 8px;
  font-size: clamp(1.15rem, 2.5vw, 1.4rem);
  font-weight: 700;
  color: var(--bf-black);
}

.cmp-quote__copy p {
  margin: 0 0 14px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--bf-muted);
  max-width: 52ch;
}

.cmp-quote__copy .rj-kicker {
  color: var(--bf-orange);
  margin-bottom: 10px;
}

.cmp-quote-stocks {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.cmp-quote-stocks span {
  display: inline-flex;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--bf-orange-soft);
  border: 1px solid rgba(0, 71, 255, 0.35);
  font-size: 11px;
  font-weight: 700;
  color: var(--bf-orange-d);
}

.cmp-quote__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* ── CTA ─────────────────────────────────────────────────────── */

.cmp-cta {
  background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
}

.cmp-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  padding: 28px 32px;
  border-radius: var(--bf-radius);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.cmp-cta__copy h2 {
  margin: 0 0 8px;
  color: #fff;
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 700;
}

.cmp-cta__copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
  max-width: 48ch;
  line-height: 1.6;
}

.cmp-cta__copy .rj-kicker {
  color: var(--bf-orange);
}

.cmp-cta__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

body.bf-compare-page .cmp-cta .rj-btn--ghost {
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff !important;
  background: transparent;
}

body.bf-compare-page .cmp-cta .rj-btn--ghost:hover {
  border-color: #fff;
  color: #fff !important;
}

@media (max-width: 1100px) {
  .cmp-quick-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cmp-cards {
    grid-template-columns: 1fr;
  }

  .cmp-slots {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .cmp-head__row,
  .cmp-quote__inner,
  .cmp-cta__inner {
    flex-direction: column;
    align-items: stretch;
  }

  .cmp-head__stats {
    width: 100%;
  }

  .cmp-head__stat {
    flex: 1;
    min-width: 0;
  }

  .cmp-layout {
    grid-template-columns: 1fr;
  }

  .cmp-sidebar {
    order: 2;
  }

  .cmp-content {
    order: 1;
  }

  .cmp-pillar-bar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cmp-pillar:nth-child(2) {
    border-right: none;
  }

  .cmp-pillar:nth-child(odd) {
    border-right: 1px solid var(--bf-line);
  }

  .cmp-pillar:nth-child(3),
  .cmp-pillar:nth-child(4) {
    border-top: 1px solid var(--bf-line);
  }

  .cmp-empty-steps {
    grid-template-columns: 1fr;
  }
}
