:root {
  color-scheme: light;
  --page: #f5f6f8;
  --sidebar: #101318;
  --sidebar-soft: #1b2028;
  --surface: #ffffff;
  --surface-soft: #f0f3f5;
  --ink: #161a20;
  --muted: #667085;
  --line: #d9dee7;
  --teal: #0f8b7c;
  --blue: #2563eb;
  --amber: #b7791f;
  --green: #16854f;
  --red: #c24135;
  --shadow: 0 18px 42px rgba(16, 24, 40, 0.08);
  --sidebar-width: 248px;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  background: var(--page);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    "PingFang SC", "Microsoft YaHei", sans-serif;
}

button,
input,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.portal-auth {
  position: fixed;
  inset: 0;
  z-index: 20;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(245, 246, 248, 0.88);
  backdrop-filter: blur(10px);
}

.portal-auth[hidden] {
  display: none;
}

.login-panel {
  width: min(380px, 100%);
  display: grid;
  gap: 14px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.login-panel h1,
.portal-header h1,
.work-panel h2 {
  margin: 0;
  letter-spacing: 0;
}

.login-panel h1 {
  font-size: 24px;
}

.login-panel p {
  margin: 6px 0 0;
  color: var(--muted);
}

.login-panel input {
  min-height: 42px;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 12px;
  outline: none;
  background: #fff;
  color: var(--ink);
}

.login-panel input:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(15, 139, 124, 0.12);
}

.primary-button,
.ghost-button {
  min-height: 40px;
  border-radius: 8px;
  border: 0;
  cursor: pointer;
  font-weight: 700;
}

.primary-button {
  color: #fff;
  background: var(--teal);
}

.ghost-button {
  width: 100%;
  color: #d4dae4;
  background: var(--sidebar-soft);
}

.sidebar-note {
  min-height: 40px;
  display: flex;
  align-items: center;
  border-radius: 8px;
  padding: 0 10px;
  color: #aab3c2;
  background: var(--sidebar-soft);
  font-size: 13px;
  font-weight: 700;
}

.form-error {
  min-height: 18px;
  color: var(--red);
  font-size: 13px;
}

.portal-shell {
  min-height: 100vh;
  display: grid;
  grid-template-columns: var(--sidebar-width) minmax(0, 1fr);
}

.portal-sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 20px;
  padding: 18px;
  background: var(--sidebar);
  color: #fff;
}

.portal-brand,
.portal-nav a,
.object-row,
.portal-header,
.panel-head,
.table-row,
.timeline-item {
  display: flex;
  align-items: center;
}

.portal-brand {
  gap: 12px;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--teal);
  font-weight: 800;
}

.portal-brand strong,
.portal-brand span {
  display: block;
}

.portal-brand span {
  margin-top: 2px;
  color: #aab3c2;
  font-size: 12px;
}

.portal-nav {
  display: grid;
  align-content: start;
  gap: 6px;
}

.portal-nav a {
  gap: 10px;
  min-height: 40px;
  padding: 0 10px;
  border-radius: 8px;
  color: #d4dae4;
  text-decoration: none;
}

.portal-nav a:hover,
.portal-nav a.active {
  color: #fff;
  background: var(--sidebar-soft);
}

.portal-main {
  min-width: 0;
  padding: 28px;
}

.portal-header {
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
}

.eyebrow {
  margin: 0 0 6px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 800;
}

.portal-header h1 {
  font-size: 30px;
}

.actor-pill {
  max-width: 360px;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 12px;
  background: var(--surface);
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.metric-grid,
.content-grid,
.customer-status {
  display: grid;
  gap: 14px;
}

.metric-grid {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  margin-bottom: 14px;
}

.metric-card,
.work-panel,
.customer-status {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.metric-card {
  min-height: 128px;
  padding: 18px;
}

.metric-card span,
.metric-card small,
.customer-status span {
  display: block;
  color: var(--muted);
}

.metric-card strong {
  display: block;
  margin: 12px 0 8px;
  font-size: 30px;
  line-height: 1;
}

.content-grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: start;
}

.work-panel {
  min-width: 0;
  padding: 18px;
}

.work-panel.wide {
  grid-column: 1 / -1;
}

.panel-head {
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.panel-head h2 {
  font-size: 18px;
}

.panel-head span {
  color: var(--muted);
  font-size: 13px;
}

.object-list,
.task-list,
.timeline {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.object-row,
.task-item {
  gap: 12px;
  min-height: 62px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-soft);
}

.object-icon {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: #fff;
  background: var(--blue);
}

.object-row strong,
.object-row small,
.task-item strong,
.task-item small {
  display: block;
}

.object-row small,
.task-item small {
  margin-top: 4px;
  color: var(--muted);
}

.task-item {
  display: grid;
  gap: 6px;
}

.task-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 13px;
}

.status-badge {
  justify-self: start;
  border-radius: 8px;
  padding: 4px 8px;
  color: #fff;
  background: var(--teal);
  font-size: 12px;
  font-weight: 700;
}

.status-badge.created,
.status-badge.running {
  background: var(--blue);
}

.status-badge.failed,
.status-badge.canceled {
  background: var(--red);
}

.status-badge.waiting_approval {
  background: var(--amber);
}

.customer-status {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 14px;
  padding: 18px;
}

.customer-status strong {
  display: block;
  margin-top: 8px;
  font-size: 18px;
  overflow-wrap: anywhere;
}

.simple-table {
  display: grid;
  margin-top: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.table-row {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
  gap: 12px;
  min-height: 48px;
  padding: 0 12px;
  border-top: 1px solid var(--line);
}

.table-row:first-child {
  border-top: 0;
}

.table-head {
  background: var(--surface-soft);
  color: var(--muted);
  font-weight: 700;
}

.timeline {
  position: relative;
}

.timeline-item {
  align-items: flex-start;
  gap: 10px;
}

.timeline-item::before {
  content: "";
  width: 12px;
  height: 12px;
  flex: 0 0 auto;
  margin-top: 4px;
  border-radius: 50%;
  border: 2px solid var(--line);
  background: #fff;
}

.timeline-item.done::before {
  border-color: var(--green);
  background: var(--green);
}

.timeline-item strong,
.timeline-item span {
  display: block;
}

.timeline-item span {
  margin-top: 4px;
  color: var(--muted);
}

.document-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.document-strip div {
  min-height: 54px;
  display: flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 12px;
  background: var(--surface-soft);
  font-weight: 700;
}

.permission-panel {
  margin-top: 14px;
}

.vehicle-panel {
  margin-top: 14px;
}

.vehicle-summary {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.vehicle-summary div {
  min-height: 74px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  background: var(--surface-soft);
}

.vehicle-summary span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.vehicle-summary strong {
  display: block;
  margin-top: 8px;
  font-size: 24px;
}

.vehicle-list {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.vehicle-item {
  min-height: 62px;
  display: grid;
  grid-template-columns: minmax(220px, 1fr) 100px 92px 92px;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  background: var(--surface-soft);
}

.vehicle-item strong,
.vehicle-item small {
  display: block;
}

.vehicle-item small {
  margin-top: 4px;
  color: var(--muted);
}

.vehicle-pill {
  justify-self: start;
  border-radius: 8px;
  padding: 5px 8px;
  color: #fff;
  background: var(--teal);
  font-size: 12px;
  font-weight: 800;
}

.vehicle-pill.reference {
  background: var(--amber);
}

.vehicle-pill.tradeable {
  background: var(--green);
}

.permission-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.permission-summary div {
  min-height: 78px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  background: var(--surface-soft);
}

.permission-summary span,
.subhead {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.permission-summary strong {
  display: block;
  margin-top: 8px;
  font-size: 26px;
}

.permission-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr) minmax(0, 1.4fr);
  gap: 14px;
  margin-top: 14px;
}

.permission-list,
.permission-matrix {
  display: grid;
  gap: 10px;
  margin-top: 10px;
}

.permission-item,
.matrix-row {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-soft);
}

.permission-item {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px;
}

.permission-item strong,
.permission-item small,
.matrix-role strong,
.matrix-role small {
  display: block;
}

.permission-item small,
.matrix-role small {
  margin-top: 4px;
  color: var(--muted);
}

.scope-pill {
  flex: 0 0 auto;
  max-width: 180px;
  border-radius: 8px;
  padding: 5px 8px;
  color: #fff;
  background: var(--teal);
  font-size: 12px;
  font-weight: 800;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.matrix-row {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 12px;
  padding: 12px;
}

.permission-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.permission-tags span {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 4px 7px;
  background: #fff;
  color: #394150;
  font-size: 12px;
  font-weight: 650;
}

.empty-note {
  margin-top: 14px;
  color: var(--muted);
}

.live-empty-note {
  grid-column: 1 / -1;
  display: grid;
  gap: 8px;
  max-width: 760px;
  margin-top: 10px;
  padding: 18px 20px;
  border: 1px solid rgba(143, 157, 177, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 12px 28px rgba(27, 42, 68, 0.08);
  color: #667085;
}

.live-empty-note strong {
  color: #293342;
  font-size: 16px;
}

.live-empty-note span,
.live-empty-note small,
.live-empty-note em {
  line-height: 1.65;
}

.live-empty-note small {
  color: #2563eb;
  font-size: 14px;
  font-weight: 760;
}

.live-empty-note em {
  color: #8b95a5;
  font-style: normal;
}

.scroll-sentinel {
  grid-column: 1 / -1;
  min-height: 32px;
  padding: 4px 0 20px;
  text-align: center;
  color: var(--muted);
  font-size: 13px;
}

.scroll-sentinel.busy::after {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-left: 8px;
  border: 2px solid var(--muted);
  border-top-color: var(--green);
  border-radius: 50%;
  animation: sentinel-spin 600ms linear infinite;
  vertical-align: middle;
}

.scroll-end-note {
  grid-column: 1 / -1;
  display: grid;
  justify-items: center;
  gap: 4px;
  margin: 4px auto 24px;
  padding: 10px 18px;
  border: 1px solid rgba(143, 157, 177, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  color: #8b95a5;
  box-shadow: 0 10px 24px rgba(27, 42, 68, 0.06);
  text-align: center;
}

.scroll-end-note strong {
  color: #354155;
  font-size: 13px;
  line-height: 1.2;
}

.scroll-end-note span {
  font-size: 12px;
  line-height: 1.2;
}

@keyframes sentinel-spin {
  to { transform: rotate(360deg); }
}

body[data-portal="customer"] .brand-mark,
body[data-portal="customer"] .primary-button {
  background: var(--green);
}

body[data-portal="customer"] .eyebrow {
  color: var(--green);
}

body[data-portal="customer"] {
  --car-green: #0abf64;
  --car-green-dark: #07934d;
  --car-orange: #ff6a1a;
  --car-yellow: #ffc329;
  --car-blue: #2563eb;
  --car-ink: #1f2329;
  --car-muted: #7a8291;
  --car-line: #e6e9ef;
  --car-soft: #f5f7fa;
  --car-soft-strong: #eef2f7;
  background: #f4f6fa;
  color: var(--car-ink);
}

body[data-portal="customer"] .car-home {
  min-height: 100vh;
  background: #f4f6fa;
}

.car-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid var(--car-line);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
}

.car-header-inner {
  width: min(1800px, 100%);
  min-height: 76px;
  display: grid;
  grid-template-columns: auto auto auto minmax(280px, 520px) minmax(360px, 1fr);
  align-items: center;
  gap: 22px;
  margin: 0 auto;
  padding: 0 28px;
}

.car-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: inherit;
  text-decoration: none;
  white-space: nowrap;
}

.car-logo-mark {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: #fff;
  background: var(--car-green);
  font-size: 20px;
  font-weight: 900;
}

.car-logo-copy strong,
.car-logo-copy small {
  display: block;
}

.car-logo-copy strong {
  color: var(--car-green-dark);
  font-size: 22px;
  line-height: 24px;
  font-weight: 900;
}

.car-logo-copy small {
  margin-top: 3px;
  color: #f26a2c;
  font-size: 11px;
  font-weight: 700;
}

.city-button,
.buyer-nav a,
.utility-nav a,
.car-search button,
.text-option,
.icon-toggle,
.brand-item,
.range-inputs button,
.vehicle-type,
.dropdown-option,
.selected-tags button,
.reset-button,
.source-tabs button,
.sort-links button {
  border: 0;
  color: inherit;
  font: inherit;
  background: transparent;
}

.city-button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 36px;
  padding: 0 8px;
  color: #2d333d;
  font-weight: 700;
  cursor: pointer;
}

.buyer-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.buyer-nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border-bottom: 3px solid transparent;
  color: #2e333b;
  text-decoration: none;
  font-size: 16px;
  font-weight: 800;
}

.buyer-nav a.active {
  border-bottom-color: var(--car-orange);
  color: var(--car-orange);
}

.car-search {
  height: 46px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 58px;
  border: 1px solid #d7dce5;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}

.car-search input {
  min-width: 0;
  border: 0;
  outline: none;
  padding: 0 16px;
  color: var(--car-ink);
  background: transparent;
}

.car-search input::placeholder {
  color: #a2a9b6;
}

.car-search button {
  position: relative;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--car-orange);
  font-size: 0;
  cursor: pointer;
}

.car-search button::before {
  content: "";
  width: 15px;
  height: 15px;
  border: 3px solid #fff;
  border-radius: 50%;
}

.car-search button::after {
  content: "";
  position: absolute;
  width: 9px;
  height: 3px;
  border-radius: 999px;
  background: #fff;
  transform: translate(10px, 10px) rotate(45deg);
}

.utility-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  min-width: 0;
}

.utility-nav a {
  color: #454b55;
  text-decoration: none;
  white-space: nowrap;
  font-size: 14px;
  font-weight: 700;
}

.utility-nav a:hover,
.buyer-nav a:hover {
  color: var(--car-orange);
}

.car-main {
  width: min(1800px, 100%);
  margin: 0 auto;
  padding: 18px 28px 52px;
}

.finder-panel {
  border: 1px solid var(--car-line);
  background: #fff;
}

.finder-row {
  min-height: 78px;
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  padding: 0 24px;
  border-top: 1px solid var(--car-line);
}

.finder-row:first-child {
  border-top: 0;
}

.brand-letter-row {
  min-height: 92px;
}

.filter-label {
  color: #9aa2af;
  font-weight: 800;
}

.letter-options,
.filter-options {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 18px;
}

.letter-options {
  justify-content: space-between;
}

.filter-options {
  overflow-x: auto;
  scrollbar-width: none;
}

.filter-options::-webkit-scrollbar {
  display: none;
}

.text-option,
.vehicle-type,
.dropdown-option {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border-radius: 8px;
  padding: 0 12px;
  white-space: nowrap;
  color: #20252d;
  font-size: 16px;
  font-weight: 750;
  cursor: pointer;
}

.text-option:hover,
.vehicle-type:hover,
.dropdown-option:hover,
.source-tabs button:hover,
.sort-links button:hover {
  color: var(--car-green-dark);
}

.text-option.active {
  background: var(--car-yellow);
}

.text-option.selected {
  min-width: 78px;
  border: 1px solid var(--car-green);
  color: var(--car-green-dark);
  background: rgba(10, 191, 100, 0.08);
}

.icon-toggle {
  width: 34px;
  height: 30px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 7px;
  color: #242a33;
  background: var(--car-soft-strong);
  cursor: pointer;
}

.brand-showcase {
  min-height: 126px;
  display: grid;
  grid-template-columns: repeat(10, minmax(90px, 1fr));
  gap: 10px;
  align-items: center;
  padding: 0 24px 24px 110px;
  border-top: 1px solid var(--car-line);
}

.brand-item {
  min-width: 0;
  min-height: 86px;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 8px;
  border-radius: 8px;
  cursor: pointer;
}

.brand-item:hover {
  background: #f7f9fc;
}

.brand-item.selected strong {
  color: var(--car-green-dark);
}

.brand-badge {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #cbd2dd;
  border-radius: 50%;
  color: #1f2937;
  background: #fff;
  font-size: 12px;
  font-weight: 900;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.75);
}

.brand-badge.badge-bmw {
  color: #0b65c2;
  border-color: #6aa3df;
  background: conic-gradient(#0b65c2 0 25%, #fff 0 50%, #0b65c2 0 75%, #fff 0);
}

.brand-badge.badge-benz {
  color: #111827;
  border-color: #9aa2af;
  background: radial-gradient(circle, #fff 0 46%, #e5e7eb 47% 100%);
}

.brand-badge.badge-audi {
  color: #1f2937;
  border-color: #a5adba;
}

.brand-badge.badge-vw {
  color: #174ea6;
  border-color: #174ea6;
}

.brand-badge.badge-honda {
  color: #e21d38;
  border-color: #e21d38;
}

.brand-badge.badge-byd {
  width: 44px;
  border-radius: 999px;
  color: #ef233c;
  border-color: #ef233c;
}

.brand-badge.badge-tesla {
  color: #111827;
  border-color: #111827;
}

.brand-badge.badge-porsche {
  color: #9a6a00;
  border-color: #c79b2d;
  background: #fff7d6;
}

.brand-badge.badge-nio {
  color: #111827;
  border-color: #111827;
  background: #f8fafc;
}

.brand-badge.badge-li {
  color: #0c7a55;
  border-color: #0c7a55;
}

.brand-item strong {
  max-width: 100%;
  color: #20252d;
  font-size: 16px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.price-row {
  grid-template-columns: 76px minmax(0, 1fr) auto;
}

.range-inputs {
  height: 42px;
  display: inline-grid;
  grid-template-columns: 56px auto 56px auto 72px;
  align-items: center;
  border: 1px solid #d9dee7;
  border-radius: 999px;
  overflow: hidden;
  background: #fff;
}

.range-inputs input {
  width: 56px;
  height: 40px;
  border: 0;
  outline: none;
  text-align: center;
  color: #1f2329;
  background: transparent;
}

.range-inputs span {
  color: #3f4651;
  font-weight: 700;
}

.range-inputs button {
  height: 42px;
  color: #fff;
  background: var(--car-green);
  font-weight: 850;
  cursor: pointer;
}

.level-row .filter-options {
  gap: 24px;
}

.car-line {
  width: 74px;
  height: 30px;
  position: relative;
  display: inline-block;
  flex: 0 0 auto;
}

.car-line::before {
  content: "";
  position: absolute;
  left: 7px;
  right: 7px;
  bottom: 9px;
  height: 12px;
  border: 2px solid #4b5563;
  border-radius: 16px 18px 5px 5px;
}

.car-line::after {
  content: "";
  position: absolute;
  left: 15px;
  right: 15px;
  bottom: 3px;
  height: 8px;
  background:
    radial-gradient(circle at 0 50%, #fff 0 3px, #4b5563 4px 6px, transparent 7px),
    radial-gradient(circle at 100% 50%, #fff 0 3px, #4b5563 4px 6px, transparent 7px);
}

.car-line.suv::before {
  height: 16px;
  border-radius: 12px 14px 5px 5px;
}

.car-line.mpv::before {
  height: 17px;
  border-radius: 7px 12px 5px 5px;
}

.car-line.wagon::before {
  top: 5px;
  bottom: 8px;
  border-radius: 12px 18px 5px 5px;
}

.car-line.coupe::before {
  height: 10px;
  border-radius: 22px 22px 5px 5px;
}

.car-line.pickup::before {
  width: 46px;
  left: 10px;
  right: auto;
  border-radius: 6px 3px 5px 5px;
}

.more-row {
  align-items: start;
  padding-top: 14px;
  padding-bottom: 14px;
}

.filter-options.compact {
  flex-wrap: wrap;
  gap: 8px 28px;
  overflow: visible;
}

.dropdown-option {
  min-height: 34px;
  padding: 0;
  font-size: 15px;
}

.dropdown-option.selected-text {
  color: var(--car-green-dark);
}

.selected-row {
  min-height: 72px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  padding: 0 24px;
  border-top: 1px solid var(--car-line);
  background: #fff;
}

.selected-row > strong {
  white-space: nowrap;
}

.selected-tags {
  display: flex;
  align-items: center;
  gap: 12px;
  overflow-x: auto;
  scrollbar-width: none;
}

.selected-tags::-webkit-scrollbar {
  display: none;
}

.selected-tags button {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--car-green);
  border-radius: 999px;
  padding: 0 18px;
  color: var(--car-green-dark);
  background: rgba(10, 191, 100, 0.08);
  white-space: nowrap;
  font-weight: 850;
  cursor: pointer;
}

.reset-button {
  min-width: 92px;
  min-height: 38px;
  border: 1px solid #d6dce6;
  border-radius: 999px;
  color: #4b5563;
  background: #fff;
  font-weight: 800;
  cursor: pointer;
}

.result-bar {
  min-height: 74px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 18px;
  margin-top: 18px;
  border-bottom: 1px solid #cfd5df;
  background: #f4f6fa;
}

.source-tabs,
.sort-links {
  display: flex;
  align-items: center;
  gap: 20px;
}

.source-tabs button,
.sort-links button {
  min-height: 42px;
  padding: 0;
  color: #2c333d;
  white-space: nowrap;
  font-weight: 800;
  cursor: pointer;
}

.source-tabs button {
  position: relative;
  font-size: 18px;
}

.source-tabs button.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -16px;
  height: 3px;
  background: var(--car-yellow);
}

.sort-links button {
  color: #434b57;
}

.sort-links button.active {
  color: var(--car-orange);
}

.report-check {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #3f4651;
  font-weight: 750;
  white-space: nowrap;
}

.report-check input {
  width: 18px;
  height: 18px;
  accent-color: var(--car-green);
}

.result-summary {
  margin: 14px 0 18px;
  color: #9aa2af;
  text-align: right;
  font-weight: 800;
}

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

.vehicle-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--car-line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(17, 24, 39, 0.06);
}

.vehicle-photo {
  position: relative;
  aspect-ratio: 1.34 / 1;
  overflow: hidden;
  background: #e9eef6;
}

.vehicle-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 180ms ease;
}

.vehicle-card:hover .vehicle-photo img {
  transform: scale(1.035);
}

.photo-tag {
  position: absolute;
  top: 0;
  left: 0;
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  color: #fff;
  background: var(--car-orange);
  font-weight: 850;
}

.photo-tag.green {
  background: var(--car-green);
}

.photo-tag.blue {
  background: var(--car-blue);
}

.vehicle-info {
  display: grid;
  gap: 10px;
  padding: 14px;
}

.vehicle-info h2 {
  min-height: 48px;
  margin: 0;
  color: #222832;
  font-size: 17px;
  line-height: 24px;
  font-weight: 900;
}

.vehicle-info p {
  margin: 0;
  color: #8a93a1;
  font-size: 14px;
  line-height: 20px;
}

.price-line {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.price-line strong {
  color: var(--car-orange);
  font-size: 26px;
  line-height: 1;
}

.price-line span {
  color: #9aa2af;
  text-decoration: line-through;
  font-weight: 700;
}

.vehicle-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.vehicle-tags span {
  min-height: 24px;
  display: inline-flex;
  align-items: center;
  border-radius: 5px;
  padding: 0 7px;
  color: #2260cc;
  background: #edf4ff;
  font-size: 12px;
  font-weight: 800;
}

.advisor-float {
  position: fixed;
  right: 22px;
  bottom: 28px;
  z-index: 6;
  width: 92px;
  display: grid;
  justify-items: center;
  gap: 4px;
  border: 1px solid #ead4bd;
  border-radius: 8px;
  padding: 10px 8px;
  background: #fff6ec;
  color: #8a5725;
  box-shadow: 0 12px 28px rgba(104, 64, 28, 0.18);
}

.advisor-avatar {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--car-green), #0f8b7c);
  font-weight: 900;
}

.advisor-float strong,
.advisor-float span {
  display: block;
  font-size: 12px;
  line-height: 16px;
}

@media (max-width: 1440px) {
  .car-header-inner {
    grid-template-columns: auto auto auto minmax(220px, 360px) minmax(360px, 1fr);
    gap: 14px;
  }

  .utility-nav {
    gap: 9px;
    justify-content: flex-start;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .utility-nav a {
    font-size: 13px;
  }

  .utility-nav::-webkit-scrollbar {
    display: none;
  }

  .brand-showcase {
    grid-template-columns: repeat(10, minmax(72px, 1fr));
  }

  .car-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 1100px) {
  .car-header-inner {
    grid-template-columns: 1fr auto;
    gap: 10px 14px;
    padding: 12px 18px;
  }

  .city-button {
    justify-self: end;
  }

  .buyer-nav,
  .car-search,
  .utility-nav {
    grid-column: 1 / -1;
  }

  .buyer-nav,
  .utility-nav {
    overflow-x: auto;
    scrollbar-width: none;
  }

  .buyer-nav::-webkit-scrollbar,
  .utility-nav::-webkit-scrollbar {
    display: none;
  }

  .car-main {
    padding: 14px 16px 44px;
  }

  .finder-row,
  .price-row {
    grid-template-columns: 58px minmax(0, 1fr);
    padding: 12px 14px;
  }

  .range-inputs {
    grid-column: 2;
    justify-self: start;
    margin-top: 8px;
  }

  .brand-showcase {
    grid-template-columns: repeat(5, minmax(86px, 1fr));
    padding: 4px 14px 18px 82px;
  }

  .result-bar {
    grid-template-columns: 1fr;
    align-items: start;
    padding-bottom: 12px;
  }

  .source-tabs,
  .sort-links {
    overflow-x: auto;
    scrollbar-width: none;
  }

  .source-tabs::-webkit-scrollbar,
  .sort-links::-webkit-scrollbar {
    display: none;
  }
}

@media (max-width: 760px) {
  .car-logo-copy strong {
    font-size: 19px;
  }

  .brand-letter-row {
    min-height: auto;
  }

  .letter-options {
    justify-content: flex-start;
    gap: 10px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .letter-options::-webkit-scrollbar {
    display: none;
  }

  .brand-showcase {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding-left: 14px;
  }

  .filter-options.compact {
    gap: 8px 18px;
  }

  .selected-row {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 10px;
    padding: 14px;
  }

  .reset-button {
    justify-self: start;
  }

  .car-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .advisor-float {
    display: none;
  }
}

@media (max-width: 460px) {
  .car-header-inner {
    padding: 10px 12px;
  }

  .car-main {
    padding: 12px 10px 36px;
  }

  .finder-row,
  .price-row {
    grid-template-columns: 1fr;
  }

  .filter-label,
  .range-inputs {
    grid-column: 1;
  }

  .filter-label {
    margin-bottom: 4px;
  }

  .range-inputs {
    width: 100%;
    grid-template-columns: 1fr auto 1fr auto 68px;
  }

  .range-inputs input {
    width: 100%;
  }

  .source-tabs button {
    font-size: 16px;
  }

  .vehicle-info h2 {
    min-height: auto;
  }
}

@media (max-width: 900px) {
  .portal-shell {
    grid-template-columns: 1fr;
  }

  .portal-sidebar {
    position: static;
    height: auto;
    grid-template-rows: auto auto auto;
  }

  .portal-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .metric-grid,
  .content-grid,
  .customer-status,
  .document-strip,
  .vehicle-summary,
  .permission-summary,
  .permission-grid {
    grid-template-columns: 1fr;
  }

  .vehicle-item {
    grid-template-columns: 1fr;
  }

  .portal-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .actor-pill {
    width: 100%;
    max-width: none;
  }
}

@media (max-width: 520px) {
  .portal-main,
  .portal-sidebar {
    padding: 16px;
  }

  .portal-header h1 {
    font-size: 24px;
  }

  .table-row {
    grid-template-columns: 1fr;
    align-items: start;
    padding: 12px;
  }

  .matrix-row {
    grid-template-columns: 1fr;
  }
}

/* Customer car home refinement */
body[data-portal="customer"] {
  --car-green: #00b86b;
  --car-green-dark: #009456;
  --car-orange: #ff5d1a;
  --car-yellow: #ffc72c;
  --car-blue: #2369d8;
  --car-ink: #1f2430;
  --car-muted: #8d96a6;
  --car-line: #dfe5ee;
  --car-soft: #f5f7fa;
  background: #f5f7fa;
}

body[data-portal="customer"] .car-home {
  background: #f5f7fa;
}

body[data-portal="customer"] .car-header {
  border-bottom: 1px solid #e8edf4;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 1px 0 rgba(15, 23, 42, 0.03);
}

body[data-portal="customer"] .car-header-inner {
  width: min(1500px, 100%);
  min-height: 68px;
  grid-template-columns: auto auto auto minmax(300px, 420px) minmax(0, 1fr);
  gap: 14px;
  padding: 0 24px;
}

body[data-portal="customer"] .car-logo {
  gap: 9px;
}

body[data-portal="customer"] .car-logo-mark {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  font-size: 18px;
}

body[data-portal="customer"] .car-logo-copy strong {
  font-size: 21px;
  line-height: 22px;
}

body[data-portal="customer"] .car-logo-copy small {
  margin-top: 2px;
  color: var(--car-orange);
}

body[data-portal="customer"] .city-button {
  min-height: 34px;
  padding: 0 6px;
  font-size: 14px;
}

body[data-portal="customer"] .buyer-nav {
  gap: 2px;
}

body[data-portal="customer"] .buyer-nav a {
  min-height: 40px;
  padding: 0 10px;
  font-size: 15px;
  font-weight: 760;
}

body[data-portal="customer"] .car-search {
  height: 44px;
  grid-template-columns: minmax(0, 1fr) 54px;
  border-color: #d8dee8;
  border-radius: 6px;
}

body[data-portal="customer"] .utility-nav {
  gap: 10px;
  justify-content: flex-end;
  overflow: hidden;
}

body[data-portal="customer"] .utility-nav a {
  font-size: 12px;
  font-weight: 760;
}

body[data-portal="customer"] .car-main {
  width: min(1500px, 100%);
  padding: 16px 24px 56px;
}

body[data-portal="customer"] .finder-panel {
  overflow: hidden;
  border: 1px solid var(--car-line);
  border-radius: 4px;
  background: #fff;
  box-shadow: none;
}

body[data-portal="customer"] .finder-row {
  min-height: 52px;
  grid-template-columns: 60px minmax(0, 1fr);
  gap: 10px;
  padding: 0 18px;
  border-top-color: var(--car-line);
}

body[data-portal="customer"] .brand-letter-row {
  min-height: 56px;
}

body[data-portal="customer"] .filter-label {
  color: #9aa3b1;
  font-size: 15px;
  font-weight: 760;
}

body[data-portal="customer"] .letter-options,
body[data-portal="customer"] .filter-options {
  gap: 12px;
}

body[data-portal="customer"] .letter-options {
  justify-content: flex-start;
}

body[data-portal="customer"] .text-option,
body[data-portal="customer"] .vehicle-type,
body[data-portal="customer"] .dropdown-option {
  min-height: 32px;
  border-radius: 5px;
  padding: 0 10px;
  font-size: 14px;
  font-weight: 700;
}

body[data-portal="customer"] .letter-options .text-option {
  min-width: 34px;
}

body[data-portal="customer"] .text-option.active {
  background: var(--car-yellow);
}

body[data-portal="customer"] .text-option.selected {
  min-width: 64px;
  border-color: var(--car-green);
  color: var(--car-green-dark);
  background: #ecfff6;
}

body[data-portal="customer"] .icon-toggle {
  width: 32px;
  height: 28px;
  border-radius: 6px;
  color: #485263;
  background: #eef2f7;
}

body[data-portal="customer"] .brand-showcase {
  min-height: 72px;
  grid-template-columns: repeat(10, minmax(78px, 1fr));
  gap: 8px;
  align-items: stretch;
  padding: 10px 18px 12px 88px;
  border-top-color: var(--car-line);
  background: #fafbfe;
}

body[data-portal="customer"] .brand-item {
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 5px;
}

body[data-portal="customer"] .brand-item:hover {
  background: #f0f4f9;
}

body[data-portal="customer"] .brand-badge {
  width: 28px;
  height: 28px;
  font-size: 10px;
  box-shadow: none;
}

body[data-portal="customer"] .brand-badge.badge-byd {
  width: 38px;
}

body[data-portal="customer"] .brand-item strong {
  font-size: 14px;
  font-weight: 760;
}

body[data-portal="customer"] .price-row {
  grid-template-columns: 60px minmax(0, 1fr) auto;
}

body[data-portal="customer"] .range-inputs {
  height: 38px;
  grid-template-columns: 48px auto 48px auto 64px;
  border-radius: 999px;
}

body[data-portal="customer"] .range-inputs input {
  width: 48px;
  height: 36px;
}

body[data-portal="customer"] .range-inputs button {
  height: 38px;
}

body[data-portal="customer"] .level-row .filter-options {
  gap: 18px;
}

body[data-portal="customer"] .vehicle-type {
  gap: 6px;
}

body[data-portal="customer"] .car-line {
  width: 48px;
  height: 24px;
}

body[data-portal="customer"] .car-line::before {
  left: 5px;
  right: 5px;
  bottom: 8px;
  height: 10px;
  border-width: 2px;
}

body[data-portal="customer"] .car-line::after {
  left: 10px;
  right: 10px;
  bottom: 3px;
  height: 7px;
}

body[data-portal="customer"] .more-row {
  min-height: 52px;
  align-items: center;
  padding-top: 0;
  padding-bottom: 0;
}

body[data-portal="customer"] .filter-options.compact {
  gap: 8px 24px;
}

body[data-portal="customer"] .dropdown-option {
  min-height: 30px;
}

body[data-portal="customer"] .selected-row {
  min-height: 56px;
  gap: 14px;
  padding: 0 18px;
}

body[data-portal="customer"] .selected-row > strong {
  font-size: 14px;
}

body[data-portal="customer"] .selected-tags {
  gap: 10px;
}

body[data-portal="customer"] .selected-tags button {
  min-height: 32px;
  padding: 0 14px;
  font-size: 14px;
  font-weight: 760;
}

body[data-portal="customer"] .reset-button {
  min-width: 76px;
  min-height: 32px;
  font-size: 14px;
}

body[data-portal="customer"] .result-bar {
  min-height: 58px;
  margin-top: 12px;
  border-bottom-color: #d3dae5;
}

body[data-portal="customer"] .source-tabs,
body[data-portal="customer"] .sort-links {
  gap: 18px;
}

body[data-portal="customer"] .source-tabs button,
body[data-portal="customer"] .sort-links button {
  min-height: 42px;
  font-size: 14px;
  font-weight: 760;
}

body[data-portal="customer"] .source-tabs button {
  font-size: 16px;
}

body[data-portal="customer"] .source-tabs button.active::after {
  bottom: -9px;
  height: 3px;
}

body[data-portal="customer"] .result-summary {
  margin: 10px 0 14px;
  font-size: 14px;
}

body[data-portal="customer"] .car-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

body[data-portal="customer"] .vehicle-card {
  border-color: #dfe5ee;
  border-radius: 5px;
  box-shadow: none;
}

body[data-portal="customer"] .vehicle-card:hover {
  border-color: #cad3df;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}

body[data-portal="customer"] .vehicle-photo {
  aspect-ratio: 1.42 / 1;
}

body[data-portal="customer"] .vehicle-photo::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.18), transparent);
  pointer-events: none;
}

body[data-portal="customer"] .photo-tag {
  min-height: 26px;
  padding: 0 9px;
  font-size: 13px;
}

body[data-portal="customer"] .vehicle-info {
  gap: 8px;
  padding: 12px;
}

body[data-portal="customer"] .vehicle-info h2 {
  min-height: 42px;
  font-size: 15px;
  line-height: 21px;
  font-weight: 820;
}

body[data-portal="customer"] .vehicle-info p {
  font-size: 13px;
  line-height: 19px;
}

body[data-portal="customer"] .price-line strong {
  font-size: 24px;
}

body[data-portal="customer"] .vehicle-tags {
  gap: 6px;
}

body[data-portal="customer"] .vehicle-tags span {
  min-height: 22px;
  border-radius: 4px;
  color: #2369d8;
  background: #edf4ff;
}

body[data-portal="customer"] .advisor-float {
  width: 86px;
  right: 18px;
  bottom: 22px;
  border-radius: 7px;
}

@media (max-width: 1280px) {
  body[data-portal="customer"] .car-header-inner {
    grid-template-columns: auto auto auto minmax(260px, 360px);
  }

  body[data-portal="customer"] .utility-nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
    min-height: 26px;
    padding-bottom: 8px;
  }

  body[data-portal="customer"] .car-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  body[data-portal="customer"] .car-header-inner {
    grid-template-columns: 1fr auto;
    gap: 10px 12px;
    padding: 12px 16px;
  }

  body[data-portal="customer"] .city-button {
    justify-self: end;
  }

  body[data-portal="customer"] .buyer-nav,
  body[data-portal="customer"] .car-search,
  body[data-portal="customer"] .utility-nav {
    grid-column: 1 / -1;
  }

  body[data-portal="customer"] .buyer-nav,
  body[data-portal="customer"] .utility-nav {
    overflow-x: auto;
    scrollbar-width: none;
  }

  body[data-portal="customer"] .car-main {
    padding: 12px 16px 42px;
  }

  body[data-portal="customer"] .brand-showcase {
    grid-template-columns: repeat(5, minmax(86px, 1fr));
    padding-left: 88px;
  }

  body[data-portal="customer"] .price-row,
  body[data-portal="customer"] .finder-row {
    grid-template-columns: 60px minmax(0, 1fr);
    padding: 8px 14px;
  }

  body[data-portal="customer"] .range-inputs {
    grid-column: 2;
    justify-self: start;
    margin-top: 4px;
  }

  body[data-portal="customer"] .result-bar {
    grid-template-columns: 1fr;
    gap: 6px;
    padding-bottom: 10px;
  }

  body[data-portal="customer"] .source-tabs,
  body[data-portal="customer"] .sort-links {
    overflow-x: auto;
    scrollbar-width: none;
  }

  body[data-portal="customer"] .car-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  body[data-portal="customer"] .car-logo-copy strong {
    font-size: 19px;
  }

  body[data-portal="customer"] .utility-nav {
    display: none;
  }

  body[data-portal="customer"] .car-main {
    padding: 10px 10px 34px;
  }

  body[data-portal="customer"] .finder-panel {
    border-radius: 4px;
  }

  body[data-portal="customer"] .brand-showcase {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 8px 10px;
  }

  body[data-portal="customer"] .brand-item {
    justify-content: flex-start;
    padding: 0 10px;
  }

  body[data-portal="customer"] .letter-options,
  body[data-portal="customer"] .filter-options {
    overflow-x: auto;
    scrollbar-width: none;
  }

  body[data-portal="customer"] .selected-row {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 8px;
    padding: 10px 14px;
  }

  body[data-portal="customer"] .reset-button {
    justify-self: start;
  }

  body[data-portal="customer"] .car-grid {
    grid-template-columns: 1fr;
  }

  body[data-portal="customer"] .advisor-float {
    display: none;
  }
}

/* Customer car home premium direction */
body[data-portal="customer"] {
  --premium-ink: #12151c;
  --premium-panel: rgba(255, 255, 255, 0.92);
  --premium-line: rgba(37, 48, 64, 0.12);
  overflow-x: hidden;
  background:
    linear-gradient(180deg, #fbfcff 0, #f4f7fb 310px, #eef3f8 100%);
}

body[data-portal="customer"] .car-home {
  overflow-x: hidden;
}

body[data-portal="customer"] .car-header {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
}

body[data-portal="customer"] .car-main {
  width: min(1480px, 100%);
}

body[data-portal="customer"] .market-hero {
  min-width: 0;
  min-height: 126px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: stretch;
  margin-bottom: 14px;
  border: 1px solid rgba(148, 163, 184, 0.26);
  border-radius: 8px;
  padding: 18px 22px;
  color: #fff;
  background:
    linear-gradient(120deg, rgba(6, 13, 19, 0.96), rgba(12, 35, 28, 0.92) 52%, rgba(32, 77, 55, 0.88)),
    linear-gradient(90deg, rgba(0, 184, 107, 0.3), rgba(255, 93, 26, 0.18));
  box-shadow: 0 18px 44px rgba(20, 42, 37, 0.18);
}

body[data-portal="customer"] .market-copy {
  min-width: 0;
  display: grid;
  align-content: center;
  gap: 10px;
}

body[data-portal="customer"] .market-kicker {
  color: #7dffbd;
  font-size: 13px;
  font-weight: 850;
}

body[data-portal="customer"] .market-copy h1 {
  max-width: 820px;
  margin: 0;
  color: #fff;
  font-size: clamp(22px, 2.2vw, 34px);
  line-height: 1.18;
  font-weight: 900;
}

body[data-portal="customer"] .market-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

body[data-portal="customer"] .market-chips span {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  padding: 0 12px;
  color: #dff9ef;
  background: rgba(255, 255, 255, 0.08);
  font-size: 13px;
  font-weight: 760;
}

body[data-portal="customer"] .market-stats {
  min-width: 360px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  align-content: center;
}

body[data-portal="customer"] .market-stats div {
  min-width: 0;
  min-height: 86px;
  display: grid;
  align-content: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.08);
}

body[data-portal="customer"] .market-stats strong,
body[data-portal="customer"] .market-stats span {
  display: block;
}

body[data-portal="customer"] .market-stats strong {
  color: #fff;
  font-size: 27px;
  line-height: 1;
}

body[data-portal="customer"] .market-stats span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 760;
}

body[data-portal="customer"] .finder-panel {
  border-color: rgba(23, 32, 44, 0.1);
  background: var(--premium-panel);
  box-shadow: 0 18px 42px rgba(24, 35, 51, 0.08);
  backdrop-filter: blur(14px);
}

body[data-portal="customer"] .brand-showcase {
  background: linear-gradient(180deg, rgba(249, 251, 254, 0.98), rgba(244, 248, 252, 0.98));
}

body[data-portal="customer"] .brand-item {
  border: 1px solid transparent;
  background: rgba(255, 255, 255, 0.46);
}

body[data-portal="customer"] .brand-item.selected,
body[data-portal="customer"] .brand-item:hover {
  border-color: rgba(0, 184, 107, 0.26);
  background: #fff;
  box-shadow: 0 8px 18px rgba(14, 28, 42, 0.06);
}

body[data-portal="customer"] .brand-badge {
  border-width: 0;
  background: #111827;
  color: #fff;
}

body[data-portal="customer"] .brand-badge.badge-bmw {
  color: #fff;
  background: conic-gradient(#0a66c2 0 25%, #fff 0 50%, #0a66c2 0 75%, #fff 0);
  box-shadow: 0 0 0 1px rgba(10, 102, 194, 0.28);
}

body[data-portal="customer"] .brand-badge.badge-byd,
body[data-portal="customer"] .brand-badge.badge-honda {
  background: #ffedf0;
}

body[data-portal="customer"] .brand-badge.badge-li {
  color: #007a52;
  background: #e8fff5;
}

body[data-portal="customer"] .text-option.selected,
body[data-portal="customer"] .selected-tags button {
  border-color: rgba(0, 184, 107, 0.48);
  color: #007a52;
  background: linear-gradient(180deg, #effff8, #e8fff5);
}

body[data-portal="customer"] .range-inputs button,
body[data-portal="customer"] .car-search button {
  background: linear-gradient(135deg, #ff7a1a, #ff4f1c);
}

body[data-portal="customer"] .result-bar {
  border-bottom: 0;
}

body[data-portal="customer"] .source-tabs button.active::after {
  border-radius: 999px;
  background: linear-gradient(90deg, #ffcc33, #ff6a1a);
}

body[data-portal="customer"] .vehicle-card {
  overflow: hidden;
  border: 1px solid rgba(21, 31, 45, 0.1);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 32px rgba(24, 35, 51, 0.08);
}

body[data-portal="customer"] .vehicle-card:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 184, 107, 0.28);
  box-shadow: 0 24px 48px rgba(24, 35, 51, 0.12);
}

body[data-portal="customer"] .vehicle-photo {
  background: linear-gradient(135deg, #d9e2eb, #f5f7fa);
}

body[data-portal="customer"] .vehicle-photo img {
  filter: saturate(1.04) contrast(1.02);
}

body[data-portal="customer"] .photo-tag {
  top: 10px;
  left: 10px;
  min-height: 26px;
  border-radius: 999px;
  background: rgba(255, 93, 26, 0.94);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.16);
}

body[data-portal="customer"] .photo-tag.green {
  background: rgba(0, 184, 107, 0.94);
}

body[data-portal="customer"] .photo-tag.blue {
  background: rgba(35, 105, 216, 0.94);
}

body[data-portal="customer"] .vehicle-info h2 {
  color: #151b24;
}

body[data-portal="customer"] .price-line strong {
  background: linear-gradient(135deg, #ff6a1a, #ff3d22);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

body[data-portal="customer"] .vehicle-tags span {
  color: #006f4b;
  background: #eafff5;
}

body[data-portal="customer"] .advisor-float {
  border-color: rgba(255, 106, 26, 0.2);
  background: rgba(255, 246, 236, 0.94);
  backdrop-filter: blur(10px);
}

@media (max-width: 980px) {
  body[data-portal="customer"] .market-hero {
    grid-template-columns: 1fr;
  }

  body[data-portal="customer"] .market-stats {
    min-width: 0;
  }
}

@media (max-width: 640px) {
  body[data-portal="customer"] .market-hero {
    padding: 16px;
    gap: 14px;
  }

  body[data-portal="customer"] .market-copy,
  body[data-portal="customer"] .market-stats {
    min-width: 0;
  }

  body[data-portal="customer"] .market-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  body[data-portal="customer"] .market-stats div {
    min-height: 58px;
    gap: 5px;
    padding: 10px;
  }

  body[data-portal="customer"] .market-copy h1 {
    max-width: calc(100vw - 54px);
    font-size: 22px;
    line-height: 1.22;
    overflow-wrap: anywhere;
    word-break: break-all;
  }

  body[data-portal="customer"] .market-chips span {
    min-height: 26px;
    padding: 0 10px;
    font-size: 12px;
  }

  body[data-portal="customer"] .market-stats {
    display: none;
  }
}

/* Next-generation customer marketplace */
body[data-portal="customer"] {
  --next-bg: #f6f9fc;
  --next-ink: #111722;
  --next-muted: #697586;
  --next-line: rgba(27, 39, 56, 0.11);
  --next-card: #ffffff;
  --next-green: #2f6df6;
  --next-green-dark: #1d4ed8;
  --next-orange: #ff6330;
  --next-blue: #2f6df6;
  overflow-x: hidden;
  background: linear-gradient(180deg, #fbfcfe 0, var(--next-bg) 360px, #f3f7fb 100%);
  color: var(--next-ink);
}

.next-car-home {
  min-height: 100vh;
}

.next-header {
  position: sticky;
  top: 0;
  z-index: 110;
  min-height: 68px;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 0 max(24px, calc((100vw - 1480px) / 2));
  border-bottom: 1px solid rgba(24, 36, 52, 0.08);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
}

.next-logo,
.next-nav a {
  color: inherit;
  text-decoration: none;
}

.next-logo {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  width: 174px;
  min-height: 48px;
  white-space: nowrap;
}

.next-logo img {
  width: 100%;
  max-height: 48px;
  display: block;
  object-fit: contain;
}

.hero-actions button,
.filter-head button,
.filter-values button,
.brand-cloud button,
.price-box button,
.picked-row button,
.source-tabs button,
.sort-links button {
  border: 0;
  font: inherit;
  cursor: pointer;
}

.next-nav {
  min-width: 0;
  flex: 0 1 auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 2px;
  margin-left: auto;
  border: 1px solid rgba(156, 171, 193, 0.2);
  border-radius: 8px;
  padding: 4px;
  background: rgba(247, 250, 252, 0.78);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.72);
}

/* Customer's Ant Design menu shares this header with the legacy base stylesheet. */
body[data-portal="customer"] .customer-header-menu {
  margin-left: auto;
}

.next-nav a {
  position: relative;
  flex: 0 0 auto;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  border: 0;
  border-radius: 6px;
  padding: 0 13px;
  color: #4b5563;
  font-size: 13px;
  font-weight: 820;
  white-space: nowrap;
  transition:
    color 160ms ease,
    background 160ms ease,
    box-shadow 160ms ease;
}

.next-nav a:hover {
  color: var(--next-green-dark);
  background: #fff;
}

.next-nav a.active {
  color: #174ea6;
  background: #fff;
  box-shadow: 0 1px 4px rgba(24, 35, 51, 0.08);
}

.next-nav a.active::after {
  content: "";
  position: absolute;
  left: 13px;
  right: 13px;
  bottom: -5px;
  height: 2px;
  border-radius: 999px;
  background: #2563eb;
}

.customer-global-actions {
  position: relative;
  z-index: 130;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: 2px;
  padding-left: 22px;
  border-left: 1px solid rgba(156, 171, 193, 0.34);
}

.customer-global-control {
  position: relative;
}

.customer-tool-button {
  width: 40px;
  height: 40px;
  min-width: 40px;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 8px;
  padding: 0;
  color: #151515;
  background: transparent;
  box-shadow: none;
  cursor: pointer;
  text-decoration: none;
  transition:
    color 160ms ease,
    background 160ms ease,
    box-shadow 160ms ease;
}

.customer-tool-button:hover,
.customer-tool-button[aria-expanded="true"] {
  color: #111827;
  background: #f5f7fb;
  box-shadow: none;
}

.customer-tool-button:focus-visible {
  outline: 3px solid rgba(47, 109, 246, 0.18);
  outline-offset: 3px;
}

.customer-tool-button svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.customer-language-button {
  width: auto;
  min-width: 48px;
  gap: 5px;
  padding: 0 7px;
  font-weight: 900;
}

.customer-language-button svg {
  width: 25px;
  height: 25px;
}

.customer-tool-caption,
.customer-current-language {
  display: none;
}

.customer-current-language-short {
  display: inline;
  font-size: 12px;
  font-weight: 900;
}

.customer-account-button {
  width: auto;
  max-width: 220px;
  min-width: 0;
  height: 40px;
  min-height: 40px;
  justify-content: flex-start;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 0 10px 0 8px;
  font-weight: 850;
}

.customer-account-button:hover,
.customer-account-button[aria-expanded="true"] {
  border-color: #f0dfb8;
  background: #fff7e2;
}

.customer-account-button svg {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
}

.customer-account-trigger-copy {
  min-width: 0;
  display: grid;
  gap: 2px;
  text-align: left;
  line-height: 1.05;
}

.customer-account-trigger-copy small {
  color: #6b7280;
  font-size: 10px;
  font-weight: 820;
}

.customer-account-trigger-copy strong {
  max-width: 172px;
  overflow: hidden;
  color: #111827;
  font-size: 14px;
  font-weight: 900;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.customer-message-button {
  position: relative;
  font-weight: 850;
}

.customer-message-count {
  position: absolute;
  top: -2px;
  right: -2px;
  min-width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 6px;
  color: #fff;
  background: #ff6330;
  font-size: 10px;
  font-weight: 920;
  line-height: 1;
}

.customer-tool-popover {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  z-index: 120;
  border: 1px solid rgba(156, 171, 193, 0.28);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(24, 35, 51, 0.14);
}

.customer-tool-popover[hidden] {
  display: none;
}

.customer-language-popover {
  width: 190px;
  padding: 8px;
}

.customer-language-list {
  display: grid;
  gap: 4px;
}

.customer-language-option {
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border: 0;
  border-radius: 8px;
  padding: 0 10px;
  color: #303948;
  background: transparent;
  font: inherit;
  font-weight: 850;
  cursor: pointer;
}

.customer-language-option:hover,
.customer-language-option.active {
  color: var(--next-green-dark);
  background: #edf4ff;
}

.customer-language-option small {
  color: #7a8495;
  font-size: 11px;
  font-weight: 900;
}

.customer-account-popover {
  width: min(330px, calc(100vw - 32px));
  padding: 0;
  overflow: hidden;
}

.customer-message-popover {
  width: min(380px, calc(100vw - 32px));
  padding: 12px;
}

.customer-message-list {
  display: grid;
  gap: 8px;
}

.customer-message-item {
  display: grid;
  gap: 5px;
  border: 1px solid rgba(156, 171, 193, 0.24);
  border-radius: 8px;
  padding: 10px;
  color: #182333;
  text-decoration: none;
  background: #fff;
  transition:
    border-color 160ms ease,
    background 160ms ease,
    transform 160ms ease;
}

.customer-message-item:hover,
.customer-message-item:focus-visible {
  border-color: rgba(47, 109, 246, 0.34);
  background: #f7fbff;
  transform: translateY(-1px);
}

.customer-message-item:focus-visible {
  outline: 3px solid rgba(47, 109, 246, 0.18);
  outline-offset: 2px;
}

.customer-message-kind {
  width: fit-content;
  min-height: 24px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0 8px;
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
}

.customer-message-kind-inquiry {
  color: #d9481f;
  background: #fff1ea;
}

.customer-message-kind-demand {
  color: #08776d;
  background: #e6f8f4;
}

.customer-message-item strong {
  color: #141b26;
  font-size: 14px;
  font-weight: 920;
  line-height: 1.36;
}

.customer-message-item em,
.customer-message-item small {
  color: #7a8495;
  font-size: 12px;
  font-style: normal;
  font-weight: 780;
  line-height: 1.45;
}

.customer-account-auth-card,
.customer-account-login-form,
.customer-account-summary {
  display: grid;
  gap: 10px;
}

.customer-account-auth-card,
.customer-account-login-form {
  padding: 16px 18px;
  border-bottom: 1px solid rgba(156, 171, 193, 0.22);
}

.customer-account-summary {
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  padding: 16px 18px 14px;
  background: linear-gradient(180deg, #fffaf0, #fff 76%);
  border-bottom: 1px solid rgba(156, 171, 193, 0.18);
}

.customer-account-summary-icon {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(238, 183, 50, 0.28);
  border-radius: 8px;
  color: #111827;
  background: #fff4d6;
}

.customer-account-summary-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.customer-account-summary-copy {
  min-width: 0;
  display: grid;
  gap: 3px;
}

.customer-account-login-intro {
  display: grid;
  gap: 2px;
}

.customer-account-auth-card strong,
.customer-account-login-form strong,
.customer-account-summary strong {
  min-width: 0;
  overflow: hidden;
  color: #111827;
  font-size: 17px;
  font-weight: 920;
  line-height: 1.18;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.customer-account-login-form label {
  display: grid;
  gap: 6px;
}

.customer-account-auth-card span,
.customer-account-login-form span,
.customer-account-summary span,
.customer-account-summary small {
  min-width: 0;
  overflow: hidden;
  color: #6b7280;
  font-size: 11px;
  font-weight: 780;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.customer-account-login-form input {
  width: 100%;
  height: 42px;
  border: 1px solid #d8dde6;
  border-radius: 8px;
  padding: 0 11px;
  color: #050505;
  background: #fff;
  font: inherit;
  outline: none;
}

.customer-account-login-form input:focus {
  border-color: #f2b300;
  box-shadow: 0 0 0 3px rgba(255, 184, 0, 0.18);
}

.customer-account-auth-actions {
  display: grid;
  gap: 12px;
  margin-top: 2px;
}

.customer-account-login-open,
.customer-account-login-submit,
.customer-account-register-action,
.customer-account-logout {
  min-height: 54px;
  border: 0;
  border-radius: 8px;
  padding: 0 14px;
  color: #050505;
  background: #ffb900;
  font: inherit;
  font-size: 18px;
  font-weight: 900;
  cursor: pointer;
}

.customer-account-login-form button:disabled {
  opacity: 0.58;
  cursor: wait;
}

.customer-account-login-open,
.customer-account-login-submit {
  color: #050505;
  background: #ffb900;
}

.customer-account-register-action,
.customer-account-logout {
  color: #fff;
  background: #050505;
}

.customer-account-logout {
  min-height: 40px;
  border: 1px solid rgba(156, 171, 193, 0.32);
  color: #4b5563;
  background: #fff;
  font-size: 14px;
  font-weight: 850;
}

.customer-account-logout:hover,
.customer-account-logout:focus-visible {
  border-color: rgba(220, 38, 38, 0.28);
  color: #b42318;
  background: #fff7f7;
}

.customer-account-error {
  margin: 0;
  border-radius: 8px;
  padding: 8px 10px;
  color: #b42318;
  background: #fff1f1;
  font-size: 12px;
  line-height: 1.45;
  font-weight: 780;
}

.customer-account-menu {
  display: grid;
  padding: 8px;
}

.customer-account-menu a {
  min-height: 42px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-radius: 8px;
  padding: 0 10px;
  color: #1f2937;
  background: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 850;
  transition:
    color 160ms ease,
    background 160ms ease;
}

.customer-account-menu a:hover,
.customer-account-menu a:focus-visible {
  color: #174ea6;
  background: #f4f8ff;
}

.customer-account-menu a:focus-visible {
  outline: 3px solid rgba(255, 184, 0, 0.28);
  outline-offset: -3px;
}

.customer-account-menu svg {
  flex: 0 0 auto;
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.customer-account-menu-divider {
  display: block;
  height: 1px;
  margin: 7px 0;
  background: rgba(156, 171, 193, 0.18);
}

.customer-account-footer {
  padding: 0 18px 16px;
}

.customer-popover-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 2px 2px 8px;
}

.customer-popover-head strong {
  color: #141b26;
  font-size: 15px;
  font-weight: 920;
}

.customer-popover-head span {
  color: var(--next-green-dark);
  font-size: 12px;
  font-weight: 850;
}

.customer-popover-empty {
  min-height: 74px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: #7a8495;
  background: #f6f9fd;
  font-size: 13px;
  font-weight: 780;
}

.floating-agent {
  position: fixed;
  right: 28px;
  bottom: 26px;
  z-index: 230;
  width: 68px;
  height: 68px;
  display: inline-grid;
  place-items: center;
  border: 4px solid #fff;
  border-radius: 50%;
  padding: 0;
  color: #fff;
  font: inherit;
  user-select: none;
  cursor: pointer;
  background: #07558f;
  box-shadow: 0 16px 36px rgba(15, 33, 55, 0.26);
  transition:
    transform 180ms ease,
    opacity 180ms ease,
    box-shadow 180ms ease;
}

.floating-agent:hover,
.floating-agent:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 20px 46px rgba(15, 33, 55, 0.3);
}

.floating-agent:focus-visible {
  outline: 3px solid rgba(7, 85, 143, 0.22);
  outline-offset: 4px;
}

.floating-agent.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px) scale(0.86);
}

.floating-agent-icon {
  position: relative;
  width: 34px;
  height: 30px;
  flex: 0 0 auto;
  display: inline-grid;
  place-items: center;
}

.floating-agent-icon::before {
  content: "";
  width: 26px;
  height: 18px;
  border: 4px solid currentColor;
  border-radius: 9px;
}

.floating-agent-icon::after {
  content: "";
  position: absolute;
  right: 4px;
  bottom: 0;
  width: 10px;
  height: 10px;
  border-right: 4px solid currentColor;
  border-bottom: 4px solid currentColor;
  border-bottom-right-radius: 4px;
}

body[data-page="image-card-home"] .floating-agent {
  right: 20px;
  bottom: 18px;
  width: 58px;
  height: 58px;
  border-width: 3px;
  background: #0a5f99;
  box-shadow: 0 12px 28px rgba(15, 33, 55, 0.22);
}

body[data-page="image-card-home"] .floating-agent:hover,
body[data-page="image-card-home"] .floating-agent:focus-visible {
  box-shadow: 0 16px 36px rgba(15, 33, 55, 0.26);
}

body[data-page="image-card-home"] .floating-agent-icon {
  width: 30px;
  height: 28px;
}

body[data-page="image-card-home"] .floating-agent-icon::before {
  width: 23px;
  height: 16px;
  border-width: 3px;
}

body[data-page="image-card-home"] .floating-agent-icon::after {
  right: 5px;
  width: 8px;
  height: 8px;
  border-right-width: 3px;
  border-bottom-width: 3px;
}

.customer-agent-dialog {
  position: fixed;
  right: 36px;
  bottom: 24px;
  z-index: 240;
  width: min(430px, calc(100vw - 48px));
  height: min(720px, calc(100svh - 48px));
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px) scale(0.98);
  transform-origin: right bottom;
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.customer-agent-dialog.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.customer-agent-panel {
  position: relative;
  height: 100%;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  overflow: hidden;
  border: 1px solid rgba(151, 164, 184, 0.22);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 28px 80px rgba(15, 23, 42, 0.22);
}

.customer-agent-head {
  min-height: 76px;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) 44px;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  background: #07558f;
  color: #fff;
}

.customer-agent-title {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.customer-agent-title strong {
  font-size: 25px;
  font-weight: 900;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.customer-agent-avatar {
  position: relative;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: #2d9ae8;
}

.customer-agent-avatar::after {
  content: "";
  position: absolute;
  top: 0;
  right: 1px;
  width: 9px;
  height: 9px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: #38a169;
}

.customer-agent-avatar span {
  position: relative;
  width: 22px;
  height: 16px;
  border: 3px solid #fff;
  border-radius: 8px;
}

.customer-agent-avatar span::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -7px;
  width: 8px;
  height: 8px;
  border-right: 3px solid #fff;
  border-bottom: 3px solid #fff;
  border-bottom-right-radius: 3px;
}

.customer-agent-nav,
.customer-agent-close,
.customer-agent-composer button {
  display: inline-grid;
  place-items: center;
  border: 0;
  font: inherit;
  cursor: pointer;
}

.customer-agent-nav,
.customer-agent-close {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: #fff;
  background: transparent;
  font-size: 42px;
  line-height: 1;
}

.customer-agent-close {
  font-size: 48px;
}

.customer-agent-nav {
  font-size: 0;
}

.customer-agent-nav::before {
  content: "";
  width: 21px;
  height: 15px;
  border-top: 3px solid currentColor;
  border-bottom: 3px solid currentColor;
  box-shadow: 0 6px 0 currentColor;
}

.customer-agent-nav:hover,
.customer-agent-close:hover {
  background: rgba(255, 255, 255, 0.14);
}

.customer-agent-history-panel {
  position: absolute;
  top: 76px;
  bottom: 0;
  left: 0;
  z-index: 5;
  width: 100%;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  background: #fff;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.1);
  opacity: 0;
  pointer-events: none;
  transform: translateX(-10px);
  transition:
    opacity 160ms ease,
    transform 160ms ease;
}

.customer-agent-history-panel[hidden] {
  display: none;
}

.customer-agent-history-panel.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

.customer-agent-history-top {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid rgba(151, 164, 184, 0.16);
  padding: 14px 18px;
}

.customer-agent-history-top strong {
  color: #0f243a;
  font-size: 18px;
  font-weight: 900;
}

.customer-agent-history-top button {
  min-height: 36px;
  border: 0;
  border-radius: 8px;
  padding: 0 12px;
  color: #fff;
  background: #07558f;
  font: inherit;
  font-size: 14px;
  font-weight: 850;
  cursor: pointer;
}

.customer-agent-history-list {
  min-height: 0;
  display: grid;
  align-content: start;
  gap: 8px;
  overflow-y: auto;
  padding: 12px;
}

.customer-agent-history-item {
  width: 100%;
  display: grid;
  gap: 5px;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 11px 12px;
  color: #0f243a;
  background: #fff;
  text-align: left;
  cursor: pointer;
}

.customer-agent-history-item:hover {
  background: #f4f8fc;
}

.customer-agent-history-item.active {
  border-color: rgba(7, 85, 143, 0.22);
  background: #eaf4ff;
}

.customer-agent-history-item span {
  font-size: 15px;
  font-weight: 850;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.customer-agent-history-item small,
.customer-agent-history-status {
  color: #63718a;
  font-size: 12px;
  font-weight: 760;
}

.customer-agent-history-status {
  padding: 14px 12px;
}

.customer-agent-history-status.is-error {
  color: #9f2a22;
}

.customer-agent-thread {
  min-height: 0;
  display: grid;
  align-content: start;
  gap: 16px;
  overflow-y: auto;
  padding: 18px 24px;
  background: #fff;
}

.customer-agent-message {
  max-width: 92%;
  display: grid;
  gap: 7px;
}

.customer-agent-message span {
  color: #63718a;
  font-size: 12px;
  font-weight: 800;
}

.customer-agent-bubble {
  color: #0f243a;
  font-size: 17px;
  line-height: 1.72;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}

.customer-agent-message a {
  color: #0969da;
  font-weight: 820;
}

.customer-agent-message.is-user {
  justify-self: end;
}

.customer-agent-message.is-user span {
  text-align: right;
}

.customer-agent-message.is-user .customer-agent-bubble {
  border-radius: 20px 20px 4px 20px;
  padding: 11px 16px;
  color: #0f243a;
  background: #dfe6ef;
}

.customer-agent-message.is-error .customer-agent-bubble {
  border: 1px solid rgba(194, 65, 53, 0.18);
  border-radius: 14px;
  padding: 10px 12px;
  color: #9f2a22;
  background: #fff4f2;
}

.customer-agent-suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}

.customer-agent-suggestions button {
  min-height: 38px;
  max-width: 100%;
  border: 0;
  border-radius: 999px;
  padding: 0 15px;
  color: #0969da;
  background: #e6f4ff;
  font: inherit;
  font-size: 15px;
  font-weight: 760;
  cursor: pointer;
  overflow-wrap: anywhere;
}

.customer-agent-suggestions button:hover {
  background: #d7ecff;
}

.customer-agent-composer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 58px;
  gap: 12px;
  border-top: 1px solid rgba(151, 164, 184, 0.16);
  padding: 16px 24px 22px;
  background: #fff;
}

.customer-agent-composer textarea {
  min-height: 58px;
  max-height: 112px;
  resize: none;
  border: 1px solid #d8e1ec;
  border-radius: 14px;
  padding: 15px 18px;
  outline: none;
  color: #0f243a;
  background: #fff;
  font: inherit;
  font-size: 18px;
  line-height: 1.45;
}

.customer-agent-composer textarea:focus {
  border-color: rgba(7, 85, 143, 0.55);
  box-shadow: 0 0 0 3px rgba(7, 85, 143, 0.1);
}

.customer-agent-composer button {
  width: 58px;
  height: 58px;
  align-self: end;
  border-radius: 14px;
  color: #7a8a9f;
  background: #dfe6ef;
  font-size: 40px;
  font-weight: 900;
  line-height: 1;
}

.customer-agent-composer button:disabled {
  cursor: wait;
  opacity: 0.62;
}

.next-main {
  width: min(1480px, 100%);
  margin: 0 auto;
  padding: 18px 24px 58px;
}

.next-hero {
  min-height: 330px;
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(330px, 0.72fr);
  grid-template-rows: 1fr auto;
  gap: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 18px;
  padding: 28px;
  color: #fff;
  background:
    linear-gradient(120deg, rgba(7, 13, 22, 0.98), rgba(18, 32, 67, 0.95) 48%, rgba(35, 85, 156, 0.9)),
    radial-gradient(circle at 78% 30%, rgba(47, 109, 246, 0.3), transparent 34%);
  box-shadow: 0 30px 70px rgba(18, 32, 47, 0.22);
}

.next-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, transparent 0 54%, rgba(255, 255, 255, 0.07) 54% 54.5%, transparent 54.5%),
    radial-gradient(circle at 18% 22%, rgba(47, 109, 246, 0.28), transparent 20%);
  pointer-events: none;
}

.hero-copy,
.hero-vehicle-card,
.hero-metrics {
  position: relative;
  z-index: 1;
}

.hero-copy {
  display: grid;
  align-content: center;
  gap: 16px;
}

.hero-kicker {
  width: fit-content;
  border: 1px solid rgba(147, 197, 253, 0.32);
  border-radius: 999px;
  padding: 7px 12px;
  color: #bfdbfe;
  background: rgba(255, 255, 255, 0.06);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.02em;
}

.hero-copy h1 {
  max-width: 780px;
  margin: 0;
  color: #fff;
  font-size: clamp(34px, 4.2vw, 62px);
  line-height: 1.04;
  font-weight: 950;
}

.hero-copy h1 span {
  display: inline;
}

.hero-copy p {
  max-width: 660px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.hero-actions button,
.hero-actions a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0 18px;
  font-weight: 850;
  text-decoration: none;
}

.hero-actions button {
  color: #fff;
  background: linear-gradient(135deg, #60a5fa, var(--next-green));
}

.hero-actions .primary-hero-action {
  color: #fff;
  background: linear-gradient(135deg, #60a5fa, var(--next-green));
}

.hero-actions a {
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.hero-vehicle-card {
  align-self: stretch;
  min-height: 260px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
}

.hero-vehicle-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.hero-vehicle-overlay {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: grid;
  gap: 4px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  padding: 14px;
  background: rgba(7, 13, 22, 0.62);
  backdrop-filter: blur(12px);
}

.hero-vehicle-overlay span,
.hero-vehicle-overlay small {
  color: rgba(255, 255, 255, 0.72);
}

.hero-vehicle-overlay strong {
  color: #fff;
  font-size: 20px;
}

.hero-metrics,
.hero-proof-points {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.hero-metrics div,
.hero-proof-points div {
  min-height: 88px;
  display: grid;
  align-content: center;
  gap: 6px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 14px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.hero-metrics strong,
.hero-proof-points strong {
  color: #fff;
  font-size: 30px;
  line-height: 1;
}

.hero-metrics span,
.hero-proof-points span {
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
  font-weight: 760;
}

.home-entry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  margin-top: 20px;
}

.home-entry-card {
  min-height: 150px;
  display: grid;
  align-content: center;
  gap: 8px;
  border: 1px solid rgba(167, 181, 204, 0.28);
  border-radius: 16px;
  padding: 20px;
  color: inherit;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 42px rgba(24, 35, 51, 0.08);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.home-entry-card:hover {
  transform: translateY(-2px);
  border-color: rgba(47, 109, 246, 0.34);
  box-shadow: 0 24px 52px rgba(24, 35, 51, 0.12);
}

.home-entry-card span {
  color: var(--next-green-dark);
  font-size: 13px;
  font-weight: 860;
}

.home-entry-card strong {
  color: #151d2b;
  font-size: 22px;
  line-height: 1.22;
}

.home-entry-card small {
  color: #667085;
  font-size: 14px;
  line-height: 1.55;
}

.about-main {
  display: grid;
  gap: 28px;
}

.about-hero {
  position: relative;
  box-sizing: border-box;
  min-height: auto;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.78fr);
  align-items: stretch;
  column-gap: clamp(22px, 4vw, 46px);
  row-gap: 18px;
  overflow: hidden;
  border: 1px solid rgba(154, 169, 190, 0.24);
  border-radius: 8px;
  padding: clamp(24px, 3.8vw, 42px);
  color: #111827;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(247, 251, 255, 0.98) 58%, rgba(239, 248, 245, 0.98)),
    #fff;
  box-shadow:
    0 22px 54px rgba(24, 35, 51, 0.08),
    0 0 0 1px rgba(255, 255, 255, 0.72);
}

.about-hero-copy {
  min-width: 0;
  display: grid;
  align-content: center;
  gap: 16px;
  padding-bottom: 0;
}

.about-hero-copy > span,
.about-story-copy > span,
.about-section-head span,
.about-summary-grid span,
.about-detail-preview span,
.about-action-row span,
.about-dialog article > span {
  color: #1d4ed8;
  font-size: 13px;
  font-weight: 880;
}

.about-hero-copy > span {
  width: fit-content;
  max-width: 100%;
  border: 1px solid rgba(37, 99, 235, 0.16);
  border-radius: 8px;
  padding: 8px 12px;
  color: #174ea6;
  background: rgba(237, 244, 255, 0.84);
  line-height: 1.18;
  overflow-wrap: anywhere;
}

.about-hero-copy h1,
.about-section-head h2,
.about-summary-grid h2,
.about-detail-preview h2,
.about-dialog h2 {
  margin: 0;
  letter-spacing: 0;
}

.about-hero-copy h1 {
  max-width: 720px;
  color: #111827;
  font-size: clamp(34px, 3.9vw, 48px);
  line-height: 1.08;
  font-weight: 930;
  overflow-wrap: anywhere;
  text-shadow: none;
}

.about-hero-copy h1 span {
  display: block;
}

.about-hero-copy p {
  max-width: 680px;
  margin: 0;
  color: #4f5d70;
  font-size: 16px;
  line-height: 1.64;
  font-weight: 620;
  overflow-wrap: anywhere;
  text-shadow: none;
}

.about-hero-actions,
.about-action-row > div:last-child {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.about-hero-actions a,
.about-hero-actions button,
.about-summary-grid button,
.about-inline-button,
.about-detail-preview button,
.about-action-row a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 0 18px;
  font-weight: 860;
  text-decoration: none;
  cursor: pointer;
}

.about-hero-actions a,
.about-action-row a {
  color: #fff;
  background: #174ea6;
  box-shadow: 0 14px 28px rgba(23, 78, 166, 0.24);
}

.about-hero-actions button,
.about-summary-grid button,
.about-inline-button,
.about-detail-preview button {
  border: 1px solid rgba(37, 99, 235, 0.22);
  color: #1d4ed8;
  background: #edf4ff;
}

.about-hero-actions button {
  color: #172033;
  border-color: rgba(151, 164, 184, 0.34);
  background: rgba(255, 255, 255, 0.88);
}

.about-hero-proof {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 0;
}

.about-hero-proof div {
  min-width: 0;
  display: grid;
  gap: 6px;
  border: 1px solid rgba(132, 149, 176, 0.18);
  border-radius: 8px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.78);
}

.about-hero-proof strong {
  color: #111827;
  font-size: 22px;
  line-height: 1.08;
}

.about-hero-proof span {
  color: #667085;
  font-size: 12px;
  line-height: 1.35;
  font-weight: 760;
}

.about-platform-panel {
  min-width: 0;
  display: grid;
  align-content: start;
  gap: 14px;
  border-left: 1px solid rgba(132, 149, 176, 0.2);
  padding-left: clamp(20px, 3vw, 34px);
}

.about-platform-panel-head {
  display: grid;
  gap: 8px;
}

.about-platform-panel-head span {
  color: #0f766e;
  font-size: 13px;
  font-weight: 900;
}

.about-platform-panel-head strong {
  color: #111827;
  font-size: 22px;
  line-height: 1.22;
  letter-spacing: 0;
}

.about-platform-flow {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid rgba(132, 149, 176, 0.2);
  border-radius: 8px;
  background: #fff;
}

.about-platform-flow div {
  min-width: 0;
  min-height: 108px;
  display: grid;
  align-content: start;
  gap: 7px;
  border-left: 1px solid rgba(132, 149, 176, 0.16);
  border-top: 1px solid rgba(132, 149, 176, 0.16);
  padding: 13px 14px;
}

.about-platform-flow div:nth-child(2n + 1) {
  border-left: 0;
}

.about-platform-flow div:nth-child(-n + 2) {
  border-top: 0;
}

.about-platform-flow b,
.about-platform-capabilities span {
  color: #174ea6;
  font-size: 12px;
  font-weight: 940;
}

.about-platform-flow span {
  color: #111827;
  font-size: 16px;
  line-height: 1.22;
  font-weight: 900;
}

.about-platform-flow small,
.about-platform-ledger span {
  color: #667085;
  font-size: 12px;
  line-height: 1.5;
  font-weight: 720;
}

.about-platform-ledger {
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(132, 149, 176, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.about-platform-ledger div {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(96px, 0.45fr) minmax(0, 1fr);
  gap: 12px;
  border-top: 1px solid rgba(132, 149, 176, 0.16);
  padding: 10px 14px;
}

.about-platform-ledger div:first-child {
  border-top: 0;
}

.about-platform-ledger strong {
  min-width: 0;
  color: #172033;
  font-size: 13px;
  line-height: 1.45;
  font-weight: 880;
}

.about-operation-panel {
  display: none;
}

.about-operation-visual {
  display: none;
}

.about-network-visual {
  background: #071936;
}

.about-operation-visual img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 58% 48%;
}

.about-network-visual img {
  object-position: 50% 50%;
}

.about-operation-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.08), rgba(15, 23, 42, 0.66));
}

.about-network-visual::after {
  background:
    linear-gradient(180deg, rgba(7, 25, 54, 0.04), rgba(7, 25, 54, 0.68)),
    linear-gradient(90deg, rgba(7, 25, 54, 0.3), rgba(7, 25, 54, 0.02) 48%, rgba(7, 25, 54, 0.28));
}

.about-operation-badge {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 1;
  display: grid;
  gap: 4px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  padding: 10px;
  background: rgba(16, 24, 40, 0.72);
  backdrop-filter: blur(10px);
}

.about-operation-badge span {
  color: rgba(255, 255, 255, 0.66);
  font-size: 12px;
  font-weight: 860;
}

.about-operation-badge strong {
  color: #fff;
  font-size: 17px;
  line-height: 1.22;
}

.about-operation-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
}

.about-operation-list div {
  display: grid;
  align-content: start;
  gap: 6px;
  border: 0;
  border-left: 1px solid rgba(132, 149, 176, 0.22);
  border-radius: 0;
  padding: 15px 16px;
  background: transparent;
}

.about-operation-list div:first-child {
  border-left: 0;
}

.about-operation-list b {
  color: #174ea6;
  font-size: 12px;
  line-height: 1;
}

.about-operation-list span {
  color: #111827;
  font-size: 14px;
  line-height: 1.28;
  font-weight: 880;
}

.about-operation-list small {
  color: #667085;
  font-size: 12px;
  line-height: 1.48;
}

.about-story-band {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 0.72fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
  padding: 58px 0 42px;
  border-bottom: 0;
}

.about-story-copy {
  display: grid;
  gap: 14px;
}

.about-story-copy > span {
  width: fit-content;
}

.about-story-copy h2 {
  max-width: 620px;
  margin: 0;
  color: #111827;
  font-size: clamp(34px, 4.4vw, 64px);
  line-height: 1.02;
  font-weight: 940;
  letter-spacing: 0;
}

.about-story-copy p {
  max-width: 660px;
  margin: 0;
  color: #556274;
  font-size: 18px;
  line-height: 1.72;
  font-weight: 620;
}

.about-story-media {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border-radius: 8px;
  margin: 0;
  background: #d9e2ef;
  aspect-ratio: 4 / 3;
  box-shadow: 0 22px 52px rgba(15, 23, 42, 0.12);
}

.about-story-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.about-story-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.02) 42%, rgba(15, 23, 42, 0.68));
}

.about-story-media figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 1;
  display: grid;
  gap: 6px;
  color: #fff;
}

.about-story-media figcaption span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 880;
}

.about-story-media figcaption strong {
  max-width: 420px;
  font-size: 22px;
  line-height: 1.16;
}

.about-story-steps {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.about-story-steps article {
  min-width: 0;
  min-height: 170px;
  display: grid;
  align-content: start;
  gap: 10px;
  border: 1px solid rgba(132, 149, 176, 0.18);
  border-radius: 8px;
  padding: 22px;
  background: #fff;
}

.about-story-steps span {
  color: #174ea6;
  font-size: 13px;
  font-weight: 940;
}

.about-story-steps strong {
  color: #111827;
  font-size: 24px;
  line-height: 1.12;
  letter-spacing: 0;
}

.about-story-steps p {
  margin: 0;
  color: #5f6b7d;
  font-size: 15px;
  line-height: 1.68;
}

.about-platform-section {
  display: grid;
  gap: 22px;
  padding: 48px 0 22px;
}

.about-platform-capabilities {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.about-platform-capabilities article {
  min-width: 0;
  min-height: 178px;
  display: grid;
  align-content: start;
  gap: 10px;
  border: 1px solid rgba(132, 149, 176, 0.18);
  border-radius: 8px;
  padding: 20px;
  background: #fff;
}

.about-platform-capabilities strong {
  color: #111827;
  font-size: 21px;
  line-height: 1.18;
  letter-spacing: 0;
}

.about-platform-capabilities p {
  margin: 0;
  color: #5f6b7d;
  font-size: 14px;
  line-height: 1.65;
}

.about-process-table {
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(132, 149, 176, 0.18);
  border-radius: 8px;
  background: #fff;
}

.about-process-row {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.2fr) minmax(0, 0.82fr);
  gap: 18px;
  align-items: start;
  border-top: 1px solid rgba(132, 149, 176, 0.14);
  padding: 16px 18px;
}

.about-process-row:first-child {
  border-top: 0;
}

.about-process-head {
  background: #f7fbff;
}

.about-process-head span {
  color: #174ea6;
  font-size: 12px;
  font-weight: 940;
}

.about-process-row strong {
  color: #111827;
  font-size: 15px;
  line-height: 1.45;
}

.about-process-row span {
  color: #5f6b7d;
  font-size: 14px;
  line-height: 1.58;
}

.about-summary-grid,
.about-service-grid,
.about-detail-preview {
  display: grid;
  gap: 16px;
}

.about-summary-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.about-summary-grid article,
.about-service-section,
.about-detail-preview article,
.about-action-row {
  border: 1px solid rgba(167, 181, 204, 0.28);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 42px rgba(24, 35, 51, 0.08);
}

.about-summary-grid article,
.about-detail-preview article {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 22px;
}

.about-summary-grid h2,
.about-detail-preview h2 {
  color: #151d2b;
  font-size: 23px;
  line-height: 1.24;
}

.about-summary-grid p,
.about-service-grid p,
.about-detail-preview p,
.about-section-head p,
.about-standard-feature p,
.about-standard-card small,
.about-standard-subtopics small,
.about-dialog p,
.about-dialog li {
  margin: 0;
  color: #5f6b7d;
  font-size: 15px;
  line-height: 1.75;
}

.about-service-section {
  display: grid;
  gap: 18px;
  padding: 24px;
}

.about-section-head {
  display: grid;
  gap: 8px;
  max-width: 900px;
}

.about-section-head h2 {
  color: #141b26;
  font-size: 32px;
  line-height: 1.18;
}

.about-section-head p {
  max-width: 760px;
}

.about-hierarchy-section {
  display: grid;
  gap: 28px;
  padding: 52px 0 18px;
}

.about-standard-hub-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  border-top: 0;
  border-bottom: 0;
  align-items: stretch;
}

.about-standard-feature,
.about-standard-card {
  border: 1px solid rgba(132, 149, 176, 0.18);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(24, 35, 51, 0.06);
}

.about-standard-feature {
  position: relative;
  overflow: hidden;
  min-height: auto;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(28px, 4vw, 56px);
  padding: 28px;
  background:
    linear-gradient(135deg, #fff, #f8fbff 58%, #f3f8ff),
    #fff;
}

.about-standard-feature::before {
  display: none;
}

.about-standard-feature-copy,
.about-standard-subtopics,
.about-standard-card {
  min-width: 0;
  display: grid;
}

.about-standard-feature-copy {
  align-content: center;
  gap: 16px;
  padding-right: clamp(0px, 2vw, 22px);
}

.about-standard-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
}

.about-standard-kicker span,
.about-standard-card span {
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  font-weight: 950;
}

.about-standard-kicker span {
  width: 40px;
  height: 40px;
  color: #fff;
  background: #2563eb;
  font-size: 13px;
}

.about-standard-kicker small {
  color: #2563eb;
  font-size: 13px;
  font-weight: 900;
}

.about-standard-feature h3,
.about-standard-card strong,
.about-standard-subtopics span {
  margin: 0;
  color: #121a29;
  letter-spacing: 0;
}

.about-standard-feature h3 {
  max-width: 620px;
  font-size: clamp(30px, 3.3vw, 48px);
  line-height: 1.08;
}

.about-standard-feature p {
  max-width: 620px;
}

.about-standard-feature-copy button,
.about-standard-subtopics button,
.about-standard-card {
  cursor: pointer;
}

.about-standard-feature-copy button {
  justify-self: start;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 8px;
  padding: 0 16px;
  color: #fff;
  background: #172033;
  font-weight: 860;
}

.about-standard-subtopics {
  align-content: stretch;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  border: 0;
  border-radius: 0;
  overflow: visible;
}

.about-standard-subtopics button {
  min-height: 144px;
  display: grid;
  align-content: end;
  gap: 9px;
  border: 1px solid rgba(132, 149, 176, 0.18);
  border-radius: 8px;
  padding: 20px;
  background: #fff;
  text-align: left;
}

.about-standard-subtopics button:first-child {
  border-left: 1px solid rgba(132, 149, 176, 0.18);
}

.about-standard-subtopics button:hover,
.about-standard-card:hover {
  background: #f7fbff;
  box-shadow: inset 0 3px 0 #174ea6;
}

.about-standard-subtopics span {
  font-size: 19px;
  font-weight: 900;
}

.about-standard-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: none;
  gap: 14px;
  border-top: 0;
}

.about-standard-card {
  align-content: end;
  gap: 12px;
  min-height: 166px;
  border: 1px solid rgba(132, 149, 176, 0.18);
  border-radius: 8px;
  padding: 22px;
  background: #fff;
  text-align: left;
}

.about-standard-card:first-child {
  border-left: 1px solid rgba(132, 149, 176, 0.18);
}

.about-standard-card span {
  width: 36px;
  height: 36px;
  color: #1d4ed8;
  background: #edf4ff;
  font-size: 12px;
}

.about-standard-card:nth-child(2) span {
  color: #9a5b16;
  background: #fff4d6;
}

.about-standard-card:nth-child(3) span {
  color: #0f766e;
  background: #e7f8f4;
}

.about-standard-card strong {
  font-size: 22px;
  line-height: 1.22;
}

.about-standard-card b {
  color: #2563eb;
  font-size: 13px;
  font-weight: 900;
}

.about-service-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.about-service-grid article {
  min-height: 170px;
  display: grid;
  align-content: start;
  gap: 10px;
  border-left: 3px solid #2563eb;
  padding: 2px 14px 2px 16px;
}

.about-service-grid b {
  color: #9aa4b4;
  font-size: 13px;
  font-weight: 900;
}

.about-service-grid h3 {
  margin: 0;
  color: #151d2b;
  font-size: 20px;
  line-height: 1.24;
}

.about-inline-button {
  justify-self: start;
}

.about-standard-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(167, 181, 204, 0.28);
  border-radius: 16px;
  background: rgba(167, 181, 204, 0.28);
}

.about-standard-band div {
  min-height: 128px;
  display: grid;
  align-content: center;
  gap: 10px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.92);
}

.about-standard-band span {
  width: fit-content;
  border-radius: 999px;
  padding: 5px 10px;
  color: #0f7a6d;
  background: rgba(15, 143, 127, 0.1);
  font-size: 13px;
  font-weight: 880;
}

.about-standard-band div:nth-child(2) span {
  color: #1d4ed8;
  background: rgba(47, 109, 246, 0.12);
}

.about-standard-band div:nth-child(3) span {
  color: #9a5b16;
  background: rgba(255, 199, 44, 0.24);
}

.about-standard-band strong {
  color: #151d2b;
  font-size: 18px;
  line-height: 1.36;
}

.about-detail-preview {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.about-pricing-card {
  color: #fff;
  background: linear-gradient(135deg, rgba(20, 27, 38, 0.98), rgba(21, 48, 88, 0.96)) !important;
}

.about-pricing-card span,
.about-pricing-card h2,
.about-pricing-card strong {
  color: #fff;
}

.about-pricing-card strong {
  font-size: 36px;
  line-height: 1;
}

.about-pricing-card p {
  color: rgba(255, 255, 255, 0.76);
}

.about-pricing-card button {
  border-color: rgba(255, 255, 255, 0.24);
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

.about-action-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px;
}

.about-action-row > div:first-child {
  display: grid;
  gap: 8px;
}

.about-action-row strong {
  color: #151d2b;
  font-size: 22px;
  line-height: 1.3;
}

body.about-dialog-open {
  overflow: hidden;
}

.about-dialog-backdrop {
  position: fixed;
  inset: 0;
  z-index: 150;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(15, 23, 42, 0.48);
  backdrop-filter: blur(8px);
}

.about-dialog-backdrop[hidden] {
  display: none;
}

.about-dialog {
  position: relative;
  width: min(780px, 100%);
  max-height: min(760px, calc(100vh - 48px));
  overflow: auto;
  border-radius: 16px;
  padding: 30px;
  background: #fff;
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.28);
}

.about-dialog-close {
  position: sticky;
  top: 0;
  float: right;
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(151, 164, 184, 0.34);
  border-radius: 999px;
  color: #303948;
  background: #fff;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.about-dialog article {
  clear: both;
  display: grid;
  gap: 14px;
}

.about-dialog article[hidden] {
  display: none;
}

.about-dialog h2 {
  max-width: 660px;
  color: #141b26;
  font-size: 30px;
  line-height: 1.2;
}

.about-dialog .about-feedback-email {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px;
  color: #5f6b7d;
  font-weight: 820;
}

.about-dialog .about-feedback-email a {
  color: #2563eb;
  text-decoration: underline;
  text-underline-offset: 3px;
  overflow-wrap: anywhere;
  font-weight: 900;
}

.about-dialog .about-feedback-email a:hover {
  color: #174ea6;
}

.about-dialog ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
}

@media (max-width: 980px) {
  .about-story-band,
  .about-hero,
  .about-summary-grid,
  .about-detail-preview,
  .about-standard-hub-layout,
  .about-standard-feature {
    grid-template-columns: 1fr;
  }

  .about-hero-proof,
  .about-service-grid,
  .about-standard-band {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-action-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .about-platform-panel {
    border-top: 1px solid rgba(132, 149, 176, 0.18);
    border-left: 0;
    padding-top: 22px;
    padding-left: 0;
  }

  .about-platform-capabilities {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-process-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .about-standard-card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-template-rows: none;
  }

  .about-story-band {
    gap: 24px;
  }

  .about-hero {
    min-height: auto;
    background-position: 50% 50%;
  }

  .about-operation-panel {
    position: static;
    width: 100%;
    min-height: auto;
    margin-top: 8px;
  }

  .about-hero-copy {
    padding-bottom: 0;
  }

  .about-operation-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-operation-list div:nth-child(2n + 1) {
    border-left: 0;
  }
}

@media (max-width: 680px) {
  .about-main {
    gap: 16px;
  }

  .about-hero,
  .about-service-section,
  .about-summary-grid article,
  .about-detail-preview article,
  .about-action-row {
    border-radius: 8px;
    padding: 18px;
  }

  .about-hero {
    gap: 16px;
    padding: 22px 16px;
    background-position: 52% 50%;
  }

  .about-hero-copy h1 {
    font-size: 30px;
    line-height: 1.14;
  }

  .about-hero-copy p {
    font-size: 14px;
  }

  .about-hero-copy p,
  .about-summary-grid p,
  .about-service-grid p,
  .about-detail-preview p,
  .about-dialog p,
  .about-dialog li {
    font-size: 14px;
    line-height: 1.65;
  }

  .about-service-grid,
  .about-standard-band {
    grid-template-columns: 1fr;
  }

  .about-story-band {
    padding: 36px 0 26px;
  }

  .about-story-copy h2 {
    font-size: 34px;
  }

  .about-story-copy p {
    font-size: 15px;
    line-height: 1.66;
  }

  .about-story-steps,
  .about-platform-capabilities,
  .about-process-row,
  .about-standard-subtopics,
  .about-standard-card-grid {
    grid-template-columns: 1fr;
  }

  .about-platform-section {
    gap: 16px;
    padding: 34px 0 18px;
  }

  .about-platform-panel {
    gap: 12px;
    padding-top: 18px;
  }

  .about-platform-panel-head strong {
    font-size: 21px;
  }

  .about-platform-flow {
    grid-template-columns: 1fr;
  }

  .about-platform-flow div,
  .about-platform-flow div:nth-child(2n + 1),
  .about-platform-flow div:nth-child(-n + 2) {
    min-height: auto;
    border-left: 0;
    border-top: 1px solid rgba(132, 149, 176, 0.16);
  }

  .about-platform-flow div:first-child {
    border-top: 0;
  }

  .about-platform-ledger div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .about-platform-capabilities article {
    min-height: auto;
    padding: 18px;
  }

  .about-story-media {
    aspect-ratio: 16 / 11;
  }

  .about-story-steps article {
    min-height: auto;
    align-content: start;
    padding: 18px;
  }

  .about-hierarchy-section {
    gap: 16px;
  }

  .about-standard-feature {
    min-height: auto;
    gap: 18px;
    padding: 20px;
  }

  .about-standard-feature h3 {
    font-size: 27px;
  }

  .about-standard-subtopics {
    gap: 9px;
    border-radius: 8px;
  }

  .about-standard-subtopics button {
    min-height: 84px;
    border-left: 1px solid rgba(132, 149, 176, 0.18);
    border-top: 1px solid rgba(132, 149, 176, 0.18);
    padding: 14px;
  }

  .about-standard-subtopics button:first-child {
    border-top: 0;
  }

  .about-standard-card-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    gap: 14px;
    border-top: 0;
  }

  .about-standard-card {
    min-height: 112px;
    border-left: 1px solid rgba(132, 149, 176, 0.18);
    border-top: 1px solid rgba(132, 149, 176, 0.18);
  }

  .about-hero-proof,
  .about-operation-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .about-hero-proof div {
    border-radius: 10px;
    padding: 10px;
  }

  .about-hero-proof strong {
    font-size: 19px;
  }

  .about-hero-copy > span {
    box-sizing: border-box;
    width: 100%;
  }

  .about-operation-panel {
    grid-template-rows: 164px;
    min-height: auto;
    border-radius: 8px;
    padding: 10px;
  }

  .about-operation-badge {
    left: 10px;
    right: 10px;
    bottom: 10px;
  }

  .about-operation-list {
    display: none;
  }

  .about-section-head h2,
  .about-dialog h2 {
    font-size: 24px;
  }

  .about-summary-grid h2,
  .about-detail-preview h2,
  .about-action-row strong {
    font-size: 20px;
  }

  .about-dialog-backdrop {
    padding: 12px;
  }

  .about-dialog {
    max-height: calc(100vh - 24px);
    border-radius: 8px;
    padding: 22px;
  }

  .about-dialog-close {
    width: 34px;
    height: 34px;
    font-size: 22px;
  }
}

@media (max-width: 360px) {
  .about-hero-copy h1 {
    font-size: 28px;
  }

  .about-hero-copy p {
    font-size: 14px;
  }
}

/* VERAX About page narrative */
.about-main {
  gap: 34px;
}

.about-hero {
  position: relative;
  min-height: min(720px, calc(100vh - 116px));
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 470px);
  align-items: end;
  gap: 28px;
  overflow: hidden;
  border: 0;
  border-radius: 8px;
  padding: 48px;
  color: #fff;
  background: #07182c;
  box-shadow: 0 22px 54px rgba(24, 35, 51, 0.12);
}

.about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(2, 8, 18, 0.86) 0, rgba(2, 8, 18, 0.62) 44%, rgba(2, 8, 18, 0.22) 100%),
    linear-gradient(180deg, rgba(2, 8, 18, 0.2) 0, rgba(2, 8, 18, 0.72) 100%);
  pointer-events: none;
}

.about-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 42%;
}

.about-hero-copy,
.about-route-panel,
.about-hero-proof {
  position: relative;
  z-index: 2;
}

.about-hero-copy {
  max-width: 720px;
  align-content: end;
  gap: 18px;
  color: #fff;
}

.about-hero-copy > span {
  border-color: rgba(255, 255, 255, 0.18);
  color: rgba(232, 244, 255, 0.86);
  background: rgba(8, 22, 38, 0.42);
  backdrop-filter: blur(12px);
}

.about-hero-copy h1 {
  max-width: 720px;
  color: #fff;
  font-size: 48px;
  line-height: 1.08;
  text-shadow: 0 3px 22px rgba(0, 0, 0, 0.24);
}

.about-hero-copy p {
  max-width: 620px;
  color: rgba(236, 244, 255, 0.84);
  font-size: 18px;
  line-height: 1.65;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.2);
}

.about-hero-actions a,
.about-hero-actions button {
  min-height: 44px;
  border-radius: 8px;
}

.about-hero-actions a {
  background: #0f8b7c;
  box-shadow: 0 16px 34px rgba(15, 139, 124, 0.26);
}

.about-hero-actions button {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}

.about-route-panel {
  align-self: end;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-left: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  padding: 18px;
  background: rgba(7, 20, 35, 0.62);
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(16px);
}

.about-route-panel .about-platform-panel-head span {
  color: rgba(159, 235, 223, 0.9);
}

.about-route-panel .about-platform-panel-head strong {
  color: #fff;
  font-size: 22px;
}

.about-route-comparison {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.about-route-comparison div {
  min-width: 0;
  display: grid;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.08);
}

.about-route-comparison b {
  color: #fff;
  font-size: 14px;
  line-height: 1.25;
}

.about-route-comparison ol {
  display: grid;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.about-route-comparison li {
  min-height: 26px;
  display: flex;
  align-items: center;
  border-radius: 8px;
  padding: 0 9px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.09);
  font-size: 12px;
  font-weight: 780;
}

.about-route-comparison small {
  color: rgba(232, 244, 255, 0.68);
  font-size: 12px;
  line-height: 1.5;
}

.about-hero-proof {
  grid-column: 1 / -1;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.about-hero-proof div {
  min-height: 108px;
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(7, 20, 35, 0.58);
  backdrop-filter: blur(14px);
}

.about-hero-proof strong {
  color: #fff;
  font-size: 18px;
  line-height: 1.2;
}

.about-hero-proof span {
  color: rgba(232, 244, 255, 0.68);
  font-size: 12px;
}

.about-trust-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.about-work-section {
  padding: 36px 0 18px;
  align-items: stretch;
}

.about-work-section .about-story-copy {
  align-content: center;
}

.about-work-section .about-story-copy h2 {
  font-size: 48px;
  line-height: 1.08;
}

.about-story-media {
  border-radius: 8px;
}

.about-work-steps {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.about-work-steps article {
  min-height: 190px;
}

.about-standard-card-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.about-standard-card span {
  border-radius: 8px;
}

.about-standard-card:nth-child(4) span {
  color: #7c3aed;
  background: #f0ebff;
}

.about-belief-row {
  align-items: flex-end;
  border-radius: 8px;
}

.about-belief-row > div:first-child {
  max-width: 780px;
}

.about-belief-row p {
  margin: 0;
  color: #5f6b7d;
  font-size: 15px;
  line-height: 1.68;
}

.about-dialog {
  border-radius: 8px;
}

@media (max-width: 1120px) {
  .about-work-steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .about-standard-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .about-hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding: 36px;
  }

  .about-route-panel {
    align-self: stretch;
    padding-left: 18px;
  }

  .about-hero-proof,
  .about-trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-work-section .about-story-copy h2 {
    font-size: 38px;
  }
}

@media (max-width: 680px) {
  .about-main {
    gap: 20px;
  }

  .about-hero {
    gap: 18px;
    padding: 24px 16px;
  }

  .about-hero::before {
    background:
      linear-gradient(180deg, rgba(2, 8, 18, 0.82) 0, rgba(2, 8, 18, 0.62) 54%, rgba(2, 8, 18, 0.82) 100%),
      linear-gradient(90deg, rgba(2, 8, 18, 0.36), rgba(2, 8, 18, 0.08));
  }

  .about-hero-bg {
    object-position: 44% center;
  }

  .about-hero-copy h1 {
    font-size: 31px;
    line-height: 1.14;
  }

  .about-hero-copy p {
    font-size: 14px;
    line-height: 1.58;
  }

  .about-hero-proof,
  .about-trust-grid,
  .about-work-steps,
  .about-standard-card-grid {
    grid-template-columns: 1fr;
  }

  .about-route-comparison {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .about-route-comparison div {
    padding: 10px;
  }

  .about-route-comparison li {
    min-height: 24px;
    padding: 0 7px;
    font-size: 11px;
  }

  .about-route-comparison div:nth-child(2) small {
    display: block;
    padding-right: 58px;
  }

  .about-hero-proof div,
  .about-work-steps article {
    min-height: auto;
  }

  .about-work-section .about-story-copy h2 {
    font-size: 30px;
  }

  .about-belief-row {
    align-items: flex-start;
  }
}

/* VERAX scroll-led about page */
.verax-about-page {
  display: grid;
  gap: 0;
  color: #172033;
  padding-top: 18px;
  padding-bottom: 72px;
}

.verax-about-section {
  min-height: min(660px, calc(100svh - 96px));
  display: grid;
  align-content: center;
  gap: 32px;
  border-top: 1px solid rgba(132, 149, 176, 0.2);
  padding: 76px 0;
}

.verax-about-section:first-child {
  border-top: 0;
}

.verax-story-section {
  min-height: min(720px, calc(100svh - 84px));
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.56fr);
  align-items: center;
  gap: 48px;
  padding-top: 66px;
  padding-bottom: 82px;
}

.verax-section-copy,
.verax-story-points,
.verax-flow-line,
.verax-featured-head,
.verax-vehicle-grid,
.verax-advantage-grid,
.verax-service-grid,
.verax-cooperation-strip,
.verax-tech-grid,
.verax-entry-actions {
  min-width: 0;
  display: grid;
}

.verax-section-copy {
  max-width: 820px;
  gap: 16px;
}

.verax-section-copy > span,
.verax-story-points b,
.verax-vehicle-card span,
.verax-advantage-grid span,
.verax-cooperation-strip span {
  width: fit-content;
  max-width: 100%;
  color: #174ea6;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.verax-section-copy > span {
  border-radius: 8px;
  padding: 7px 11px;
  background: rgba(47, 109, 246, 0.1);
}

.verax-section-copy h1,
.verax-section-copy h2,
.verax-flow-line strong,
.verax-story-points strong,
.verax-vehicle-card h3,
.verax-service-grid strong,
.verax-tech-grid strong {
  margin: 0;
  color: #111827;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.verax-section-copy h1 {
  max-width: 800px;
  font-size: 58px;
  line-height: 1.08;
  font-weight: 900;
}

.verax-section-copy h2 {
  max-width: 700px;
  font-size: 36px;
  line-height: 1.16;
  font-weight: 880;
}

.verax-section-copy p,
.verax-story-points p,
.verax-flow-line p,
.verax-vehicle-card p,
.verax-advantage-grid p,
.verax-service-grid p,
.verax-partner-section p {
  margin: 0;
  color: #5f6b7d;
  font-size: 16px;
  line-height: 1.72;
  overflow-wrap: anywhere;
}

.verax-story-section .verax-section-copy p {
  max-width: 700px;
  color: #425166;
  font-size: 18px;
  line-height: 1.72;
}

.verax-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 6px;
}

.verax-hero-actions a,
.verax-entry-actions a,
.verax-text-link {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 0 18px;
  text-decoration: none;
  font-weight: 900;
  line-height: 1.2;
}

.verax-hero-actions a:first-child,
.verax-entry-actions a:first-child {
  color: #fff;
  background: #174ea6;
}

.verax-hero-actions a:nth-child(2),
.verax-entry-actions a:nth-child(2),
.verax-text-link {
  color: #174ea6;
  background: #edf4ff;
  border: 1px solid rgba(23, 78, 166, 0.16);
}

.verax-story-points {
  gap: 12px;
}

.verax-story-points article {
  min-width: 0;
  display: grid;
  gap: 8px;
  border: 1px solid rgba(132, 149, 176, 0.18);
  border-left: 4px solid #0f8f7f;
  border-radius: 8px;
  padding: 18px;
  background: #fff;
  box-shadow: 0 14px 32px rgba(24, 35, 51, 0.06);
}

.verax-story-points article:nth-child(2) {
  border-left-color: #174ea6;
}

.verax-story-points article:nth-child(3) {
  border-left-color: #b7791f;
}

.verax-story-points b {
  color: #0f8f7f;
  font-size: 12px;
}

.verax-story-points article:nth-child(2) b {
  color: #174ea6;
}

.verax-story-points article:nth-child(3) b {
  color: #b7791f;
}

.verax-story-points strong {
  font-size: 22px;
  line-height: 1.18;
}

.verax-flow-section,
.verax-advantages-section,
.verax-service-section,
.verax-partner-section {
  grid-template-columns: minmax(0, 0.42fr) minmax(0, 1fr);
  align-items: center;
}

.verax-flow-line {
  position: relative;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  overflow: visible;
}

.verax-flow-line::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 31px;
  height: 2px;
  background: linear-gradient(90deg, #0f8f7f, #174ea6, #b7791f);
  opacity: 0.36;
}

.verax-flow-line article {
  position: relative;
  min-height: 188px;
  display: grid;
  align-content: start;
  gap: 12px;
  border: 0;
  padding: 0;
}

.verax-flow-line b {
  position: relative;
  z-index: 1;
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: #174ea6;
  font-size: 14px;
  line-height: 1;
  box-shadow: 0 16px 34px rgba(23, 78, 166, 0.18);
}

.verax-flow-line strong {
  max-width: 150px;
  color: #172033;
  font-size: 18px;
  line-height: 1.28;
}

.verax-flow-line p {
  max-width: 155px;
  font-size: 14px;
  line-height: 1.55;
}

.verax-featured-section {
  align-content: start;
}

.verax-featured-head {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 24px;
}

.verax-text-link {
  white-space: nowrap;
}

.verax-vehicle-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.verax-vehicle-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(132, 149, 176, 0.2);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(24, 35, 51, 0.08);
}

.verax-vehicle-card img {
  width: 100%;
  height: 300px;
  aspect-ratio: 16 / 11;
  display: block;
  object-fit: cover;
  background: #edf2f7;
}

.verax-vehicle-card div {
  display: grid;
  gap: 10px;
  padding: 18px;
}

.verax-vehicle-card span {
  color: #0f8f7f;
}

.verax-vehicle-card h3 {
  font-size: 23px;
  line-height: 1.15;
  font-weight: 900;
}

.verax-vehicle-card p {
  font-size: 15px;
}

.verax-advantage-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid rgba(132, 149, 176, 0.18);
  border-bottom: 1px solid rgba(132, 149, 176, 0.18);
}

.verax-advantage-grid article {
  min-width: 0;
  min-height: 260px;
  display: grid;
  align-content: center;
  gap: 14px;
  border: 0;
  border-left: 1px solid rgba(132, 149, 176, 0.18);
  border-radius: 0;
  padding: 28px;
  background: transparent;
}

.verax-advantage-grid article:first-child {
  border-left: 0;
}

.verax-advantage-grid span {
  color: #111827;
  font-size: 21px;
  line-height: 1.2;
}

.verax-advantage-grid p {
  font-size: 15px;
  line-height: 1.7;
}

.verax-service-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.verax-service-grid article {
  min-width: 0;
  min-height: 190px;
  display: grid;
  align-content: center;
  gap: 12px;
  border: 1px solid rgba(132, 149, 176, 0.18);
  border-radius: 8px;
  padding: 22px;
  background: #fff;
}

.verax-service-grid strong {
  font-size: 21px;
  line-height: 1.2;
}

.verax-service-grid p {
  font-size: 15px;
}

.verax-cooperation-strip {
  grid-column: 2;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: -10px;
}

.verax-cooperation-strip span {
  min-height: 46px;
  display: flex;
  align-items: center;
  border-radius: 8px;
  padding: 0 16px;
  color: #172033;
  background: #f4f7fb;
  font-size: 14px;
}

.verax-partner-section {
  min-height: 460px;
  border-top-color: rgba(15, 143, 127, 0.22);
}

.verax-tech-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.verax-tech-grid article {
  min-height: 118px;
  display: grid;
  align-content: center;
  border: 1px solid rgba(132, 149, 176, 0.18);
  border-radius: 8px;
  padding: 20px;
  background: #f8fbff;
}

.verax-tech-grid strong {
  font-size: 20px;
  line-height: 1.25;
}

.verax-entry-section {
  min-height: auto;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  border-top: 0;
  border-radius: 8px;
  padding: 38px;
  background: #111827;
}

.verax-entry-section .verax-section-copy > span,
.verax-entry-section .verax-section-copy h2 {
  color: #fff;
}

.verax-entry-section .verax-section-copy > span {
  background: rgba(255, 255, 255, 0.12);
}

.verax-entry-actions {
  grid-template-columns: repeat(2, auto);
  gap: 10px;
}

@media (max-width: 1080px) {
  .verax-flow-section,
  .verax-advantages-section,
  .verax-service-section,
  .verax-partner-section {
    grid-template-columns: 1fr;
  }

  .verax-flow-line,
  .verax-advantage-grid,
  .verax-service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .verax-cooperation-strip {
    grid-column: auto;
  }

  .verax-advantage-grid article:nth-child(2n + 1) {
    border-left: 0;
  }

  .verax-advantage-grid article:nth-child(n + 3) {
    border-top: 1px solid rgba(132, 149, 176, 0.18);
  }
}

@media (max-width: 820px) {
  .verax-about-section,
  .verax-story-section,
  .verax-entry-section {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .verax-section-copy h1 {
    font-size: 46px;
  }

  .verax-section-copy h2 {
    font-size: 32px;
  }

  .verax-featured-head,
  .verax-entry-section {
    align-items: start;
  }

  .verax-vehicle-grid {
    grid-template-columns: 1fr;
  }

  .verax-vehicle-card img {
    height: 320px;
  }
}

@media (max-width: 680px) {
  .verax-about-page {
    gap: 12px;
    padding-top: 14px;
    padding-bottom: 48px;
  }

  .verax-about-section {
    gap: 20px;
    padding: 42px 0;
  }

  .verax-story-section {
    padding-top: 36px;
    padding-bottom: 42px;
  }

  .verax-section-copy h1 {
    font-size: 34px;
    line-height: 1.12;
  }

  .verax-section-copy h2 {
    font-size: 28px;
    line-height: 1.16;
  }

  .verax-section-copy p,
  .verax-story-points p,
  .verax-flow-line p,
  .verax-vehicle-card p,
  .verax-advantage-grid p,
  .verax-service-grid p,
  .verax-partner-section p {
    font-size: 14px;
    line-height: 1.68;
  }

  .verax-flow-line,
  .verax-featured-head,
  .verax-advantage-grid,
  .verax-service-grid,
  .verax-cooperation-strip,
  .verax-tech-grid,
  .verax-entry-actions {
    grid-template-columns: 1fr;
  }

  .verax-flow-line::before {
    display: none;
  }

  .verax-flow-line article,
  .verax-flow-line article:nth-child(3) {
    min-height: auto;
    grid-template-columns: 58px minmax(0, 1fr);
    align-items: center;
    border-top: 0;
    padding: 0;
  }

  .verax-flow-line b {
    width: 58px;
    height: 58px;
  }

  .verax-flow-line p {
    grid-column: 2;
    max-width: none;
  }

  .verax-advantage-grid article {
    min-height: 160px;
    border-left: 0;
    border-top: 1px solid rgba(132, 149, 176, 0.18);
    padding: 20px 0;
  }

  .verax-advantage-grid article:first-child {
    border-top: 0;
  }

  .verax-service-grid article,
  .verax-entry-section {
    padding: 18px;
  }

  .verax-hero-actions a,
  .verax-entry-actions a {
    width: 100%;
  }

  .verax-vehicle-card img {
    height: 240px;
  }
}

/* VERAX AI about page refresh */
.next-main.verax-about-page {
  width: 100%;
  max-width: none;
  display: block;
  padding: 0 0 56px;
  color: #172033;
  background: #f7f9fb;
}

.verax-about-page,
.verax-about-section,
.verax-about-section * {
  letter-spacing: 0;
}

.verax-about-section {
  position: relative;
  min-height: auto;
  display: block;
  overflow: hidden;
  border-top: 1px solid #dfe5ec;
  padding: 0;
  background: #f7f9fb;
}

.verax-about-section:first-child {
  border-top: 0;
}

.verax-section-inner {
  position: relative;
  z-index: 1;
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
  padding: 104px 0;
}

.verax-section-copy {
  max-width: 760px;
  display: grid;
  gap: 16px;
}

.verax-section-copy > span,
.verax-vehicle-card span,
.verax-advantage-grid span,
.verax-cooperation-strip span,
.verax-standard-grid b {
  width: fit-content;
  max-width: 100%;
  border-radius: 2px;
  padding: 6px 9px;
  color: #0058be;
  background: rgba(33, 112, 228, 0.1);
  font-size: 12px;
  font-weight: 850;
  line-height: 1.1;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.verax-section-copy h1,
.verax-section-copy h2,
.verax-flow-line strong,
.verax-price-card strong,
.verax-price-notes strong,
.verax-position-cards strong,
.verax-platform-panel-head strong,
.verax-platform-flow strong,
.verax-standard-grid strong,
.verax-partner-card strong {
  margin: 0;
  color: #191c1e;
  font-weight: 820;
  line-height: 1.12;
  overflow-wrap: anywhere;
}

.verax-section-copy h1 {
  max-width: 760px;
  font-size: 52px;
}

.verax-section-copy h2 {
  max-width: 720px;
  font-size: 36px;
}

.verax-section-copy p,
.verax-hero-proof span,
.verax-flow-line p,
.verax-price-card p,
.verax-price-card span,
.verax-price-notes p,
.verax-position-cards p,
.verax-platform-flow p,
.verax-standard-grid li,
.verax-partners-section p,
.verax-entry-section p {
  margin: 0;
  color: #536071;
  font-size: 16px;
  line-height: 1.65;
  overflow-wrap: anywhere;
}

.verax-story-section {
  min-height: calc(100svh - 132px);
  background: #eef3f8;
}

.verax-hero-image,
.verax-hero-shade {
  position: absolute;
  inset: 0;
}

.verax-hero-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.verax-hero-shade {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(247, 249, 251, 0.98) 0%, rgba(247, 249, 251, 0.92) 36%, rgba(247, 249, 251, 0.52) 63%, rgba(247, 249, 251, 0.08) 100%),
    linear-gradient(180deg, rgba(247, 249, 251, 0.72) 0%, rgba(247, 249, 251, 0.08) 45%, rgba(247, 249, 251, 0.9) 100%);
}

.verax-hero-inner {
  min-height: calc(100svh - 132px);
  display: grid;
  align-content: center;
  gap: 30px;
  padding-top: 88px;
  padding-bottom: 56px;
}

.verax-hero-copy p {
  max-width: 650px;
  color: #3f4a59;
  font-size: 18px;
  line-height: 1.7;
}

.verax-hero-actions,
.verax-entry-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.verax-hero-actions a,
.verax-entry-actions a,
.verax-text-link {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  padding: 0 22px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 850;
  line-height: 1.2;
}

.verax-hero-actions a:first-child,
.verax-entry-actions a:first-child {
  color: #fff;
  background: #0058be;
  box-shadow: 0 14px 30px rgba(0, 88, 190, 0.24);
}

.verax-hero-actions a:nth-child(2),
.verax-entry-actions a:nth-child(2),
.verax-text-link {
  border: 1px solid #aeb8c6;
  color: #191c1e;
  background: rgba(255, 255, 255, 0.84);
}

.verax-hero-actions a::after,
.verax-entry-actions a::after {
  content: "→";
  margin-left: 8px;
  font-weight: 900;
}

.verax-hero-proof {
  width: min(820px, 100%);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.verax-hero-proof div {
  min-width: 0;
  min-height: 96px;
  display: grid;
  align-content: center;
  gap: 8px;
  border: 1px solid rgba(198, 198, 205, 0.72);
  border-radius: 8px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(12px);
  box-shadow: 0 20px 40px rgba(25, 28, 30, 0.06);
}

.verax-hero-proof strong {
  color: #001c39;
  font-size: 20px;
  line-height: 1.15;
}

.verax-hero-proof span {
  font-size: 13px;
  line-height: 1.55;
}

.verax-pricing-section,
.verax-position-section {
  background: #f2f4f6;
}

.verax-section-heading {
  margin: 0 auto;
  text-align: center;
  justify-items: center;
}

.verax-price-layout {
  width: min(920px, 100%);
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1fr);
  align-items: center;
  gap: 42px;
  margin: 56px auto 0;
}

.verax-price-card {
  min-height: 250px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 14px;
  border: 1px solid #dfe5ec;
  border-radius: 4px;
  padding: 34px;
  text-align: center;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 22px 52px rgba(25, 28, 30, 0.05);
}

.verax-price-card strong {
  color: #0058be;
  font-size: 80px;
  font-weight: 900;
  line-height: 0.96;
}

.verax-price-card span {
  color: #191c1e;
  font-weight: 850;
}

.verax-price-card p {
  max-width: 320px;
  font-size: 14px;
}

.verax-price-notes {
  display: grid;
  gap: 26px;
}

.verax-price-notes article {
  min-width: 0;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}

.verax-price-notes b {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: #fff;
  background: #2170e4;
  font-size: 20px;
  line-height: 1;
}

.verax-price-notes div {
  min-width: 0;
  display: grid;
  gap: 8px;
}

.verax-price-notes strong {
  font-size: 20px;
}

.verax-flow-section {
  background: #fff;
}

.verax-flow-line {
  position: relative;
  width: min(1080px, 100%);
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 20px;
  margin: 68px auto 0;
  overflow: visible;
}

.verax-flow-line::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 28px;
  height: 2px;
  background: #c6c6cd;
}

.verax-flow-line article {
  position: relative;
  min-width: 0;
  min-height: 178px;
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 14px;
  padding: 0;
  text-align: center;
  background: transparent;
}

.verax-flow-line b {
  position: relative;
  z-index: 1;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: #fff;
  background: #0058be;
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 14px 28px rgba(0, 88, 190, 0.2);
}

.verax-flow-line strong {
  color: #191c1e;
  font-size: 19px;
}

.verax-flow-line p {
  max-width: 170px;
  font-size: 14px;
  line-height: 1.55;
}

.verax-position-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.05fr);
  gap: 58px;
  align-items: center;
}

.verax-position-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.verax-position-cards article {
  min-width: 0;
  display: grid;
  gap: 10px;
  border: 1px solid #dfe5ec;
  border-radius: 4px;
  padding: 22px;
  background: #fff;
}

.verax-position-cards strong {
  color: #0058be;
  font-size: 20px;
}

.verax-platform-panel {
  min-width: 0;
  display: grid;
  gap: 22px;
  border: 1px solid rgba(0, 88, 190, 0.16);
  border-radius: 8px;
  padding: 28px;
  background:
    linear-gradient(135deg, rgba(0, 88, 190, 0.1), transparent 44%),
    #fff;
  box-shadow: 0 26px 58px rgba(25, 28, 30, 0.1);
}

.verax-platform-panel-head {
  display: grid;
  gap: 10px;
  border-bottom: 1px solid #dfe5ec;
  padding-bottom: 20px;
}

.verax-platform-panel-head span {
  width: fit-content;
  border-radius: 2px;
  padding: 6px 9px;
  color: #0058be;
  background: rgba(33, 112, 228, 0.1);
  font-size: 12px;
  font-weight: 850;
  line-height: 1.1;
  text-transform: uppercase;
}

.verax-platform-panel-head strong {
  max-width: 520px;
  color: #001c39;
  font-size: 28px;
}

.verax-platform-flow {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.verax-platform-flow article {
  min-width: 0;
  display: grid;
  gap: 10px;
  border: 1px solid #dfe5ec;
  border-radius: 6px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.78);
}

.verax-platform-flow b {
  width: 34px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 4px;
  color: #fff;
  background: #0058be;
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
}

.verax-platform-flow strong {
  color: #191c1e;
  font-size: 18px;
}

.verax-platform-flow p {
  font-size: 14px;
  line-height: 1.55;
}

.verax-standard-section {
  background: #fff;
}

.verax-standard-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px;
  margin-top: 64px;
}

.verax-standard-grid article {
  min-width: 0;
  display: grid;
  align-content: start;
  gap: 16px;
  border-left: 2px solid #2170e4;
  padding-left: 22px;
}

.verax-standard-grid b {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 36px;
  padding: 0;
  color: #fff;
  background: #0058be;
}

.verax-standard-grid strong {
  font-size: 22px;
}

.verax-standard-grid ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.verax-standard-grid li {
  position: relative;
  padding-left: 18px;
  font-size: 15px;
}

.verax-standard-grid li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.82em;
  width: 9px;
  height: 2px;
  background: #2170e4;
}

.verax-partners-section {
  min-height: auto;
  background:
    linear-gradient(180deg, #e0e3e5 0%, #f2f4f6 100%);
}

.verax-partners-inner {
  display: grid;
  gap: 42px;
  justify-items: center;
  padding-top: 82px;
  padding-bottom: 86px;
}

.verax-partners-grid {
  width: min(1040px, 100%);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.verax-partner-card {
  position: relative;
  min-width: 0;
  min-height: 132px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(118, 119, 125, 0.18);
  border-radius: 4px;
  padding: 24px;
  overflow: hidden;
  text-align: center;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 22px 50px rgba(25, 28, 30, 0.06);
}

.verax-partner-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(33, 112, 228, 0.08), transparent 42%),
    linear-gradient(90deg, transparent 0 48%, rgba(118, 119, 125, 0.1) 48% 49%, transparent 49% 100%);
  opacity: 0;
  pointer-events: none;
}

.verax-partner-card-active {
  min-height: 156px;
  border-color: rgba(0, 88, 190, 0.22);
  background: #fff;
  box-shadow: 0 28px 62px rgba(25, 28, 30, 0.1);
}

.verax-partner-card-active::before {
  opacity: 1;
}

.verax-partner-card strong {
  position: relative;
  color: #191c1e;
  font-size: 30px;
  font-weight: 880;
  line-height: 1.1;
}

.verax-partner-card-placeholder {
  border-style: dashed;
  color: #7a8492;
  background: rgba(255, 255, 255, 0.42);
  box-shadow: none;
}

.verax-partner-card-placeholder span {
  position: relative;
  width: 44px;
  height: 2px;
  display: block;
  background: rgba(0, 88, 190, 0.24);
}

.verax-partner-card-placeholder span::before,
.verax-partner-card-placeholder span::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 7px;
  height: 7px;
  border: 1px solid rgba(0, 88, 190, 0.28);
  border-radius: 50%;
  transform: translateY(-50%);
}

.verax-partner-card-placeholder span::before {
  left: -15px;
}

.verax-partner-card-placeholder span::after {
  right: -15px;
}

.verax-entry-section {
  margin: 0;
  border-top: 0;
  background: #0f172a;
}

.verax-entry-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: end;
  padding-top: 72px;
  padding-bottom: 72px;
}

.verax-entry-section .verax-section-copy > span {
  color: #dbeafe;
  background: rgba(59, 130, 246, 0.2);
}

.verax-entry-section .verax-section-copy h2,
.verax-entry-section p {
  color: #fff;
}

.verax-entry-section p {
  color: rgba(255, 255, 255, 0.68);
}

.verax-entry-actions {
  justify-content: end;
}

.verax-entry-actions a:nth-child(2) {
  border-color: rgba(255, 255, 255, 0.28);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

@media (max-width: 1080px) {
  .verax-section-inner {
    padding: 82px 0;
  }

  .verax-position-inner,
  .verax-entry-inner {
    grid-template-columns: 1fr;
  }

  .verax-flow-line {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .verax-flow-line::before {
    display: none;
  }

  .verax-standard-grid,
  .verax-partners-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .verax-entry-actions {
    justify-content: start;
  }
}

@media (max-width: 760px) {
  .next-main.verax-about-page {
    padding-bottom: 34px;
  }

  .verax-section-inner {
    width: min(1280px, calc(100% - 32px));
    padding: 58px 0;
  }

  .verax-hero-inner {
    min-height: auto;
    padding-top: 56px;
    padding-bottom: 38px;
  }

  .verax-hero-shade {
    background:
      linear-gradient(180deg, rgba(247, 249, 251, 0.98) 0%, rgba(247, 249, 251, 0.88) 58%, rgba(247, 249, 251, 0.96) 100%),
      linear-gradient(90deg, rgba(247, 249, 251, 0.95), rgba(247, 249, 251, 0.45));
  }

  .verax-section-copy h1 {
    font-size: 34px;
    line-height: 1.14;
  }

  .verax-section-copy h2 {
    font-size: 28px;
  }

  .verax-hero-copy p {
    font-size: 16px;
  }

  .verax-price-layout,
  .verax-flow-line,
  .verax-position-cards,
  .verax-standard-grid,
  .verax-partners-grid {
    grid-template-columns: 1fr;
  }

  .verax-partners-inner {
    padding-top: 56px;
    padding-bottom: 58px;
  }

  .verax-partners-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .verax-partner-card {
    min-height: 112px;
    padding: 16px;
  }

  .verax-partner-card-active {
    min-height: 126px;
  }

  .verax-partner-card strong {
    font-size: 24px;
  }

  .verax-hero-proof {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .verax-hero-proof div {
    min-height: 76px;
    padding: 12px 10px;
  }

  .verax-hero-proof strong {
    font-size: 15px;
  }

  .verax-hero-proof span {
    display: none;
  }

  .verax-price-layout {
    gap: 28px;
    margin-top: 36px;
  }

  .verax-price-card {
    min-height: 210px;
    padding: 26px 20px;
  }

  .verax-price-card strong {
    font-size: 58px;
  }

  .verax-flow-line {
    gap: 18px;
    margin-top: 42px;
  }

  .verax-flow-line article {
    min-height: auto;
    grid-template-columns: 56px minmax(0, 1fr);
    justify-items: start;
    align-items: center;
    text-align: left;
  }

  .verax-flow-line p {
    grid-column: 2;
    max-width: none;
  }

  .verax-platform-panel {
    padding: 20px;
  }

  .verax-platform-flow {
    grid-template-columns: 1fr;
  }

  .verax-entry-inner {
    padding-top: 54px;
    padding-bottom: 54px;
  }

  .verax-hero-actions a,
  .verax-entry-actions a {
    width: 100%;
  }
}

.home-about-nav {
  position: sticky;
  top: 82px;
  z-index: 12;
  display: flex;
  gap: 8px;
  overflow-x: auto;
  margin-top: 16px;
  border: 1px solid rgba(167, 181, 204, 0.28);
  border-radius: 8px;
  padding: 8px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 14px 34px rgba(24, 35, 51, 0.08);
  backdrop-filter: blur(14px);
  scrollbar-width: none;
}

.home-about-nav::-webkit-scrollbar {
  display: none;
}

.home-about-nav a {
  flex: 0 0 auto;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0 13px;
  color: #3b4656;
  background: transparent;
  text-decoration: none;
  font-size: 13px;
  font-weight: 820;
  white-space: nowrap;
}

.home-about-nav a:hover {
  color: var(--next-green-dark);
  background: #edf4ff;
}

.home-about-section,
.home-standard-section,
.home-feedback-section,
.home-two-column-standards {
  margin-top: 34px;
}

.home-about-section,
.home-standard-section,
.home-feedback-section {
  display: grid;
  gap: 20px;
  padding-top: 10px;
}

.home-section-head {
  display: grid;
  gap: 8px;
  max-width: 900px;
}

.home-section-head span {
  color: var(--next-green-dark);
  font-size: 13px;
  font-weight: 880;
}

.home-section-head h2 {
  margin: 0;
  color: #141b26;
  font-size: 34px;
  line-height: 1.18;
}

.home-section-head.compact h2 {
  font-size: 28px;
}

.home-company-layout,
.home-pricing-layout,
.home-feedback-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  gap: 20px;
  align-items: start;
}

.home-story {
  display: grid;
  gap: 12px;
  padding: 2px 0 2px 18px;
  border-left: 4px solid #2f6df6;
}

.home-story p,
.home-service-note,
.home-pricing-rules p,
.home-feedback-layout p {
  margin: 0;
  color: #536173;
  font-size: 15px;
  line-height: 1.85;
}

.home-milestones,
.home-principle-grid,
.home-standard-grid {
  display: grid;
  gap: 14px;
}

.home-milestones div,
.home-principle-grid article,
.home-standard-grid article,
.home-two-column-standards > article,
.home-pricing-card,
.home-pricing-rules,
.home-feedback-layout ul {
  border: 1px solid rgba(156, 171, 193, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 40px rgba(24, 35, 51, 0.07);
}

.home-milestones div {
  display: grid;
  gap: 6px;
  padding: 18px;
}

.home-milestones span {
  color: #0f8f7f;
  font-size: 28px;
  line-height: 1;
  font-weight: 940;
}

.home-milestones strong,
.home-principle-grid h3,
.home-standard-grid h3 {
  color: #151d2b;
}

.home-milestones strong {
  font-size: 16px;
}

.home-milestones small {
  color: #6c7788;
  font-size: 13px;
  line-height: 1.6;
}

.home-principle-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.home-principle-grid article,
.home-standard-grid article {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 20px;
}

.home-principle-grid article span {
  width: fit-content;
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0 10px;
  color: #0f7a6d;
  background: rgba(15, 143, 127, 0.1);
  font-size: 13px;
  font-weight: 880;
}

.home-principle-grid article:nth-child(2) span {
  color: #1d4ed8;
  background: rgba(47, 109, 246, 0.12);
}

.home-principle-grid article:nth-child(3) span {
  color: #a45a13;
  background: rgba(255, 199, 44, 0.24);
}

.home-principle-grid h3,
.home-standard-grid h3 {
  margin: 0;
  font-size: 19px;
  line-height: 1.28;
}

.home-principle-grid p,
.home-standard-grid p {
  margin: 0;
  color: #667085;
  line-height: 1.75;
}

.home-service-note {
  max-width: 980px;
  border-left: 4px solid #0f8f7f;
  padding: 12px 0 12px 16px;
}

.home-standard-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.home-standard-grid article span {
  color: #9aa4b4;
  font-size: 13px;
  font-weight: 900;
}

.home-two-column-standards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.home-two-column-standards > article {
  display: grid;
  gap: 16px;
  align-content: start;
  padding: 22px;
}

.home-check-list,
.home-feedback-layout ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.home-check-list {
  display: grid;
  gap: 10px;
}

.home-check-list li,
.home-feedback-layout li {
  position: relative;
  color: #536173;
  line-height: 1.7;
}

.home-check-list li {
  padding-left: 22px;
}

.home-check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2f6df6;
}

.pricing-section {
  padding: 26px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(20, 27, 38, 0.98), rgba(21, 48, 88, 0.96));
  color: #fff;
}

.pricing-section .home-section-head span,
.pricing-section .home-section-head h2 {
  color: #fff;
}

.home-pricing-layout {
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr);
}

.home-pricing-card,
.home-pricing-rules {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: none;
}

.home-pricing-card {
  display: grid;
  gap: 12px;
  padding: 22px;
}

.home-pricing-card span {
  color: #bfdbfe;
  font-size: 13px;
  font-weight: 880;
}

.home-pricing-card strong {
  color: #fff;
  font-size: 38px;
  line-height: 1.05;
}

.home-pricing-card p,
.home-pricing-rules p {
  color: rgba(255, 255, 255, 0.76);
}

.home-pricing-rules {
  display: grid;
  gap: 12px;
  padding: 22px;
}

.home-feedback-layout {
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
}

.home-feedback-layout ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  overflow: hidden;
}

.home-feedback-layout li {
  min-height: 58px;
  display: flex;
  align-items: center;
  border-right: 1px solid rgba(156, 171, 193, 0.18);
  border-bottom: 1px solid rgba(156, 171, 193, 0.18);
  padding: 13px 16px;
  font-weight: 760;
}

.home-feedback-layout li:nth-child(2n) {
  border-right: 0;
}

.home-feedback-layout li:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.smart-filter,
.next-car-card {
  border: 1px solid var(--next-line);
  background: var(--next-card);
  box-shadow: 0 18px 44px rgba(24, 35, 51, 0.08);
  backdrop-filter: blur(14px);
}

.smart-filter {
  position: relative;
  z-index: 30;
  width: 100%;
  margin: 12px auto 0;
  overflow: visible;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(24, 35, 51, 0.055);
}

.smart-filter:focus-within {
  z-index: 90;
}

.filter-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 16px 10px;
  border-bottom: 1px solid var(--next-line);
}

.filter-head span {
  display: block;
  margin-bottom: 2px;
  color: var(--next-green-dark);
  font-size: 12px;
  font-weight: 850;
}

.filter-head h2 {
  margin: 0;
  font-size: 17px;
}

.filter-head p {
  max-width: 620px;
  margin: 3px 0 0;
  color: #697586;
  font-size: 13px;
  font-weight: 720;
  line-height: 1.36;
}

.filter-head button {
  min-width: 78px;
  min-height: 34px;
  border: 1px solid var(--next-line);
  border-radius: 8px;
  color: #475163;
  background: #fff;
  font-weight: 760;
}

.filter-matrix {
  display: grid;
  grid-template-columns: repeat(4, minmax(148px, 1fr));
  gap: 9px 12px;
  padding: 12px 16px 8px;
}

.customer-sort-panel {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 0 16px 8px;
}

.customer-sort-panel[hidden] {
  display: none;
}

.customer-sort-label {
  flex: 0 0 auto;
  padding-top: 8px;
  color: #8e98a8;
  font-size: 12px;
  font-weight: 820;
}

.customer-sort-options {
  min-width: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.customer-sort-options button {
  min-height: 32px;
  border: 1px solid rgba(143, 157, 177, 0.34);
  border-radius: 999px;
  padding: 0 13px;
  color: #283241;
  background: #fff;
  font-weight: 780;
}

.customer-sort-options button:hover,
.customer-sort-options button:focus-visible {
  border-color: rgba(47, 109, 246, 0.45);
  color: var(--next-green-dark);
}

.customer-sort-options button.active {
  border-color: rgba(47, 109, 246, 0.32);
  color: var(--next-green-dark);
  background: #eaf2ff;
}

.filter-group {
  position: relative;
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: start;
  gap: 5px;
  padding: 0;
  border-bottom: 0;
}

.keyword-group {
  grid-column: span 2;
}

.filter-name {
  color: #8e98a8;
  font-size: 12px;
  font-weight: 820;
}

.filter-name-required {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.filter-required {
  color: #ef4444;
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
}

.filter-error {
  color: #ef4444;
  font-weight: 820;
}

.filter-error {
  font-size: 12px;
  line-height: 1.3;
}

.filter-error[hidden] {
  display: none;
}

.filter-values,
.brand-search-row,
.filter-input-row,
.brand-cloud,
.picked-row,
.source-tabs,
.sort-links {
  display: flex;
  align-items: center;
  gap: 10px;
  overflow-x: auto;
  scrollbar-width: none;
}

.filter-values::-webkit-scrollbar,
.brand-search-row::-webkit-scrollbar,
.filter-input-row::-webkit-scrollbar,
.brand-cloud::-webkit-scrollbar,
.picked-row::-webkit-scrollbar,
.source-tabs::-webkit-scrollbar,
.sort-links::-webkit-scrollbar {
  display: none;
}

.filter-values button {
  min-height: 34px;
  border-radius: 999px;
  padding: 0 12px;
  color: #202938;
  background: transparent;
  white-space: nowrap;
  font-weight: 760;
}

.filter-values button.hot {
  background: #ffc72c;
}

.filter-values button.selected,
.filter-values button.selected-text {
  color: var(--next-green-dark);
  background: #eaf2ff;
  box-shadow: inset 0 0 0 1px rgba(47, 109, 246, 0.32);
}

.filter-input-row input {
  width: 100%;
  min-height: 36px;
  border: 1px solid var(--next-line);
  border-radius: 10px;
  padding: 0 12px;
  outline: none;
  background: #fff;
  color: #202938;
  font-weight: 760;
}

.filter-input-row input:focus {
  border-color: rgba(47, 109, 246, 0.45);
  box-shadow: 0 0 0 3px rgba(47, 109, 246, 0.12);
}

.filter-dropdown,
.filter-select-wrap,
.brand-dropdown {
  position: relative;
  width: 100%;
  min-width: 0;
}

.filter-dropdown.is-open,
.brand-dropdown.is-open {
  z-index: 95;
}

.filter-select {
  width: 100%;
  min-height: 36px;
  border: 1px solid rgba(143, 157, 177, 0.34);
  border-radius: 8px;
  padding: 0 38px 0 12px;
  color: #202938;
  background: #fff;
  box-shadow: 0 6px 14px rgba(24, 35, 51, 0.035);
  font-weight: 780;
  outline: none;
  cursor: pointer;
}

.filter-dropdown::after,
.filter-select-wrap::after,
.brand-dropdown::after,
.brand-select::after {
  content: "";
  position: absolute;
  right: 15px;
  top: 18px;
  width: 8px;
  height: 8px;
  border-right: 2px solid #7a8494;
  border-bottom: 2px solid #7a8494;
  transform: translateY(-65%) rotate(45deg);
  pointer-events: none;
}

.filter-dropdown.is-open::after,
.brand-dropdown.is-open::after {
  transform: translateY(-15%) rotate(225deg);
}

.brand-select:focus,
.filter-combo-input:focus {
  border-color: rgba(47, 109, 246, 0.52);
  box-shadow: 0 0 0 3px rgba(47, 109, 246, 0.12);
}

.filter-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
}

.filter-menu-toggle strong {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #202938;
  font-size: 14px;
}

.filter-combo-input {
  appearance: none;
  text-align: left;
  cursor: text;
}

.filter-combo-input::-webkit-search-cancel-button,
.brand-combo-input::-webkit-search-cancel-button {
  appearance: none;
}

.filter-menu {
  position: absolute;
  left: 0;
  top: calc(100% + 6px);
  z-index: 95;
  width: 100%;
  max-height: 176px;
  display: grid;
  gap: 4px;
  overflow-y: auto;
  border: 1px solid rgba(156, 171, 193, 0.28);
  border-radius: 10px;
  padding: 6px;
  background: #fff;
  box-shadow: 0 12px 26px rgba(24, 35, 51, 0.12);
}

.filter-menu[hidden] {
  display: none;
}

.filter-menu button {
  min-height: 34px;
  border: 0;
  border-radius: 8px;
  padding: 0 10px;
  color: #273244;
  background: transparent;
  text-align: left;
  font-weight: 760;
  cursor: pointer;
  outline: none;
}

.filter-menu button.active,
.filter-menu button:hover {
  color: #1f55d6;
  background: #eef4ff;
}

.filter-menu button:focus-visible {
  box-shadow: 0 0 0 3px rgba(47, 109, 246, 0.12);
}

.filter-menu.is-empty::after,
.brand-menu.is-empty::after {
  min-height: 34px;
  display: grid;
  place-items: center start;
  padding: 0 10px;
  color: #8a95a5;
  font-size: 13px;
  font-weight: 760;
  content: attr(data-empty-text);
}

.filter-menu button:disabled {
  color: #8a95a5;
  cursor: default;
  background: transparent;
}

.brand-select {
  position: relative;
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  grid-template-rows: auto auto;
  column-gap: 8px;
  align-items: center;
  min-height: 42px;
  padding: 5px 36px 5px 9px;
  text-align: left;
  cursor: pointer;
}

.brand-combo-control {
  display: grid;
  grid-template-columns: 26px minmax(0, 1fr);
  column-gap: 8px;
  align-items: center;
  min-height: 36px;
  padding: 0 36px 0 9px;
}

.brand-combo-control.is-empty {
  grid-template-columns: minmax(0, 1fr);
}

.brand-combo-control.is-empty .brand-logo-mark {
  display: none;
}

.brand-combo-input {
  min-width: 0;
  height: 100%;
  border: 0;
  outline: none;
  color: #202938;
  background: transparent;
  cursor: text;
  font: inherit;
  font-size: 13px;
  font-weight: 780;
}

.brand-combo-input::placeholder,
.filter-combo-input::placeholder {
  color: #8a95a5;
}

.brand-combo-control:focus-within {
  border-color: rgba(47, 109, 246, 0.52);
}

.brand-combo-control.is-invalid {
  border-color: rgba(239, 68, 68, 0.72);
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.12);
}

.brand-select .brand-logo-mark {
  grid-row: 1 / 3;
}

.brand-select strong,
.brand-select small,
.brand-option-list button strong,
.brand-option-list button small {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.brand-select strong {
  color: #1d2634;
  font-size: 13px;
  line-height: 1.1;
}

.brand-select small {
  color: #7a8494;
  font-size: 11px;
  font-weight: 760;
}

.brand-logo-mark {
  width: 26px;
  height: 26px;
  flex: 0 0 26px;
  display: inline-grid;
  place-items: center;
  overflow: hidden;
  border-radius: 50%;
  color: #fff;
  background: #111827;
  box-shadow: inset 0 0 0 1px rgba(17, 24, 39, 0.08);
  font-size: 10px;
  font-weight: 900;
}

.brand-logo-mark.has-image {
  color: transparent;
  background: #fff;
}

.brand-logo-mark img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  display: block;
}

.brand-logo-mark.has-image em {
  display: none;
}

.brand-logo-mark em {
  color: #fff;
  font-style: normal;
}

.brand-menu {
  position: absolute;
  left: 0;
  top: calc(100% + 6px);
  z-index: 95;
  width: 100%;
  display: grid;
  gap: 8px;
  border: 1px solid rgba(156, 171, 193, 0.28);
  border-radius: 12px;
  padding: 10px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(24, 35, 51, 0.12);
}

.brand-menu[hidden] {
  display: none;
}

.brand-option-list {
  max-height: 190px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
  overflow-y: auto;
  padding-right: 2px;
}

.brand-option-list::-webkit-scrollbar {
  width: 6px;
}

.brand-option-list::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(143, 157, 177, 0.38);
}

.brand-option-list button {
  width: 100%;
  min-height: 42px;
  display: grid;
  grid-template-columns: 26px minmax(0, 1fr);
  grid-template-rows: auto auto;
  column-gap: 8px;
  align-items: center;
  border: 0;
  border-radius: 9px;
  padding: 6px 8px;
  color: #1d2634;
  background: #f7f9fc;
  text-align: left;
  font-weight: 820;
  cursor: pointer;
  outline: none;
  box-shadow: inset 0 0 0 1px rgba(156, 171, 193, 0.14);
}

.brand-option-list button.active,
.brand-option-list button:hover {
  color: #1f55d6;
  background: #edf4ff;
  box-shadow: inset 0 0 0 1px rgba(47, 109, 246, 0.28);
}

.brand-option-list button:focus-visible {
  box-shadow: inset 0 0 0 1px rgba(47, 109, 246, 0.34), 0 0 0 3px rgba(47, 109, 246, 0.12);
}

.brand-option-list button:disabled,
.brand-option-list button:disabled:hover {
  color: #8a95a5;
  cursor: default;
  background: #f7f9fc;
  box-shadow: inset 0 0 0 1px rgba(156, 171, 193, 0.14);
}

.brand-option-list button:disabled {
  cursor: default;
  color: #8e98a8;
}

.brand-option-list button .brand-logo-mark {
  grid-row: 1 / 3;
}

.brand-option-list button strong {
  color: inherit;
  font-size: 12px;
  line-height: 1.1;
}

.brand-option-list button small {
  color: #7a8494;
  font-size: 10px;
  font-weight: 760;
}

.brand-search-row {
  min-width: 0;
}

.brand-search-row input {
  width: min(420px, 100%);
  height: 38px;
  border: 1px solid rgba(143, 157, 177, 0.32);
  border-radius: 999px;
  padding: 0 16px;
  color: #202938;
  background: #fff;
  font: inherit;
  font-weight: 760;
  outline: none;
}

.brand-search-row input:focus {
  border-color: rgba(47, 109, 246, 0.52);
  box-shadow: 0 0 0 3px rgba(47, 109, 246, 0.12);
}

.brand-cloud {
  min-height: 70px;
  gap: 12px;
  padding: 10px 20px 10px 102px;
  border-bottom: 1px solid var(--next-line);
  background: rgba(247, 250, 253, 0.8);
}

.brand-cloud button {
  min-width: 142px;
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 14px;
  padding: 0 12px;
  color: #1d2634;
  background: rgba(255, 255, 255, 0.74);
  white-space: nowrap;
  font-weight: 820;
}

.brand-cloud button.active,
.brand-cloud button:hover {
  color: var(--next-green-dark);
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(47, 109, 246, 0.26), 0 10px 20px rgba(24, 35, 51, 0.07);
}

.brand-cloud span {
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: #111827;
  font-size: 10px;
  font-weight: 900;
}

.brand-cloud .brand-logo-mark {
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(17, 24, 39, 0.08);
}

.brand-cloud .brand-logo-mark.has-image {
  color: transparent;
  background: #fff;
}

.brand-cloud .brand-logo-mark img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  display: block;
}

.brand-cloud .brand-logo-mark.has-image em {
  display: none;
}

.brand-cloud .brand-logo-mark em {
  color: #fff;
  font-style: normal;
}

.brand-cloud button strong,
.brand-cloud button small {
  display: block;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: left;
}

.brand-cloud button strong {
  max-width: 92px;
  color: inherit;
  font-size: 14px;
}

.brand-cloud button small {
  max-width: 92px;
  margin-top: 1px;
  color: #7a8494;
  font-size: 11px;
  font-weight: 760;
}

.brand-cloud button.active small,
.brand-cloud button:hover small {
  color: #526278;
}

.price-box {
  height: 38px;
  display: inline-grid;
  grid-template-columns: 42px 12px 42px 24px 64px;
  align-items: center;
  overflow: hidden;
  border: 1px solid var(--next-line);
  border-radius: 999px;
  background: #fff;
}

.price-box span,
.price-box em {
  text-align: center;
  font-style: normal;
  font-weight: 760;
}

.price-box i {
  height: 1px;
  background: #9aa4b4;
}

.price-box button {
  height: 38px;
  color: #fff;
  background: linear-gradient(135deg, #ff7c38, var(--next-orange));
  font-weight: 860;
}

.picked-row {
  min-height: 0;
  padding: 8px 16px 12px;
  justify-content: space-between;
}

@media (min-width: 761px) {
  body[data-portal="customer"]:not([data-page="image-card-home"]) .picked-row {
    padding-right: 112px;
  }
}

.picked-values {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  overflow-x: auto;
  scrollbar-width: none;
}

.picked-values::-webkit-scrollbar {
  display: none;
}

.picked-row span {
  flex: 0 0 auto;
  color: #283241;
  font-weight: 850;
}

.picked-row button {
  min-height: 32px;
  border-radius: 999px;
  padding: 0 13px;
  color: var(--next-green-dark);
  background: #eaf2ff;
  white-space: nowrap;
  font-weight: 760;
}

.filter-actions {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}

.filter-actions button {
  min-width: 82px;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border-radius: 999px;
  padding: 0 16px;
  font-weight: 820;
}

.filter-actions .filter-reset-button {
  border: 1px solid var(--next-line);
  color: #475163;
  background: #fff;
}

.filter-actions .filter-query-button {
  color: #fff;
  background: linear-gradient(135deg, #2563eb, #0f8f7f);
  box-shadow: 0 10px 22px rgba(47, 109, 246, 0.22);
}

.filter-actions button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.query-spinner {
  width: 14px;
  height: 14px;
  display: none;
  border: 2px solid rgba(255, 255, 255, 0.42);
  border-top-color: #fff;
  border-radius: 50%;
  animation: query-spin 760ms linear infinite;
}

.filter-query-button.is-loading .query-spinner {
  display: inline-block;
}

@keyframes query-spin {
  to {
    transform: rotate(360deg);
  }
}

.inventory-shell {
  position: relative;
  z-index: 1;
  width: 100%;
  margin: 20px auto 0;
}

.inventory-main {
  width: 100%;
}

.customer-center-layout {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  gap: 30px;
  align-items: start;
  margin-top: 16px;
}

.customer-demand-card,
.customer-intent-card,
.customer-inquiry-card,
.customer-center-empty,
.customer-center-loading {
  border: 1px solid rgba(156, 171, 193, 0.2);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 4px 14px rgba(32, 44, 68, 0.035);
}

.customer-center-menu {
  align-self: start;
  position: sticky;
  top: 104px;
  min-width: 0;
  display: grid;
  gap: 6px;
  border-right: 1px solid rgba(156, 171, 193, 0.18);
  padding: 2px 10px 2px 0;
}

.customer-center-menu > a,
.customer-center-menu-demand {
  position: relative;
  min-height: 44px;
  min-width: 0;
  display: grid;
  gap: 3px;
  align-content: center;
  border: 0;
  border-radius: 8px;
  padding: 8px 10px 8px 14px;
  color: #5f6c7d;
  background: transparent;
  text-decoration: none;
  transition:
    color 160ms ease;
}

.customer-center-menu > a:hover,
.customer-center-menu > a.active,
.customer-center-menu-demand:hover,
.customer-center-menu-demand.active {
  color: #183153;
  background: #eef4ff;
}

.customer-center-menu > a.active::before,
.customer-center-menu-demand.active::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 12px;
  bottom: 12px;
  width: 3px;
  border-radius: 999px;
  background: #2f6df6;
}

.customer-center-menu-main {
  min-width: 0;
  display: grid;
  gap: 4px;
  color: inherit;
  text-decoration: none;
}

.customer-center-menu strong {
  font-size: 14px;
  font-weight: 860;
}

.customer-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.customer-center-menu span {
  display: block;
  color: #7a8495;
  font-size: 11px;
  font-weight: 720;
  line-height: 1.35;
}

.customer-center-content {
  min-width: 0;
}

.customer-center-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(156, 171, 193, 0.18);
}

.customer-center-heading span {
  color: #667085;
  font-size: 12px;
  font-weight: 820;
  text-transform: uppercase;
}

.customer-center-heading h2 {
  margin: 0;
  color: #141b26;
  font-size: 26px;
  line-height: 1.16;
}

.customer-center-heading p {
  margin: 6px 0 0;
  color: #697586;
  font-size: 14px;
  font-weight: 720;
  line-height: 1.45;
}

.customer-center-heading > strong {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0 14px;
  color: var(--next-green-dark);
  background: #edf4ff;
  font-weight: 900;
}

.customer-center-heading-actions {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.customer-center-heading-actions strong {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  border-radius: 0;
  padding: 0;
  color: #174ea6;
  background: transparent;
  font-weight: 820;
}

.customer-center-heading-actions button {
  min-height: 36px;
  border: 0;
  border-radius: 8px;
  padding: 0 14px;
  color: #fff;
  background: #2f6df6;
  font: inherit;
  font-weight: 850;
  cursor: pointer;
}

.customer-center-loading,
.customer-center-empty {
  display: grid;
  justify-items: center;
  gap: 10px;
  padding: 42px 24px;
  color: #7a8495;
  text-align: center;
}

.customer-center-loading strong,
.customer-center-empty strong {
  color: #141b26;
  font-size: 18px;
}

.customer-center-empty a,
.customer-center-empty button {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  border: 0;
  border-radius: 999px;
  padding: 0 16px;
  color: #fff;
  background: #2f6df6;
  text-decoration: none;
  font: inherit;
  font-weight: 850;
  cursor: pointer;
}

.customer-demand-create-panel {
  display: grid;
  gap: 10px;
  margin-bottom: 12px;
  border: 1px solid rgba(156, 171, 193, 0.24);
  border-radius: 8px;
  padding: 12px 14px;
  background: #fff;
  box-shadow: 0 6px 16px rgba(32, 44, 68, 0.04);
}

.customer-demand-create-panel[hidden] {
  display: none;
}

.customer-demand-create-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(156, 171, 193, 0.14);
}

.customer-demand-create-head span {
  color: var(--next-green-dark);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.customer-demand-create-head h3 {
  margin: 2px 0 0;
  color: #141b26;
  font-size: 18px;
  line-height: 1.2;
}

.customer-demand-create-status {
  border: 1px solid rgba(156, 171, 193, 0.2);
  border-radius: 8px;
  padding: 9px 11px;
  color: #5f6c7d;
  background: #f8fafc;
  font-size: 13px;
  font-weight: 780;
}

.customer-demand-create-status.error {
  border-color: rgba(229, 72, 77, 0.28);
  color: #b42318;
  background: #fff5f5;
}

.customer-demand-form {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) minmax(180px, 1fr) minmax(140px, 0.8fr);
  gap: 10px 12px;
  align-items: end;
}

.customer-demand-form label {
  min-width: 0;
  display: grid;
  gap: 6px;
}

.customer-demand-form label.wide,
.customer-demand-description-field {
  grid-column: 1 / 3;
}

.customer-demand-form label > span {
  color: #7a8495;
  font-size: 12px;
  font-weight: 820;
}

.customer-demand-form input,
.customer-demand-form textarea {
  width: 100%;
  border: 1px solid rgba(156, 171, 193, 0.34);
  border-radius: 8px;
  padding: 9px 11px;
  color: #202938;
  background: #fff;
  font: inherit;
  font-weight: 760;
  outline: none;
}

.customer-demand-form input,
.customer-demand-picker-toggle {
  min-height: 40px;
}

.customer-demand-form textarea {
  min-height: 64px;
  resize: vertical;
  line-height: 1.55;
}

.customer-demand-form input:focus,
.customer-demand-form textarea:focus {
  border-color: rgba(47, 109, 246, 0.52);
  box-shadow: 0 0 0 3px rgba(47, 109, 246, 0.12);
}

.customer-demand-picker {
  position: relative;
  min-width: 0;
  width: 100%;
}

.customer-demand-picker-toggle {
  font: inherit;
  font-weight: 820;
}

.customer-demand-picker-toggle:focus-visible,
.customer-demand-picker.is-open .filter-select {
  border-color: rgba(47, 109, 246, 0.52);
  box-shadow: 0 0 0 3px rgba(47, 109, 246, 0.12);
}

.customer-demand-picker.is-disabled .filter-select {
  color: #98a2b3;
  cursor: not-allowed;
  background: #f7f9fc;
}

.customer-demand-picker.is-disabled::after {
  opacity: 0.42;
}

.customer-demand-picker-menu[hidden] {
  display: none;
}

.customer-demand-brand-toggle {
  display: grid;
  grid-template-columns: 26px minmax(0, 1fr);
  grid-template-rows: auto auto;
  column-gap: 8px;
  align-items: center;
  min-height: 40px;
  padding: 5px 36px 5px 9px;
  text-align: left;
}

.customer-demand-brand-toggle .brand-logo-mark {
  grid-row: 1 / 3;
}

.customer-demand-brand-toggle strong,
.customer-demand-brand-toggle small {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.customer-demand-brand-toggle strong {
  color: #1d2634;
  font-size: 13px;
  line-height: 1.1;
}

.customer-demand-brand-toggle small {
  color: #7a8494;
  font-size: 11px;
  font-weight: 760;
}

.customer-demand-brand-toggle small:empty,
.customer-demand-brand-dropdown:not(.has-value) .customer-demand-brand-toggle .brand-logo-mark {
  display: none;
}

.customer-demand-brand-dropdown:not(.has-value) .customer-demand-brand-toggle {
  grid-template-columns: minmax(0, 1fr);
  padding-left: 12px;
}

.customer-demand-brand-dropdown .brand-menu,
.customer-demand-series-dropdown .filter-menu {
  z-index: 140;
}

.customer-demand-brand-dropdown .brand-option-list {
  max-height: 218px;
}

.customer-demand-series-dropdown .customer-demand-picker-options {
  display: grid;
  gap: 4px;
}

.customer-demand-series-dropdown .customer-demand-picker-options button {
  min-height: 34px;
  border: 0;
  border-radius: 7px;
  padding: 0 10px;
  color: #273244;
  background: transparent;
  font: inherit;
  font-size: 14px;
  font-weight: 780;
  text-align: left;
  cursor: pointer;
}

.customer-demand-series-dropdown .customer-demand-picker-options button:hover,
.customer-demand-series-dropdown .customer-demand-picker-options button:focus,
.customer-demand-series-dropdown .customer-demand-picker-options button.active {
  color: #1f55d6;
  background: #edf4ff;
  outline: none;
}

.customer-demand-series-dropdown .customer-demand-picker-options button:disabled {
  color: #98a2b3;
  cursor: default;
  background: transparent;
}

.customer-demand-form [data-customer-demand-create-error] {
  grid-column: 1 / 3;
  min-height: 0;
  margin: 0;
  color: #d92d20;
  font-size: 13px;
  font-weight: 760;
}

.customer-demand-form-actions {
  grid-column: 3 / 4;
  grid-row: 2 / 3;
  display: flex;
  justify-content: flex-end;
  align-self: end;
}

.customer-demand-form-actions button {
  min-height: 40px;
  border: 0;
  border-radius: 8px;
  padding: 0 18px;
  color: #fff;
  background: #2f6df6;
  font: inherit;
  font-weight: 850;
  cursor: pointer;
}

.customer-demand-form-actions button:disabled {
  cursor: not-allowed;
  opacity: 0.62;
}

.customer-intent-list {
  display: grid;
  gap: 12px;
}

.customer-inquiry-list {
  display: grid;
  gap: 14px;
}

.customer-favorite-list {
  gap: 14px;
}

.customer-inquiry-toolbar {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
  border-bottom: 0;
  padding-bottom: 0;
}

.customer-inquiry-source-tabs {
  gap: 0;
  border: 1px solid rgba(37, 99, 235, 0.18);
  border-radius: 8px;
  padding: 0 8px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(32, 44, 68, 0.04);
}

.customer-inquiry-source-tabs button {
  position: relative;
  min-height: 42px;
  border-radius: 0;
  padding: 0 16px;
  color: #5f6c7d;
  background: transparent;
  font-size: 14px;
  font-weight: 820;
}

.customer-inquiry-source-tabs button:hover,
.customer-inquiry-source-tabs button.active {
  color: #174ea6;
  background: transparent;
}

.customer-inquiry-source-tabs button.active::after {
  display: block;
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 0;
  height: 3px;
  border-radius: 999px;
  background: #2563eb;
}

.customer-inquiry-source-tabs button small {
  margin-left: 4px;
  color: #8b95a5;
  font-size: 12px;
  font-weight: 780;
}

.customer-inquiry-source-tabs button.active small {
  color: #174ea6;
}

.customer-inquiry-source-summary {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 34px;
  border-radius: 8px;
  color: #8b95a5;
  font-size: 12px;
  font-weight: 760;
  background: #eef4ff;
}

.customer-inquiry-source-summary strong {
  color: #174ea6;
  font-size: 14px;
  font-weight: 900;
}

.customer-inquiry-search-tools {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}

.customer-inquiry-search {
  position: relative;
  min-width: min(320px, 36vw);
}

.customer-inquiry-search > span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.customer-inquiry-search::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 14px;
  width: 12px;
  height: 12px;
  border: 2px solid #8b95a5;
  border-radius: 50%;
  transform: translateY(-55%);
  pointer-events: none;
}

.customer-inquiry-search::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 10px;
  width: 7px;
  height: 2px;
  border-radius: 999px;
  background: #8b95a5;
  transform: translateY(6px) rotate(45deg);
  pointer-events: none;
}

.customer-inquiry-search input {
  width: 100%;
  min-height: 42px;
  border: 1px solid rgba(151, 164, 184, 0.28);
  border-radius: 8px;
  padding: 0 40px 0 14px;
  color: #1d2634;
  background: #fff;
  font: inherit;
  font-size: 14px;
  font-weight: 740;
  outline: none;
  box-shadow: 0 8px 22px rgba(32, 44, 68, 0.04);
}

.customer-inquiry-search input::placeholder {
  color: #9aa4b2;
}

.customer-inquiry-search input:focus {
  border-color: rgba(37, 99, 235, 0.42);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.customer-inquiry-search-clear {
  width: 42px;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(151, 164, 184, 0.28);
  border-radius: 8px;
  padding: 0;
  color: #31435d;
  background: #fff;
  font: inherit;
  cursor: pointer;
  box-shadow: 0 8px 22px rgba(32, 44, 68, 0.04);
}

.customer-inquiry-search-clear svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.customer-inquiry-search-clear[hidden] {
  display: none;
}

.customer-inquiry-source-row {
  justify-content: flex-start;
  margin-bottom: 6px;
}

.customer-inquiry-source-row .card-source-tag {
  min-height: 26px;
  padding: 0 10px;
  font-size: 12px;
  font-weight: 820;
}

.customer-inquiry-image {
  border-right: 1px solid rgba(156, 171, 193, 0.16);
  color: inherit;
  text-decoration: none;
}

button.customer-inquiry-image,
a.customer-inquiry-image {
  width: 100%;
}

button.customer-inquiry-image {
  border: 0;
  padding: 0;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

button.customer-inquiry-image:focus-visible {
  outline: 3px solid rgba(47, 109, 246, 0.22);
  outline-offset: -5px;
}

.customer-inquiry-note {
  margin: 0;
  border-radius: 8px;
  padding: 10px 12px;
  color: #5f6c7d;
  background: #f8fafc;
  line-height: 1.65;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.customer-intent-card {
  display: grid;
  grid-template-columns: 228px minmax(0, 1fr);
  overflow: hidden;
  contain: layout paint;
  content-visibility: auto;
  contain-intrinsic-size: 160px;
  transition:
    border-color 110ms ease,
    background-color 110ms ease;
}

.customer-intent-card:hover {
  border-color: rgba(47, 109, 246, 0.24);
  background: #fbfdff;
}

.customer-demand-card:hover {
  border-color: rgba(47, 109, 246, 0.24);
  background: #fbfdff;
}

.customer-intent-card.customer-demand-card {
  gap: 0;
  grid-template-columns: minmax(340px, 1fr) minmax(172px, 210px) 64px;
  min-height: 142px;
}

.customer-demand-card-main {
  align-content: center;
  display: grid;
  gap: 10px;
  padding: 16px 20px;
}

.customer-demand-card-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.customer-demand-card-title span {
  color: #7a8495;
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.customer-demand-card-title h2 {
  margin: 2px 0 0;
  color: #141b26;
  font-size: 18px;
  line-height: 1.25;
}

.customer-demand-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.customer-demand-card-meta span {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 8px;
  padding: 0 10px;
  color: #5f6c7d;
  background: #f6f9fd;
  font-size: 12px;
  font-weight: 760;
}

.customer-demand-card-meta strong {
  color: #303948;
  font-size: 12px;
  font-weight: 900;
}

.customer-demand-card-description {
  margin: 0;
  border-left: 3px solid rgba(47, 109, 246, 0.34);
  padding: 4px 0 4px 10px;
  color: #5f6c7d;
  line-height: 1.55;
  font-weight: 720;
  overflow-wrap: anywhere;
}

.customer-demand-title-link {
  color: inherit;
  text-decoration: none;
}

.customer-demand-title-link:hover {
  color: #174ea6;
}

.customer-demand-summary .customer-inquiry-quote-block > strong {
  color: #0f8f7f;
  font-size: 18px;
}

.customer-demand-action-rail {
  background: #fff;
}

.customer-intent-image {
  min-height: 206px;
  display: block;
  overflow: hidden;
  background: #eef3f8;
}

.customer-intent-image img,
.customer-intent-image-placeholder {
  width: 100%;
  height: 100%;
}

.customer-intent-image img {
  display: block;
  object-fit: cover;
  object-position: center;
}

.customer-intent-image-placeholder {
  display: grid;
  place-items: center;
  color: #8e99a8;
  font-size: 13px;
  font-weight: 760;
}

.customer-intent-body {
  display: grid;
  gap: 12px;
  align-content: start;
  padding: 16px 18px;
}

.customer-intent-title-row,
.customer-intent-bottom,
.customer-intent-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.customer-intent-title-row span {
  color: #7a8495;
  font-size: 12px;
  font-weight: 800;
}

.customer-intent-title-row h2 {
  margin: 4px 0 0;
  color: #141b26;
  font-size: 19px;
  line-height: 1.3;
}

.customer-intent-title-row em {
  flex: 0 0 auto;
  border-radius: 8px;
  padding: 5px 9px;
  color: #174ea6;
  background: #eaf2ff;
  font-style: normal;
  font-size: 13px;
  font-weight: 820;
}

.customer-intent-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 0;
  border-top: 1px solid rgba(156, 171, 193, 0.18);
  border-bottom: 1px solid rgba(156, 171, 193, 0.18);
  border-radius: 0;
  overflow: hidden;
}

.customer-intent-facts div {
  display: grid;
  gap: 4px;
  min-height: 58px;
  align-content: center;
  padding: 8px 12px;
  border-right: 1px solid rgba(156, 171, 193, 0.16);
}

.customer-intent-facts div:last-child {
  border-right: 0;
}

.customer-intent-facts strong {
  color: #141b26;
  font-size: 15px;
}

.customer-intent-facts span,
.customer-intent-bottom > span {
  color: #7a8495;
  font-size: 12px;
  font-weight: 760;
}

.customer-intent-bottom > strong {
  color: var(--next-orange);
  font-size: 21px;
  line-height: 1;
}

.customer-intent-bottom small {
  color: #7a8495;
  font-size: 12px;
}

.customer-intent-actions {
  justify-content: flex-start;
}

.customer-intent-actions a,
.customer-intent-actions button {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  border: 0;
  border-radius: 8px;
  padding: 0 14px;
  font: inherit;
  font-weight: 840;
  text-decoration: none;
  cursor: pointer;
}

.customer-intent-actions a {
  color: #fff;
  background: #2f6df6;
}

.customer-intent-actions a.muted {
  color: #2f6df6;
  background: #edf4ff;
}

.customer-intent-actions button {
  color: #4b5563;
  background: #f1f5f9;
}

.customer-inquiry-actions a,
.customer-inquiry-actions button {
  color: #fff;
  background: #2f6df6;
}

.customer-intent-card.customer-inquiry-card {
  gap: 0;
  grid-template-columns: minmax(220px, 250px) minmax(340px, 1fr) minmax(172px, 210px) 64px;
  min-height: 154px;
}

.customer-inquiry-card .customer-inquiry-image {
  min-height: 0;
  height: 100%;
  aspect-ratio: 16 / 10;
  background: #eef3f8;
}

.customer-inquiry-body {
  gap: 8px;
  padding: 16px 20px;
}

.customer-inquiry-main {
  min-width: 0;
  display: grid;
  gap: 8px;
}

.customer-inquiry-meta-line {
  min-width: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 14px;
  color: #667085;
  font-size: 13px;
  font-weight: 720;
  line-height: 1.5;
}

.customer-inquiry-meta-line span,
.customer-inquiry-updated {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.customer-inquiry-meta-line svg,
.customer-inquiry-updated svg {
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.customer-inquiry-title-row {
  align-items: flex-start;
}

.customer-inquiry-title-row h2 {
  margin-top: 3px;
  font-size: 18px;
  line-height: 1.28;
}

.customer-inquiry-summary {
  min-width: 0;
  display: grid;
  align-content: center;
  gap: 9px;
  border-left: 1px solid rgba(151, 164, 184, 0.18);
  padding: 16px 18px;
  background: #fbfdff;
}

.customer-inquiry-quote-block {
  min-width: 0;
  display: grid;
  gap: 4px;
}

.customer-inquiry-quote-block > span {
  color: #667085;
  font-size: 12px;
  font-weight: 760;
}

.customer-inquiry-quote-block > strong {
  color: var(--next-orange);
  font-size: 19px;
  line-height: 1.1;
}

.customer-inquiry-quote-block small {
  color: #7a8495;
  font-size: 12px;
}

.customer-inquiry-updated {
  color: #7a8495;
  font-size: 12px;
  font-weight: 720;
}

.customer-inquiry-status-pill {
  width: fit-content;
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  border-radius: 8px;
  padding: 0 9px;
  color: #174ea6;
  background: #eaf2ff;
  font-style: normal;
  font-size: 12px;
  font-weight: 850;
}

.customer-inquiry-action-rail {
  min-width: 0;
  display: grid;
  align-content: center;
  justify-items: center;
  border-left: 1px dashed rgba(151, 164, 184, 0.24);
  padding: 12px 10px;
}

.customer-inquiry-actions {
  width: auto;
  flex: 0 0 auto;
}

.customer-inquiry-actions a,
.customer-inquiry-actions button {
  width: 42px;
  height: 42px;
  min-height: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 0;
  background: #2f6df6;
  box-shadow: none;
  text-decoration: none;
}

.customer-inquiry-actions a svg,
.customer-inquiry-actions button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.customer-inquiry-actions a::after,
.customer-inquiry-actions button::after {
  content: none;
  display: none;
}

.customer-inquiry-actions a:hover,
.customer-inquiry-actions button:hover {
  background: #2459d9;
}

.customer-favorite-card .customer-favorite-image {
  color: inherit;
}

.customer-favorite-summary .customer-inquiry-status-pill {
  color: #b42318;
  background: #fff1f0;
}

.customer-inquiry-body .customer-inquiry-note {
  margin: 0;
}

.customer-inquiry-body .customer-inquiry-note:last-child {
  margin-bottom: 0;
}

.customer-intent-bottom.customer-inquiry-bottom {
  padding: 0;
}

.customer-intent-facts.customer-inquiry-facts div:nth-child(n + 4) {
  border-top: 0;
}

.customer-inquiry-detail-dialog {
  position: relative;
  width: min(760px, 100%);
  max-height: calc(100vh - 36px);
  overflow: hidden;
  border: 1px solid rgba(156, 171, 193, 0.28);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 30px 90px rgba(15, 23, 42, 0.24);
}

.customer-inquiry-detail-media {
  height: 118px;
  overflow: hidden;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: #e7edf5;
}

.customer-inquiry-detail-media img,
.customer-inquiry-detail-media .customer-intent-image-placeholder {
  width: 100%;
  height: 100%;
}

.customer-inquiry-detail-media img {
  display: block;
  object-fit: cover;
}

.customer-inquiry-detail-body {
  min-width: 0;
  display: grid;
  align-content: start;
  gap: 14px;
  max-height: calc(100vh - 36px);
  overflow-y: auto;
  padding: 26px;
}

.customer-inquiry-detail-head {
  display: grid;
  gap: 7px;
  padding-right: 42px;
}

.customer-inquiry-detail-head span {
  color: #2f6df6;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.customer-inquiry-detail-summary {
  display: grid;
  grid-template-columns: 152px minmax(0, 1fr);
  align-items: center;
  gap: 16px;
}

.customer-inquiry-detail-summary h2 {
  margin: 0;
  color: #141b26;
  font-size: 24px;
  line-height: 1.25;
}

.customer-inquiry-detail-summary em {
  width: fit-content;
  display: inline-flex;
  margin-top: 9px;
  border-radius: 8px;
  padding: 6px 10px;
  color: #174ea6;
  background: #eaf2ff;
  font-style: normal;
  font-size: 13px;
  font-weight: 820;
}

.customer-inquiry-detail-quote {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 1px solid rgba(255, 96, 51, 0.18);
  border-radius: 10px;
  padding: 16px 18px;
  background: linear-gradient(180deg, #fff9f6 0%, #fff 100%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.72);
}

.customer-inquiry-detail-quote-label {
  min-width: 120px;
  display: grid;
  gap: 6px;
}

.customer-inquiry-detail-quote span,
.customer-inquiry-detail-fields span {
  color: #7a8495;
  font-size: 12px;
  font-weight: 820;
}

.customer-inquiry-detail-quote-label small {
  width: fit-content;
  border-radius: 8px;
  padding: 4px 8px;
  color: #174ea6;
  background: #edf4ff;
  font-size: 12px;
  font-weight: 900;
}

.customer-inquiry-detail-quote strong {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px;
  justify-content: flex-end;
  text-align: right;
  color: var(--next-orange);
  font-size: 30px;
  line-height: 1.2;
}

.customer-inquiry-detail-quote small {
  color: #7a8495;
  font-size: 13px;
  font-weight: 900;
}

.customer-inquiry-feedback-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(226px, auto);
  align-items: start;
  gap: 12px 20px;
  border: 1px solid rgba(156, 171, 193, 0.22);
  border-radius: 10px;
  padding: 16px;
  background: #fff;
}

.customer-inquiry-feedback-head {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.customer-inquiry-feedback-head span,
.customer-inquiry-feedback-attachments > span {
  color: #2f6df6;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.customer-inquiry-feedback-head small {
  flex: 0 0 auto;
  border-radius: 999px;
  padding: 5px 9px;
  color: #174ea6;
  background: #edf4ff;
  font-size: 12px;
  font-weight: 900;
}

.customer-inquiry-feedback-panel p {
  margin: 0;
  color: #141b26;
  font-size: 15px;
  line-height: 1.55;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}

.customer-inquiry-feedback-attachments {
  display: grid;
  gap: 8px;
  justify-self: end;
  padding-top: 2px;
}

.customer-inquiry-feedback-media {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.customer-inquiry-feedback-media .detail-media-card {
  width: 108px;
  max-width: calc(50% - 5px);
  aspect-ratio: 4 / 3;
  border-radius: 8px;
}

.customer-inquiry-feedback-media .detail-media-video {
  padding: 8px;
}

.customer-inquiry-feedback-media .detail-media-play {
  width: 28px;
  height: 28px;
}

.customer-inquiry-feedback-media .detail-media-play::before {
  border-top-width: 6px;
  border-bottom-width: 6px;
  border-left-width: 9px;
}

.customer-inquiry-feedback-media .detail-media-video strong {
  max-width: 92px;
  font-size: 11px;
}

@media (max-width: 760px) {
  .customer-inquiry-detail-quote {
    align-items: flex-start;
    flex-direction: column;
  }

  .customer-inquiry-detail-quote strong {
    justify-content: flex-start;
    text-align: left;
    font-size: 26px;
  }

  .customer-inquiry-feedback-panel {
    grid-template-columns: 1fr;
  }

  .customer-inquiry-feedback-attachments {
    justify-self: stretch;
  }

  .customer-inquiry-feedback-media {
    justify-content: flex-start;
  }
}

.customer-inquiry-detail-vehicle-link {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  border-radius: 8px;
  padding: 0 16px;
  color: #fff;
  background: #2f6df6;
  font-size: 14px;
  font-weight: 850;
  text-decoration: none;
  box-shadow: 0 10px 22px rgba(47, 109, 246, 0.2);
}

.customer-inquiry-detail-vehicle-link:hover {
  background: #2459d9;
}

.customer-inquiry-detail-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 1px solid rgba(156, 171, 193, 0.2);
  border-radius: 10px;
  overflow: hidden;
}

.customer-inquiry-detail-fields div {
  min-height: 76px;
  display: grid;
  align-content: center;
  gap: 6px;
  border-right: 1px solid rgba(156, 171, 193, 0.16);
  border-bottom: 1px solid rgba(156, 171, 193, 0.16);
  padding: 13px 14px;
}

.customer-inquiry-detail-fields div:nth-child(2n),
.customer-inquiry-detail-fields div:last-child {
  border-right: 0;
}

.customer-inquiry-detail-fields div:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.customer-inquiry-detail-fields strong {
  color: #141b26;
  font-size: 15px;
  line-height: 1.35;
  white-space: pre-line;
  overflow-wrap: anywhere;
}

.customer-inquiry-detail-page-heading a {
  display: inline-flex;
  margin-bottom: 8px;
  color: #2f6df6;
  text-decoration: none;
  font-size: 13px;
  font-weight: 850;
}

.customer-inquiry-detail-page-panel {
  border: 1px solid rgba(156, 171, 193, 0.22);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(32, 44, 68, 0.07);
}

.customer-inquiry-detail-page-panel .customer-inquiry-detail-body {
  max-height: none;
  overflow: visible;
}

.customer-inquiry-detail-page-panel .customer-inquiry-detail-head {
  padding-right: 0;
}

.customer-inquiry-detail-page-panel .customer-inquiry-detail-media {
  height: 188px;
}

.customer-intent-detail-heading a {
  display: inline-flex;
  margin-bottom: 8px;
  color: #2f6df6;
  text-decoration: none;
  font-size: 13px;
  font-weight: 850;
}

.customer-intent-detail-heading .customer-source-back-button {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  margin-bottom: 8px;
  color: #2f6df6;
  background: #eaf2ff;
  font-size: 20px;
  line-height: 1;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.customer-intent-detail-heading .customer-source-back-button:hover {
  color: #1d4ed8;
  background: #dceaff;
  transform: translateX(-2px);
}

.customer-intent-detail-panel,
.customer-feedback-card,
.customer-feedback-empty {
  border: 1px solid rgba(156, 171, 193, 0.22);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 6px 16px rgba(32, 44, 68, 0.04);
}

.customer-feedback-card {
  contain: layout paint;
  content-visibility: auto;
  contain-intrinsic-size: 220px;
}

.customer-intent-detail-panel {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  overflow: hidden;
}

.customer-intent-detail-media {
  min-height: 260px;
  background: #dfe6ef;
}

.customer-intent-detail-media img,
.customer-intent-detail-media .customer-intent-image-placeholder {
  width: 100%;
  height: 100%;
}

.customer-intent-detail-media img {
  display: block;
  object-fit: cover;
}

.customer-demand-detail-media {
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(47, 109, 246, 0.1), rgba(0, 184, 107, 0.12)),
    #f5f8fc;
}

.customer-demand-detail-card {
  width: min(220px, 100%);
  display: grid;
  gap: 10px;
  justify-items: start;
}

.customer-demand-detail-card span {
  color: var(--next-green-dark);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.customer-demand-detail-card strong {
  color: #141b26;
  font-size: 28px;
  line-height: 1;
}

.customer-demand-detail-card em {
  color: #5f6c7d;
  font-style: normal;
  font-size: 14px;
  font-weight: 820;
}

.customer-intent-detail-info {
  display: grid;
  gap: 18px;
  align-content: start;
  padding: 20px;
}

.customer-intent-detail-title {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.customer-intent-detail-title span,
.customer-feedback-section-head span,
.customer-feedback-title-row span {
  color: #7a8495;
  font-size: 12px;
  font-weight: 850;
}

.customer-intent-detail-title h3 {
  margin: 4px 0 0;
  color: #141b26;
  font-size: 24px;
  line-height: 1.2;
}

.customer-intent-detail-title em,
.customer-feedback-title-row em {
  flex: 0 0 auto;
  border-radius: 8px;
  padding: 5px 9px;
  color: #0f8f7f;
  background: rgba(15, 143, 127, 0.1);
  font-style: normal;
  font-size: 13px;
  font-weight: 850;
}

.customer-intent-detail-fields,
.customer-feedback-facts {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border: 0;
  border-top: 1px solid rgba(156, 171, 193, 0.18);
  border-bottom: 1px solid rgba(156, 171, 193, 0.18);
  border-radius: 0;
  overflow: hidden;
}

.customer-intent-detail-fields div,
.customer-feedback-facts div {
  display: grid;
  gap: 4px;
  min-height: 68px;
  align-content: center;
  padding: 10px 12px;
  border-right: 1px solid rgba(156, 171, 193, 0.16);
}

.customer-intent-detail-fields div:nth-child(5n),
.customer-feedback-facts div:last-child {
  border-right: 0;
}

.customer-intent-detail-fields div:nth-child(n + 6) {
  border-top: 1px solid rgba(156, 171, 193, 0.16);
}

.customer-intent-detail-fields span,
.customer-feedback-facts span {
  color: #7a8495;
  font-size: 12px;
  font-weight: 760;
}

.customer-intent-detail-fields strong,
.customer-feedback-facts strong {
  min-width: 0;
  color: #141b26;
  font-size: 15px;
  overflow-wrap: anywhere;
}

.customer-intent-detail-description,
.customer-feedback-note {
  margin: 0;
  border-radius: 8px;
  padding: 12px 14px;
  color: #5f6c7d;
  background: #f6f9fd;
  line-height: 1.7;
  font-weight: 720;
}

.customer-intent-detail-actions,
.customer-feedback-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.customer-intent-detail-actions a,
.customer-feedback-actions a,
.customer-feedback-actions button {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  border: 0;
  border-radius: 8px;
  padding: 0 16px;
  color: #fff;
  background: #2f6df6;
  font: inherit;
  text-decoration: none;
  font-weight: 850;
  cursor: pointer;
}

.customer-intent-detail-actions a.muted {
  color: #2f6df6;
  background: #edf4ff;
}

.customer-feedback-dialog {
  position: relative;
  width: min(1040px, 100%);
  display: grid;
  grid-template-columns: minmax(320px, 1.05fr) minmax(320px, 0.95fr);
  overflow: hidden;
  border: 1px solid rgba(156, 171, 193, 0.28);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 30px 90px rgba(15, 23, 42, 0.24);
}

.customer-feedback-detail-dialog {
  width: min(1280px, calc(100vw - 36px));
  max-height: calc(100vh - 36px);
  display: block;
  grid-template-columns: none;
  overflow-y: auto;
  padding: 18px;
  border-radius: 20px;
  background: #f7f9fc;
}

.customer-feedback-record-dialog {
  width: min(760px, 100%);
  max-height: calc(100vh - 36px);
  display: block;
  grid-template-columns: none;
  overflow: hidden;
}

.customer-feedback-record-body {
  min-width: 0;
  display: grid;
  align-content: start;
  gap: 14px;
  max-height: calc(100vh - 36px);
  overflow-y: auto;
  padding: 26px;
}

.customer-feedback-record-summary {
  display: grid;
  grid-template-columns: 152px minmax(0, 1fr);
  align-items: center;
  gap: 16px;
}

.customer-feedback-record-media {
  height: 118px;
  overflow: hidden;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: #e7edf5;
}

.customer-feedback-record-media img,
.customer-feedback-record-media .customer-feedback-image-placeholder {
  width: 100%;
  height: 100%;
}

.customer-feedback-record-media img {
  display: block;
  object-fit: cover;
}

.customer-feedback-record-summary h2 {
  margin: 0;
  color: #141b26;
  font-size: 24px;
  line-height: 1.25;
}

.customer-feedback-record-summary em {
  width: fit-content;
  display: inline-flex;
  margin-top: 9px;
  border-radius: 8px;
  padding: 6px 10px;
  color: #0f8f7f;
  background: rgba(15, 143, 127, 0.1);
  font-style: normal;
  font-size: 13px;
  font-weight: 850;
}

.customer-feedback-record-price {
  display: grid;
  gap: 6px;
  border-radius: 10px;
  padding: 14px;
  background: #f6f9fd;
}

.customer-feedback-record-price span,
.customer-feedback-record-fields span {
  color: #7a8495;
  font-size: 12px;
  font-weight: 820;
}

.customer-feedback-record-price strong {
  color: var(--next-orange);
  font-size: 22px;
  line-height: 1.2;
}

.customer-feedback-record-price small {
  color: #7a8495;
  font-size: 12px;
}

.customer-feedback-record-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 1px solid rgba(156, 171, 193, 0.2);
  border-radius: 10px;
  overflow: hidden;
}

.customer-feedback-record-fields div {
  min-height: 76px;
  display: grid;
  align-content: center;
  gap: 6px;
  border-right: 1px solid rgba(156, 171, 193, 0.16);
  border-bottom: 1px solid rgba(156, 171, 193, 0.16);
  padding: 13px 14px;
}

.customer-feedback-record-fields div:nth-child(2n),
.customer-feedback-record-fields div:last-child {
  border-right: 0;
}

.customer-feedback-record-fields div:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.customer-feedback-record-fields strong {
  color: #141b26;
  font-size: 15px;
  line-height: 1.35;
  white-space: pre-line;
  overflow-wrap: anywhere;
}

.customer-feedback-detail-page {
  padding-right: 0;
}

.customer-feedback-detail-page .detail-crumb {
  padding-right: 42px;
}

.customer-feedback-detail-dialog .vehicle-detail-layout {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 390px);
  gap: 18px;
}

.customer-feedback-detail-dialog .vehicle-detail-panel,
.customer-feedback-detail-dialog .vehicle-detail-summary {
  border-color: rgba(156, 171, 193, 0.18);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 48px rgba(32, 44, 68, 0.08);
}

.customer-feedback-detail-dialog .vehicle-detail-panel {
  padding: 24px;
}

.customer-feedback-detail-dialog .vehicle-detail-gallery {
  --detail-gallery-height: clamp(360px, 42vw, 560px);
  grid-template-columns: 1fr;
}

.customer-feedback-detail-dialog .vehicle-detail-media {
  min-height: 360px;
}

.customer-feedback-detail-dialog .detail-anchor-nav {
  top: 0;
  gap: 8px;
  border-color: rgba(156, 171, 193, 0.16);
  background: rgba(255, 255, 255, 0.94);
}

.customer-feedback-detail-dialog .detail-anchor-nav a {
  border-radius: 999px;
  padding: 9px 14px;
  color: #334155;
  background: #f4f7fb;
  text-decoration: none;
}

.customer-feedback-detail-dialog .detail-panel-heading span,
.customer-vehicle-detail-page .detail-panel-heading span {
  color: #2f6df6;
  background: #edf4ff;
}

.customer-feedback-detail-dialog .detail-field-grid,
.customer-vehicle-detail-page .detail-field-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.customer-feedback-detail-dialog .customer-feedback-primary-panel .detail-field-grid,
.customer-vehicle-detail-page .customer-vehicle-primary-panel .detail-field-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.customer-feedback-detail-dialog .customer-feedback-detail-field,
.customer-vehicle-detail-page .customer-vehicle-detail-field {
  min-height: 54px;
  border-color: #e6ebf2;
  border-radius: 6px;
  background: #f8fafc;
}

.customer-feedback-detail-dialog .customer-feedback-detail-field dt,
.customer-vehicle-detail-page .customer-vehicle-detail-field dt {
  color: #7b8798;
}

.customer-feedback-detail-dialog .customer-feedback-detail-field dd,
.customer-vehicle-detail-page .customer-vehicle-detail-field dd {
  color: #111827;
  line-height: 1.45;
  white-space: pre-line;
}

.customer-feedback-info-note,
.customer-vehicle-info-note {
  display: grid;
  gap: 4px;
  border: 1px solid #dce5f2;
  border-radius: 8px;
  padding: 10px 12px;
  color: #64748b;
  background: #f8fafc;
}

.customer-feedback-info-note strong,
.customer-vehicle-info-note strong {
  color: #334155;
  font-size: 13px;
}

.customer-feedback-info-note span,
.customer-vehicle-info-note span {
  font-size: 12px;
  font-weight: 720;
  line-height: 1.55;
}

.vehicle-trade-reminder {
  position: relative;
  display: grid;
  gap: 7px;
  overflow: hidden;
  border: 1px solid rgba(47, 109, 246, 0.2);
  border-left: 4px solid #2f6df6;
  border-radius: 8px;
  padding: 12px 14px 12px 16px;
  color: #334155;
  background: linear-gradient(135deg, #f3f7ff 0%, #fff 100%);
  box-shadow: 0 12px 26px rgba(47, 109, 246, 0.08);
}

.vehicle-trade-reminder h2 {
  margin: 0;
  color: #1d4ed8;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: 0;
}

.vehicle-trade-reminder p {
  margin: 0;
  color: #475569;
  font-size: 12px;
  font-weight: 780;
  line-height: 1.5;
  overflow-wrap: anywhere;
}

.customer-feedback-summary-label span {
  color: #245edb;
  background: #eaf2ff;
}

.customer-feedback-dialog-media {
  min-height: 420px;
  display: grid;
  place-items: center;
  background: #e7edf5;
}

.customer-feedback-dialog-media img,
.customer-feedback-dialog-media .customer-feedback-image-placeholder {
  width: 100%;
  height: 100%;
}

.customer-feedback-dialog-media img {
  display: block;
  object-fit: cover;
}

.customer-feedback-dialog-body {
  display: grid;
  align-content: start;
  gap: 18px;
  padding: 28px;
}

.customer-feedback-dialog-head {
  display: grid;
  gap: 8px;
  padding-right: 42px;
}

.customer-feedback-dialog-head span {
  color: #2f6df6;
  font-size: 12px;
  font-weight: 900;
}

.customer-feedback-dialog-head h2 {
  margin: 0;
  color: #141b26;
  font-size: 24px;
  line-height: 1.25;
}

.customer-feedback-dialog-head em {
  width: fit-content;
  border-radius: 8px;
  padding: 6px 10px;
  color: #0f8f7f;
  background: rgba(15, 143, 127, 0.1);
  font-style: normal;
  font-size: 13px;
  font-weight: 850;
}

.customer-feedback-dialog-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 1px solid rgba(156, 171, 193, 0.2);
  border-radius: 10px;
  overflow: hidden;
}

.customer-feedback-dialog-facts div {
  min-height: 82px;
  display: grid;
  align-content: center;
  gap: 6px;
  border-right: 1px solid rgba(156, 171, 193, 0.16);
  border-bottom: 1px solid rgba(156, 171, 193, 0.16);
  padding: 14px;
}

.customer-feedback-dialog-facts div:nth-child(2n),
.customer-feedback-dialog-facts div:last-child {
  border-right: 0;
}

.customer-feedback-dialog-facts div:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.customer-feedback-dialog-facts strong {
  color: #141b26;
  font-size: 17px;
  line-height: 1.2;
}

.customer-feedback-dialog-facts span {
  color: #7a8495;
  font-size: 12px;
  font-weight: 820;
}

.customer-feedback-source-link {
  width: fit-content;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0 16px;
  color: #2f6df6;
  background: #eef4ff;
  font-weight: 850;
  text-decoration: none;
}

.customer-feedback-section {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.customer-feedback-section-head,
.customer-feedback-title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.customer-feedback-section-head h2 {
  margin: 4px 0 0;
  color: #141b26;
  font-size: 24px;
  line-height: 1.15;
}

.customer-feedback-section-head > strong {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0 14px;
  color: var(--next-green-dark);
  background: #edf4ff;
  font-weight: 900;
}

.customer-feedback-list {
  display: grid;
  gap: 12px;
}

.customer-feedback-card {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  overflow: hidden;
}

.customer-feedback-card.is-unavailable {
  background: rgba(248, 250, 252, 0.94);
}

.customer-feedback-image {
  min-height: 180px;
  display: block;
  width: 100%;
  border: 0;
  padding: 0;
  overflow: hidden;
  background: #dfe6ef;
  cursor: pointer;
}

.customer-feedback-image.is-unavailable {
  cursor: not-allowed;
}

.customer-feedback-image.is-unavailable img {
  filter: grayscale(0.78);
  opacity: 0.72;
}

.customer-feedback-image img,
.customer-feedback-image-placeholder {
  width: 100%;
  height: 100%;
}

.customer-feedback-image img {
  display: block;
  object-fit: cover;
}

.customer-feedback-image-placeholder {
  display: grid;
  place-items: center;
  color: #8e99a8;
  font-size: 13px;
  font-weight: 760;
}

.customer-feedback-body {
  display: grid;
  gap: 14px;
  align-content: start;
  padding: 18px;
}

.customer-feedback-title-row h3 {
  margin: 4px 0 0;
  color: #141b26;
  font-size: 19px;
  line-height: 1.25;
}

.customer-feedback-facts {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.customer-feedback-unavailable-note {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  border-radius: 8px;
  padding: 0 12px;
  color: #64748b;
  background: #f1f5f9;
  font-size: 13px;
  font-weight: 820;
}

.inventory-toolbar {
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.card-source-tag {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0 12px;
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
}

.card-source-tag.owned {
  color: #31435d;
  background: #eef3f8;
}

.card-source-tag.platform {
  color: #174ea6;
  background: #eaf2ff;
}

.source-tabs button,
.sort-links button {
  min-height: 38px;
  color: #293342;
  background: transparent;
  white-space: nowrap;
  font-weight: 820;
}

.source-tabs button {
  position: relative;
  font-size: 16px;
}

.source-tabs button.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -9px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ffc72c, #ff6330);
}

body[data-portal="customer"] .customer-inquiry-source-tabs {
  gap: 0;
  border: 1px solid rgba(37, 99, 235, 0.18);
  border-radius: 8px;
  padding: 0 8px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(32, 44, 68, 0.04);
}

body[data-portal="customer"] .customer-inquiry-source-tabs button {
  min-height: 42px;
  border-radius: 0;
  padding: 0 16px;
  color: #5f6c7d;
  background: transparent;
  font-size: 14px;
  font-weight: 820;
}

body[data-portal="customer"] .customer-inquiry-source-tabs button:hover,
body[data-portal="customer"] .customer-inquiry-source-tabs button.active {
  color: #174ea6;
  background: transparent;
}

body[data-portal="customer"] .customer-inquiry-source-tabs button.active::after {
  left: 16px;
  right: 16px;
  bottom: 0;
  height: 3px;
  background: #2563eb;
}

.sort-links {
  justify-content: flex-end;
}

.sort-links label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #3e4858;
  white-space: nowrap;
  font-weight: 760;
}

.sort-links input {
  width: 16px;
  height: 16px;
  accent-color: var(--next-green);
}

.sort-links button.active {
  color: var(--next-orange);
}

.inventory-summary {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin: 4px 0 14px;
  color: #8b95a5;
  font-weight: 760;
}

.inventory-summary strong {
  color: #293342;
}

.live-search-status {
  width: min(100%, 720px);
  margin-left: auto;
  display: grid;
  gap: 9px;
  text-align: right;
}

.live-search-status-head {
  display: flex;
  justify-content: flex-end;
  align-items: baseline;
  gap: 8px;
}

.live-search-status-head strong {
  color: #293342;
  font-size: 18px;
}

.live-search-status-head span {
  color: #778294;
}

.live-progress-track {
  height: 6px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(47, 109, 246, 0.12);
}

.live-progress-track span {
  width: 42%;
  height: 100%;
  display: block;
  border-radius: inherit;
  background: linear-gradient(90deg, #2f6df6, #0f8f7f, #ffc72c);
  animation: live-progress-move 1.2s ease-in-out infinite;
}

.platform-result-tags {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 7px;
}

.platform-result-tags em {
  min-height: 26px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0 10px;
  color: #647084;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: inset 0 0 0 1px rgba(143, 157, 177, 0.2);
  font-style: normal;
  font-weight: 820;
}

.platform-result-tags em.has-result {
  color: #0f8f7f;
  background: rgba(15, 143, 127, 0.1);
}

.platform-result-tags em.has-error {
  color: #d9432f;
  background: rgba(217, 67, 47, 0.1);
}

@keyframes live-progress-move {
  0% {
    transform: translateX(-110%);
  }
  55% {
    transform: translateX(70%);
  }
  100% {
    transform: translateX(240%);
  }
}

.next-car-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  transition: opacity 150ms ease;
}

.next-car-grid.updating {
  opacity: 0.55;
  pointer-events: none;
}

.next-car-card {
  overflow: hidden;
  border-radius: 18px;
  cursor: pointer;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.next-car-card:focus-visible {
  outline: 3px solid rgba(47, 109, 246, 0.32);
  outline-offset: 4px;
}

.next-car-card:hover {
  transform: translateY(-3px);
  border-color: rgba(47, 109, 246, 0.28);
  box-shadow: 0 28px 58px rgba(24, 35, 51, 0.14);
}

.card-media {
  position: relative;
  aspect-ratio: 1.42 / 1;
  overflow: hidden;
  background: #dfe6ef;
}

.card-media::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  height: 42%;
  background: linear-gradient(to top, rgba(8, 14, 22, 0.34), transparent);
}

.vehicle-recommended-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  min-height: 26px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.54);
  border-radius: 999px;
  padding: 0 10px;
  color: #fff;
  background: rgba(15, 143, 127, 0.95);
  box-shadow: 0 8px 18px rgba(15, 74, 67, 0.24);
  font-size: 12px;
  font-weight: 900;
}

.card-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: saturate(1.04) contrast(1.02);
  transition: transform 220ms ease;
}

.card-media-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #dfe6ef;
}

.card-media.image-failed::before {
  content: "暂无图片";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8e99a8;
  font-size: 12px;
  background: #dfe6ef;
}

.card-media-placeholder::after {
  content: "暂无图片";
  color: #8e99a8;
  font-size: 12px;
}

.hero-vehicle-card.no-image::before {
  content: "暂无图片";
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: #8e99a8;
  font-size: 14px;
  background: #e8ecf2;
  border-radius: 16px;
}

.next-car-card:hover .card-media img {
  transform: scale(1.035);
}

.card-body {
  display: grid;
  gap: 10px;
  padding: 14px;
}

.card-source-row {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.card-source-row small {
  min-width: 0;
  color: #8b95a5;
  font-size: 12px;
  font-weight: 820;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.card-body h2 {
  min-height: 44px;
  margin: 0;
  color: #141b26;
  font-size: 16px;
  line-height: 22px;
  font-weight: 900;
}

.card-body p {
  margin: 0;
  color: #858f9f;
  font-size: 13px;
  line-height: 20px;
}

.card-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  border-top: 1px solid #eef2f7;
  padding-top: 10px;
}

.card-facts div {
  min-width: 0;
  display: grid;
  gap: 3px;
  align-content: start;
}

.card-facts span {
  color: #97a1b1;
  font-size: 11px;
  font-weight: 780;
}

.card-facts strong {
  min-width: 0;
  color: #243044;
  font-size: 13px;
  line-height: 1.25;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.card-condition-fact {
  min-width: 0;
  grid-column: 1 / -1;
}

.card-condition-fact span {
  display: block;
}

.card-condition-fact strong {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.card-foot {
  display: flex;
  align-items: center;
}

.card-price {
  display: grid;
  gap: 5px;
  min-width: 0;
}

.card-price strong {
  display: inline-flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 5px;
  background: linear-gradient(135deg, #ff7b32, #ff3e25);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 25px;
  line-height: 1;
}

.card-price strong span {
  margin-right: 2px;
}

.card-price strong small {
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
  color: #8a94a5;
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
}

.vehicle-price-reminder {
  display: grid;
  margin: 0;
  color: #697586;
  font-size: 12px;
  font-weight: 760;
  line-height: 1.45;
}

.vehicle-price-reminder p {
  margin: 0;
}

.vehicle-detail-page {
  width: min(1400px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 16px;
}

.detail-crumb {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #8a94a5;
  font-size: 13px;
  font-weight: 750;
}

.detail-back-link {
  width: fit-content;
  color: var(--next-green-dark);
  font-weight: 850;
}

.vehicle-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 408px);
  gap: 24px;
  align-items: start;
}

.vehicle-detail-main {
  display: grid;
  gap: 16px;
  min-width: 0;
}

.vehicle-detail-side {
  display: grid;
  gap: 10px;
  align-self: start;
  min-width: 0;
  position: sticky;
  top: 78px;
}

.vehicle-detail-gallery {
  --detail-gallery-height: clamp(400px, 26vw, 520px);
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  min-width: 0;
}

.vehicle-detail-media,
.vehicle-detail-summary,
.vehicle-detail-panel {
  overflow: hidden;
  border: 1px solid rgba(156, 171, 193, 0.22);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(32, 44, 68, 0.06);
}

.vehicle-detail-gallery .vehicle-detail-media {
  border-color: rgba(156, 171, 193, 0.18);
}

.vehicle-detail-gallery .vehicle-detail-media:first-child {
  grid-column: 1 / -1;
}

.vehicle-detail-media {
  position: relative;
  height: var(--detail-gallery-height);
  min-height: 0;
  background: #eef2f6;
  touch-action: pan-y;
  user-select: none;
}

.detail-thumb-shell {
  position: relative;
  align-self: start;
  box-sizing: border-box;
  height: var(--detail-gallery-height);
  max-height: var(--detail-gallery-height);
  min-height: 0;
  overflow: hidden;
  border: 1px solid rgba(156, 171, 193, 0.22);
  border-radius: 8px;
  background: #fff;
  box-shadow: none;
}

.detail-thumb-rail {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  align-content: start;
  gap: 6px;
  box-sizing: border-box;
  height: 100%;
  max-height: 100%;
  overflow-y: auto;
  padding: 7px 5px;
  overscroll-behavior: contain;
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
  scrollbar-width: thin;
  scrollbar-color: rgba(47, 65, 94, 0.36) transparent;
}

.detail-thumb-rail::-webkit-scrollbar {
  width: 5px;
}

.detail-thumb-rail::-webkit-scrollbar-track {
  background: transparent;
}

.detail-thumb-rail::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(47, 65, 94, 0.32);
}

.detail-thumb-rail button {
  overflow: hidden;
  box-sizing: border-box;
  width: 62px;
  height: 46px;
  border: 1px solid #dce3ee;
  border-radius: 6px;
  padding: 0;
  background: #e8edf4;
  box-shadow: none;
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease, opacity 160ms ease;
}

.detail-thumb-rail button:hover {
  border-color: rgba(39, 93, 245, 0.78);
  box-shadow: 0 0 0 2px rgba(39, 93, 245, 0.1);
}

.detail-thumb-rail button.active {
  border-color: #2f6df6;
  box-shadow: 0 0 0 2px rgba(47, 109, 246, 0.14);
}

.detail-thumb-rail button.image-failed {
  display: none;
}

.detail-thumb-rail img,
.detail-thumb-rail video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-thumb-video {
  position: relative;
  color: #fff;
  background: linear-gradient(135deg, #111827, #253044);
}

.detail-thumb-video .detail-media-play {
  width: 24px;
  height: 24px;
}

.detail-thumb-video .detail-media-play,
.detail-thumb-video small {
  position: absolute;
  left: 50%;
  z-index: 2;
  transform: translateX(-50%);
}

.detail-thumb-video .detail-media-play {
  top: 9px;
}

.detail-thumb-video small {
  bottom: 5px;
  font-size: 11px;
  font-weight: 850;
  line-height: 1;
}

.detail-image-nav {
  position: absolute;
  z-index: 5;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.72);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.22);
  cursor: pointer;
  transition: background 160ms ease, opacity 160ms ease, transform 160ms ease;
}

.detail-image-nav:hover {
  background: rgba(15, 23, 42, 0.86);
}

.detail-image-nav {
  top: 50%;
  width: 42px;
  height: 56px;
  opacity: 0.82;
  border-radius: 8px;
  background: rgba(15, 23, 42, 0.46);
  backdrop-filter: blur(8px);
}

.detail-image-nav-prev {
  left: 14px;
  transform: translateY(-50%);
}

.detail-image-nav-next {
  right: 14px;
  transform: translateY(-50%);
}

.detail-image-nav::before {
  content: "";
  width: 12px;
  height: 12px;
  border-top: 3px solid #fff;
  border-left: 3px solid #fff;
}

.detail-image-nav-prev::before {
  transform: rotate(-45deg);
  margin-left: 4px;
}

.detail-image-nav-next::before {
  transform: rotate(135deg);
  margin-right: 4px;
}

.detail-main-media-stage,
.detail-main-media-stage > img,
.detail-main-media-stage > video,
.detail-image-placeholder {
  display: block;
  width: 100%;
  height: 100%;
}

.detail-main-media-stage {
  position: absolute;
  inset: 0;
}

.detail-main-media-stage > img,
.detail-main-media-stage > video,
.detail-image-placeholder {
  object-fit: cover;
  backface-visibility: hidden;
  transform: translateZ(0);
  -webkit-user-drag: none;
  user-select: none;
}

.detail-main-media-stage > img {
  cursor: zoom-in;
}

.detail-main-media-stage > video {
  background: #050b16;
  object-fit: contain;
}

.detail-main-media-stage .detail-viewer-video-link {
  width: 100%;
  height: 100%;
  place-content: center;
  background: #050b16;
}

.detail-main-media-stage > img.is-swipe-hidden {
  opacity: 0;
}

.detail-swipe-layer {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  width: 100%;
  height: 100%;
  will-change: transform;
  backface-visibility: hidden;
  pointer-events: none;
  transform: translate3d(-100%, 0, 0);
}

.detail-swipe-layer.is-animating {
  transition: transform 280ms cubic-bezier(0.2, 0.82, 0.22, 1);
}

.detail-swipe-layer img {
  flex: 0 0 100%;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-user-drag: none;
  user-select: none;
}

.detail-image-placeholder {
  display: grid;
  place-items: center;
  color: #8e99a8;
  font-weight: 760;
}

.detail-image-overlay {
  position: absolute;
  z-index: 6;
  right: 18px;
  bottom: 18px;
  display: flex;
  align-items: center;
  gap: 6px;
  color: #fff;
}

.detail-image-overlay strong {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0 12px;
  background: rgba(23, 32, 51, 0.72);
  font-size: 12px;
  font-weight: 850;
  backdrop-filter: blur(10px);
}

body.detail-viewer-open {
  overflow: hidden;
}

.detail-image-viewer {
  position: fixed;
  inset: 0;
  z-index: 220;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: clamp(14px, 2.6vw, 28px);
  background: rgba(7, 12, 22, 0.72);
  backdrop-filter: blur(10px);
}

.detail-viewer-dialog {
  position: relative;
  width: min(96vw, 1480px);
  height: min(92vh, 980px);
  min-height: min(720px, 92vh);
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  overflow: hidden;
  border: 1px solid rgba(210, 220, 235, 0.18);
  border-radius: 16px;
  background: #080d16;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
}

.detail-viewer-head {
  min-width: 0;
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border-bottom: 1px solid rgba(226, 232, 240, 0.12);
  padding: 10px 14px 10px 18px;
  background: #101827;
}

.detail-viewer-title {
  min-width: 0;
  overflow: hidden;
  color: #f8fafc;
  font-size: 14px;
  font-weight: 850;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.detail-viewer-footer {
  min-width: 0;
  display: flex;
  justify-content: center;
  border-top: 1px solid rgba(226, 232, 240, 0.12);
  padding: 10px 14px;
  background: #101827;
}

.detail-viewer-stage {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 0;
  display: grid;
  place-items: center;
  overflow: auto;
  background: #05070d;
  scrollbar-width: thin;
  scrollbar-color: rgba(148, 163, 184, 0.48) transparent;
}

.detail-viewer-stage::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

.detail-viewer-stage::-webkit-scrollbar-track {
  background: transparent;
}

.detail-viewer-stage::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.44);
}

.detail-viewer-stage img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 220ms ease, opacity 150ms ease;
  transform-origin: center;
  -webkit-user-drag: none;
  user-select: none;
}

.detail-viewer-stage video {
  display: block;
  max-width: 100%;
  max-height: 100%;
  outline: none;
}

.detail-viewer-video-link {
  display: grid;
  min-width: min(420px, 86vw);
  max-width: 560px;
  justify-items: center;
  gap: 14px;
  padding: 36px;
  color: #f8fafc;
  text-align: center;
}

.detail-viewer-video-link .detail-media-play {
  width: 48px;
  height: 48px;
}

.detail-viewer-video-link strong {
  max-width: 100%;
  overflow: hidden;
  font-size: 16px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.detail-viewer-video-link a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  border-radius: 999px;
  padding: 0 16px;
  color: #fff;
  background: #2f6df6;
  font-weight: 850;
}

.detail-viewer-stage img.is-changing {
  opacity: 0;
}

.detail-viewer-toolbar,
.detail-viewer-close,
.detail-viewer-nav {
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #fff;
  background: rgba(19, 28, 44, 0.66);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(12px);
}

.detail-viewer-toolbar {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  min-height: 44px;
  border-radius: 12px;
  padding: 6px;
  background: rgba(19, 28, 44, 0.78);
}

.detail-viewer-toolbar button,
.detail-viewer-close {
  display: grid;
  place-items: center;
  border: 0;
  color: inherit;
  background: rgba(255, 255, 255, 0.1);
  cursor: pointer;
}

.detail-viewer-toolbar button {
  min-width: 38px;
  height: 34px;
  border-radius: 8px;
  padding: 0 10px;
  font-size: 13px;
  font-weight: 850;
}

.detail-viewer-toolbar strong,
.detail-viewer-toolbar span {
  min-width: max-content;
  padding: 0 6px;
  font-size: 12px;
  font-weight: 850;
}

.detail-viewer-close {
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  font-size: 24px;
  line-height: 1;
}

.detail-viewer-nav {
  position: absolute;
  top: 50%;
  display: grid;
  place-items: center;
  width: 56px;
  height: 80px;
  border-radius: 18px;
  border: 0;
  cursor: pointer;
  transform: translateY(-50%);
}

.detail-viewer-prev {
  left: 22px;
}

.detail-viewer-next {
  right: 22px;
}

.detail-viewer-nav::before {
  content: "";
  width: 14px;
  height: 14px;
  border-top: 3px solid currentColor;
  border-left: 3px solid currentColor;
}

.detail-viewer-prev::before {
  transform: rotate(-45deg);
  margin-left: 5px;
}

.detail-viewer-next::before {
  transform: rotate(135deg);
  margin-right: 5px;
}

.vehicle-detail-summary {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 0;
  padding: 20px;
  border-color: rgba(156, 171, 193, 0.24);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(24, 35, 51, 0.08);
}

.detail-state-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.detail-state-row span {
  width: fit-content;
  border-radius: 999px;
  padding: 5px 11px;
  color: var(--next-green-dark);
  background: #eaf2ff;
  font-size: 12px;
  font-style: normal;
  font-weight: 850;
}

.detail-state-row small {
  color: #8a94a5;
  font-size: 12px;
  font-weight: 750;
}

.vehicle-detail-summary h1 {
  margin: 0;
  color: #141b26;
  font-size: 22px;
  line-height: 1.28;
  overflow-wrap: anywhere;
}

.detail-price-row {
  display: grid;
  gap: 10px;
  padding-bottom: 14px;
  border-bottom: 1px solid #eef2f7;
}

.detail-price-row > strong {
  display: inline-flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px;
  color: #2f6df6;
  font-size: clamp(26px, 2vw, 32px);
  line-height: 1.08;
}

.detail-price-row > strong > span {
  margin-right: 4px;
  font-size: 0.72em;
  vertical-align: 0.08em;
}

.detail-price-row > strong > b,
.platform-price-amount-wrap > b {
  font: inherit;
  white-space: nowrap;
}

.platform-price-amount-wrap {
  position: relative;
  display: inline-flex;
  align-items: baseline;
  line-height: 1;
}

.detail-price-row > strong > small {
  color: #8a94a5;
  font-size: 14px;
  font-weight: 800;
}

.platform-price-anomaly {
  position: absolute;
  top: -5px;
  right: -11px;
  width: 10px;
  height: 10px;
  border: 2px solid #fff;
  border-radius: 50%;
  padding: 0;
  background: #ef4444;
  box-shadow:
    0 0 0 2px rgba(239, 68, 68, 0.14),
    0 2px 5px rgba(239, 68, 68, 0.32);
}

.platform-price-anomaly[hidden] {
  display: none;
}

.detail-price-row .vehicle-price-reminder {
  border: 1px solid rgba(47, 109, 246, 0.22);
  border-radius: 10px;
  padding: 10px 12px;
  color: #1d4ed8;
  background: #f3f7ff;
}

.detail-price-row .platform-price-panel {
  display: grid;
  gap: 10px;
  margin-top: 2px;
}

.platform-price-controls {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.platform-price-option-group {
  min-width: 0;
  display: grid;
  gap: 5px;
}

.platform-price-option-group > span {
  display: block;
  color: #536174;
  font-size: 11px;
  font-weight: 900;
}

.platform-price-dropdown .filter-select {
  min-height: 36px;
  border-color: #dce5f2;
  border-radius: 8px;
  padding: 0 34px 0 11px;
  background: #f7f9fc;
  box-shadow: none;
  font-size: 13px;
  font-weight: 820;
}

.platform-price-dropdown .filter-menu-toggle strong {
  color: #182333;
  font-size: 14px;
  font-weight: 880;
}

.platform-price-dropdown .filter-menu {
  max-height: 148px;
  border-color: rgba(47, 109, 246, 0.22);
  border-radius: 8px;
}

.platform-price-dropdown .filter-menu button {
  min-height: 32px;
  font-size: 12px;
  font-weight: 820;
}

.platform-price-dropdown .filter-menu button.active,
.platform-price-dropdown .filter-menu button:hover {
  color: #1d4ed8;
  background: #eef4ff;
}

.detail-price-row .platform-price-breakdown {
  overflow: hidden;
  border: 1px solid #dce5f2;
  border-radius: 8px;
  background: #fff;
}

.platform-price-breakdown summary {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 0 10px;
  color: #245edb;
  background: #f3f7ff;
  cursor: pointer;
  list-style: none;
  font-size: 12px;
  font-weight: 900;
}

.platform-price-breakdown summary::-webkit-details-marker {
  display: none;
}

.platform-price-breakdown summary small {
  color: #697586;
  font-size: 11px;
  font-weight: 840;
}

.platform-price-breakdown table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  color: #303948;
  font-size: 12px;
  line-height: 1.35;
}

.platform-price-breakdown th,
.platform-price-breakdown td {
  border-top: 1px solid rgba(47, 109, 246, 0.14);
  padding: 8px 10px;
  text-align: left;
  vertical-align: top;
}

.platform-price-breakdown thead th {
  border-top: 0;
  color: #1d4ed8;
  background: rgba(219, 234, 254, 0.72);
  font-size: 11px;
  font-weight: 900;
}

.platform-price-breakdown th:first-child {
  width: 60%;
}

.platform-price-breakdown th:last-child,
.platform-price-breakdown td:last-child {
  width: 40%;
  text-align: right;
}

.platform-price-breakdown tbody th {
  color: #303948;
  font-weight: 900;
}

.platform-price-breakdown tbody td {
  color: #697586;
  font-weight: 780;
  overflow-wrap: anywhere;
}

.platform-price-breakdown tbody td:last-child {
  color: #141b26;
  font-weight: 920;
  white-space: nowrap;
}

.platform-price-breakdown tbody tr.is-price-pending th,
.platform-price-breakdown tbody tr.is-price-pending td,
.platform-price-breakdown tbody tr.is-price-pending td:last-child {
  color: #d92d20;
}

.detail-quick-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 1px solid #eef2f7;
  border-radius: 8px;
  background: #fbfdff;
  overflow: hidden;
}

.detail-quick-facts div {
  min-width: 0;
  display: grid;
  gap: 5px;
  padding: 12px;
  text-align: left;
}

.detail-quick-facts div + div {
  border-left: 1px solid #eef2f7;
}

.detail-quick-facts div:nth-child(2n + 1) {
  border-left: 0;
}

.detail-quick-facts div:nth-child(n + 3) {
  border-top: 1px solid #eef2f7;
}

.detail-quick-facts div:only-child {
  grid-column: 1 / -1;
}

.detail-quick-facts strong {
  overflow: hidden;
  color: #182333;
  font-size: 15px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.detail-quick-facts span {
  color: #8a94a5;
  font-size: 12px;
  font-weight: 750;
}

.detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.detail-actions {
  margin-top: auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.detail-actions a,
.detail-actions button {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 8px;
  padding: 0 16px;
  color: #fff;
  background: #2f6df6;
  font: inherit;
  font-weight: 850;
  cursor: pointer;
}

.detail-actions .detail-source-link,
.detail-actions button.active {
  color: var(--next-green-dark);
  background: #eaf2ff;
}

.detail-actions .detail-consult-button {
  width: 100%;
  min-width: 128px;
  background: #2f6df6;
  box-shadow: 0 10px 22px rgba(47, 109, 246, 0.22);
}

.detail-consult-action {
  order: 1;
  display: inline-flex;
  min-width: 0;
}

.detail-actions .detail-consult-result-link {
  color: #1d4ed8;
  background: #eaf2ff;
}

.detail-actions .detail-source-link {
  order: 3;
  grid-column: 1 / -1;
}

.detail-actions .detail-favorite-button {
  order: 2;
  gap: 7px;
  color: #1d4ed8;
  background: #edf4ff;
  box-shadow: none;
}

.detail-actions .detail-favorite-button svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.detail-actions .detail-favorite-button.active {
  color: #fff;
  background: #e5484d;
  box-shadow: 0 10px 22px rgba(229, 72, 77, 0.2);
}

.detail-actions .detail-favorite-button.active svg {
  fill: currentColor;
}

.detail-actions .detail-favorite-button.is-loading,
.detail-actions .detail-favorite-button:disabled {
  opacity: 0.68;
  cursor: progress;
}

.detail-consult-error {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  color: #dc2626;
  font-size: 13px;
  font-weight: 850;
}

.vehicle-consultation-backdrop {
  position: fixed;
  inset: 0;
  z-index: 180;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(15, 23, 42, 0.45);
  backdrop-filter: blur(8px);
}

.vehicle-consultation-dialog {
  position: relative;
  width: min(560px, 100%);
  display: grid;
  gap: 18px;
  border: 1px solid rgba(156, 171, 193, 0.28);
  border-radius: 12px;
  padding: 24px;
  background: #fff;
  box-shadow: 0 30px 90px rgba(15, 23, 42, 0.24);
}

.vehicle-consultation-modal .ant-modal-content {
  border: 1px solid rgba(156, 171, 193, 0.28);
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 30px 90px rgba(15, 23, 42, 0.24);
}

.vehicle-consultation-modal .ant-modal-body {
  padding: 0;
}

.vehicle-consultation-modal .vehicle-consultation-dialog {
  width: auto;
  border: 0;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
}

.vehicle-consultation-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 999px;
  color: #7a8495;
  background: #f3f6fb;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.vehicle-consultation-head {
  display: grid;
  gap: 6px;
  padding-right: 40px;
}

.vehicle-consultation-head span {
  color: #2f6df6;
  font-size: 12px;
  font-weight: 900;
}

.vehicle-consultation-head h2 {
  margin: 0;
  color: #141b26;
  font-size: 26px;
  line-height: 1.2;
}

.vehicle-consultation-head p {
  margin: 0;
  color: #647085;
  font-weight: 760;
  line-height: 1.5;
}

.vehicle-consultation-form {
  display: grid;
  gap: 14px;
}

.vehicle-consultation-form label {
  display: grid;
  gap: 8px;
  color: #303948;
  font-weight: 850;
}

.vehicle-consultation-choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.vehicle-consultation-choice-group {
  position: relative;
  display: grid;
  gap: 8px;
  color: #303948;
  font-weight: 850;
}

.vehicle-consultation-dropdown {
  position: relative;
}

.vehicle-consultation-dropdown-toggle {
  width: 100%;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid #d9e1ec;
  border-radius: 8px;
  padding: 0 14px;
  color: #141b26;
  background: #fff;
  font: inherit;
  font-weight: 850;
  cursor: pointer;
}

.vehicle-consultation-dropdown-toggle::after {
  content: "";
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-right: 2px solid #647085;
  border-bottom: 2px solid #647085;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 160ms ease;
}

.vehicle-consultation-dropdown.is-open .vehicle-consultation-dropdown-toggle {
  outline: 2px solid rgba(47, 109, 246, 0.2);
  border-color: #2f6df6;
}

.vehicle-consultation-dropdown.is-open .vehicle-consultation-dropdown-toggle::after {
  transform: rotate(225deg) translate(-2px, -1px);
}

.vehicle-consultation-dropdown-menu {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 6px);
  z-index: 6;
  display: grid;
  gap: 4px;
  max-height: 220px;
  overflow-y: auto;
  border: 1px solid #d9e1ec;
  border-radius: 8px;
  padding: 6px;
  background: #fff;
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.16);
}

.vehicle-consultation-dropdown-menu[hidden] {
  display: none;
}

.vehicle-consultation-dropdown-menu button {
  min-width: 0;
  min-height: 36px;
  display: flex;
  align-items: center;
  border: 0;
  border-radius: 6px;
  padding: 0 10px;
  color: #334155;
  background: transparent;
  font: inherit;
  font-weight: 780;
  text-align: left;
  cursor: pointer;
  transition:
    background 160ms ease,
    color 160ms ease;
}

.vehicle-consultation-dropdown-menu button:hover,
.vehicle-consultation-dropdown-menu button:focus-visible {
  color: #1d4ed8;
  background: #eef4ff;
  outline: 0;
}

.vehicle-consultation-dropdown-menu button.active {
  color: #1d4ed8;
  background: #eef4ff;
  font-weight: 900;
}

.vehicle-consultation-form input,
.vehicle-consultation-form textarea {
  width: 100%;
  border: 1px solid #d9e1ec;
  border-radius: 8px;
  padding: 12px 14px;
  color: #141b26;
  font: inherit;
  line-height: 1.55;
}

.vehicle-consultation-form textarea {
  resize: vertical;
}

.vehicle-consultation-form input:focus,
.vehicle-consultation-form textarea:focus {
  outline: 2px solid rgba(47, 109, 246, 0.2);
  border-color: #2f6df6;
}

.vehicle-consultation-form [data-consultation-error] {
  min-height: 20px;
  margin: 0;
  color: #dc2626;
  font-weight: 780;
}

.vehicle-consultation-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.vehicle-consultation-actions button,
.vehicle-consultation-success a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 0 18px;
  color: #fff;
  background: #2f6df6;
  font: inherit;
  font-weight: 850;
  text-decoration: none;
  cursor: pointer;
}

.vehicle-consultation-actions button:first-child {
  color: #2f6df6;
  background: #eef4ff;
}

.vehicle-consultation-actions button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.vehicle-consultation-success {
  display: grid;
  gap: 12px;
  border: 1px solid rgba(15, 143, 127, 0.2);
  border-radius: 10px;
  padding: 18px;
  background: rgba(15, 143, 127, 0.08);
}

.vehicle-consultation-success strong {
  color: #0f8f7f;
  font-size: 20px;
}

.vehicle-consultation-success span {
  color: #536174;
  line-height: 1.6;
  font-weight: 760;
}

.detail-anchor-nav {
  position: sticky;
  top: 58px;
  z-index: 2;
  display: flex;
  gap: 8px;
  min-height: 44px;
  align-items: center;
  padding: 6px 8px;
  border: 1px solid rgba(156, 171, 193, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 8px 22px rgba(32, 44, 68, 0.05);
  backdrop-filter: blur(14px);
}

.detail-anchor-nav a {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  border-radius: 6px;
  padding: 0 12px;
  color: #3b4554;
  font-size: 13px;
  font-weight: 820;
  white-space: nowrap;
}

.detail-anchor-nav a:hover {
  color: var(--next-green-dark);
  background: #eaf2ff;
}

.detail-overview-panel {
  padding: 18px;
}

.platform-detail-section,
.platform-detail-feature-section {
  box-shadow: 0 10px 26px rgba(32, 44, 68, 0.05);
}

.platform-inspection-report {
  border: 1px solid rgba(35, 97, 203, 0.12);
  background:
    linear-gradient(180deg, rgba(235, 244, 255, 0.88), rgba(255, 255, 255, 0.96) 45%),
    #fff;
  box-shadow: 0 18px 48px rgba(32, 44, 68, 0.1);
}

.platform-inspection-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 12px;
}

.platform-inspection-head .detail-panel-heading {
  margin-bottom: 0;
}

.platform-inspection-head > strong {
  min-width: 72px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(39, 93, 245, 0.16);
  border-radius: 12px;
  padding: 0 14px;
  color: #275df5;
  background: #edf4ff;
  font-size: 22px;
  line-height: 1;
}

.platform-inspection-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.platform-inspection-badges span {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0 11px;
  color: #0f766e;
  background: #e7f7f3;
  font-size: 13px;
  font-weight: 900;
  box-shadow: inset 0 0 0 1px rgba(15, 118, 110, 0.12);
}

.platform-inspection-description {
  margin: 0 0 14px;
  color: #536174;
  font-weight: 760;
  line-height: 1.7;
}

.platform-inspection-section-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 12px;
}

.platform-inspection-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  min-height: 82px;
  border: 1px solid #edf1f6;
  border-radius: 12px;
  padding: 12px;
  background: #fff;
}

.platform-inspection-section h3 {
  margin: 0 0 4px;
  color: #182333;
  font-size: 16px;
  line-height: 1.2;
}

.platform-inspection-section p {
  margin: 0;
  color: #7a8596;
  font-weight: 800;
  line-height: 1.35;
}

.platform-inspection-rows {
  margin-top: 12px;
}

.platform-inspection-link {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  margin-top: 14px;
  border-radius: 999px;
  padding: 0 16px;
  color: #fff;
  background: #275df5;
  font-weight: 900;
  text-decoration: none;
}

.platform-inspection-link:hover {
  color: #fff;
  background: #1f4bd1;
}

.detail-overview-panel h2 {
  margin: 0;
  padding: 0;
}

.detail-panel-heading {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.detail-panel-heading span {
  min-height: 22px;
  display: inline-flex;
  align-items: center;
  border-radius: 6px;
  padding: 0 8px;
  color: var(--next-green-dark);
  background: #eaf2ff;
  font-size: 11px;
  font-weight: 850;
}

.vehicle-detail-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: 12px;
}

.vehicle-detail-panel {
  padding: 18px;
}

.vehicle-detail-panel h2 {
  margin: 0 0 16px;
  color: #141b26;
  font-size: 17px;
}

.vehicle-detail-panel dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 0;
}

.vehicle-detail-panel .detail-field-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.vehicle-detail-panel dl div,
.vehicle-detail-panel .detail-field-row {
  min-height: 54px;
  border: 1px solid #e6ebf2;
  border-radius: 6px;
  padding: 10px 12px;
  background: #f8fafc;
}

.vehicle-detail-panel dt {
  margin-bottom: 4px;
  color: #7a8596;
  font-size: 11px;
  font-weight: 750;
}

.vehicle-detail-panel dd {
  margin: 0;
  color: #182333;
  font-size: 14px;
  font-weight: 850;
  overflow-wrap: anywhere;
}

.detail-field-row.pending dd {
  color: #9aa4b2;
}

.detail-field-row dd a {
  color: #275df5;
  text-decoration: none;
}

.detail-field-row dd a:hover {
  text-decoration: underline;
}

.platform-detail-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.platform-detail-feature-group {
  min-width: 0;
  border: 1px solid #edf1f6;
  border-radius: 10px;
  padding: 16px;
  background: #f5f8fc;
}

.platform-detail-feature-group h3 {
  margin: 0 0 12px;
  color: #182333;
  font-size: 16px;
  line-height: 1.25;
}

.platform-detail-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.platform-detail-chip-list span {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0 10px;
  color: #2d3748;
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(151, 163, 184, 0.28);
  font-size: 12px;
  font-weight: 850;
}

.vehicle-detail-panel p {
  margin: 0;
  color: #667085;
  line-height: 1.8;
}

.detail-condition-list {
  display: grid;
  gap: 12px;
}

.detail-condition-list div {
  border-radius: 12px;
  padding: 14px;
  background: #f5f8fc;
}

.detail-condition-list strong,
.detail-condition-list span {
  display: block;
}

.detail-condition-list strong {
  margin-bottom: 6px;
  color: #182333;
}

.detail-condition-list span {
  color: #667085;
  line-height: 1.65;
}

.detail-media-panel,
.detail-notes-panel {
  grid-column: 1 / -1;
}

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

.detail-media-card,
.detail-media-empty {
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border: 1px solid #edf1f6;
  border-radius: 10px;
  background: #f5f8fc;
}

.detail-media-card {
  position: relative;
  display: grid;
  place-items: center;
  padding: 0;
  color: inherit;
  font: inherit;
  cursor: pointer;
}

.detail-media-grid img,
.detail-media-grid video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-media-grid .image-failed {
  display: none;
}

.detail-media-video {
  padding: 12px;
  color: #fff;
  background: linear-gradient(135deg, #111827, #26344d);
}

.detail-media-video video {
  position: absolute;
  inset: 0;
  opacity: 0.42;
}

.detail-media-play {
  position: relative;
  z-index: 1;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.58);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.22);
}

.detail-media-play::before {
  content: "";
  width: 0;
  height: 0;
  margin-left: 3px;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 12px solid #fff;
}

.detail-media-video strong,
.detail-media-video small {
  position: relative;
  z-index: 1;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.detail-media-video strong {
  margin-top: 8px;
  font-size: 14px;
}

.detail-media-video small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
}

.detail-media-empty {
  display: grid;
  grid-column: 1 / -1;
  place-items: center;
  color: #8a94a5;
  font-weight: 750;
}

@media (max-width: 1220px) {
  .next-car-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .vehicle-detail-layout,
  .vehicle-detail-grid {
    grid-template-columns: 1fr;
  }

  .vehicle-detail-gallery {
    --detail-gallery-height: clamp(360px, 56vw, 680px);
  }

  .vehicle-detail-main {
    display: contents;
  }

  .vehicle-detail-gallery {
    order: 1;
  }

  .vehicle-detail-side {
    order: 2;
    position: static;
  }

  .detail-anchor-nav {
    order: 3;
  }

  .vehicle-detail-main > .vehicle-detail-panel,
  .vehicle-detail-main > .vehicle-detail-grid {
    order: 4;
  }
}

@media (max-width: 980px) {
  .vehicle-detail-gallery {
    --detail-gallery-height: clamp(280px, 62vw, 560px);
    grid-template-columns: 1fr;
  }

  .detail-thumb-shell {
    order: 2;
    height: auto;
    max-height: none;
    min-height: 0;
  }

  .detail-thumb-rail {
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 7px;
    scrollbar-gutter: auto;
  }

  .detail-thumb-rail button {
    flex: 0 0 64px;
  }

  .vehicle-detail-media {
    min-height: 0;
  }

  .detail-image-overlay {
    top: 12px;
    right: 12px;
    bottom: auto;
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .detail-image-viewer {
    padding: 8px;
  }

  .detail-viewer-dialog {
    width: 100%;
    height: 92vh;
    min-height: 0;
    border-radius: 12px;
  }

  .detail-viewer-head {
    min-height: 48px;
    padding: 8px 10px 8px 12px;
  }

  .detail-viewer-footer {
    justify-content: flex-start;
    overflow-x: auto;
    padding: 8px;
  }

  .detail-viewer-toolbar {
    flex: 0 0 max-content;
    justify-content: flex-start;
    flex-wrap: nowrap;
  }

  .detail-viewer-toolbar button {
    min-width: 36px;
    height: 34px;
    padding: 0 9px;
  }

  .detail-viewer-nav {
    width: 46px;
    height: 66px;
    border-radius: 15px;
  }

  .detail-viewer-prev {
    left: 10px;
  }

  .detail-viewer-next {
    right: 10px;
  }

  .detail-anchor-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    overflow: visible;
    top: 54px;
    gap: 8px;
    padding: 10px;
  }

  .detail-anchor-nav a {
    justify-content: center;
    padding: 0 10px;
  }

  .detail-anchor-nav::-webkit-scrollbar {
    display: none;
  }

  .detail-quick-facts,
  .vehicle-detail-panel .detail-field-grid,
  .customer-feedback-detail-dialog .detail-field-grid,
  .customer-feedback-detail-dialog .customer-feedback-primary-panel .detail-field-grid,
  .customer-vehicle-detail-page .detail-field-grid,
  .customer-vehicle-detail-page .customer-vehicle-primary-panel .detail-field-grid,
  .platform-detail-feature-grid,
  .platform-inspection-section-grid,
  .detail-media-grid,
  .customer-intent-facts,
  .customer-inquiry-facts,
  .customer-intent-detail-fields,
  .customer-feedback-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .customer-center-layout,
  .customer-intent-card,
  .customer-intent-card.customer-demand-card,
  .customer-intent-detail-panel,
  .customer-feedback-card {
    grid-template-columns: 1fr;
  }

  .customer-intent-card.customer-inquiry-card {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .customer-inquiry-summary {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    border-left: 0;
    border-top: 1px solid rgba(151, 164, 184, 0.18);
    padding: 14px 18px;
    background: #fff;
  }

  .customer-inquiry-summary .customer-inquiry-updated {
    grid-column: 1 / -1;
  }

  .customer-inquiry-action-rail {
    grid-template-columns: 1fr;
    align-items: center;
    justify-items: end;
    border-left: 0;
    border-top: 1px dashed rgba(151, 164, 184, 0.28);
    padding: 12px 18px;
  }

  .customer-center-menu {
    position: static;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    border-right: 0;
    border-bottom: 1px solid rgba(156, 171, 193, 0.18);
    padding: 0 0 12px;
  }

  .customer-center-menu > a,
  .customer-center-menu-demand {
    min-width: 0;
    background: rgba(255, 255, 255, 0.58);
  }

  .customer-demand-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .customer-demand-description-field,
  .customer-demand-form [data-customer-demand-create-error],
  .customer-demand-form-actions {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .customer-intent-image {
    min-height: 220px;
  }

  .customer-inquiry-image {
    min-height: 220px;
    height: auto;
    aspect-ratio: 16 / 10;
    border-right: 0;
    border-bottom: 1px solid rgba(156, 171, 193, 0.18);
  }

  .customer-intent-detail-media,
  .customer-feedback-image {
    min-height: 240px;
  }

  .customer-intent-detail-fields div:nth-child(5n),
  .customer-inquiry-facts div:last-child,
  .customer-feedback-facts div:last-child {
    border-right: 1px solid rgba(156, 171, 193, 0.16);
  }

  .customer-intent-detail-fields div:nth-child(2n),
  .customer-inquiry-facts div:nth-child(2n),
  .customer-feedback-facts div:nth-child(2n) {
    border-right: 0;
  }

  .customer-intent-detail-fields div:nth-child(n + 3),
  .customer-inquiry-facts div:nth-child(n + 3),
  .customer-feedback-facts div:nth-child(n + 3) {
    border-top: 1px solid rgba(156, 171, 193, 0.16);
  }

  .detail-quick-facts div:nth-child(3) {
    border-left: 0;
    border-top: 1px solid #eef2f7;
  }

  .detail-quick-facts div:nth-child(4) {
    border-top: 1px solid #eef2f7;
  }

  .next-header {
    flex-wrap: wrap;
    gap: 12px;
    padding: 12px 16px;
  }

  .next-nav {
    order: 3;
    flex: 1 1 100%;
    margin-left: 0;
    justify-content: flex-start;
    gap: 8px;
    border: 0;
    border-radius: 0;
    padding: 0;
    background: transparent;
    box-shadow: none;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .next-nav a {
    border-radius: 0;
    padding: 0 12px;
  }

  .next-nav a:hover,
  .next-nav a.active {
    background: transparent;
    box-shadow: none;
  }

  .next-nav a.active::after {
    left: 12px;
    right: 12px;
    bottom: -17px;
    height: 3px;
  }

  .customer-global-actions {
    order: 2;
    flex: 1 1 100%;
    max-width: 100%;
    margin-left: 0;
    padding-left: 0;
    border-left: 0;
    gap: 8px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .customer-message-popover {
    position: fixed;
    top: 132px;
    right: 16px;
    left: 16px;
    width: auto;
    max-height: calc(100dvh - 148px);
    overflow-y: auto;
  }

  .customer-account-popover {
    position: fixed;
    top: 124px;
    right: 16px;
    left: 16px;
    width: auto;
    max-height: calc(100dvh - 140px);
    overflow-y: auto;
  }

  .next-nav::-webkit-scrollbar {
    display: none;
  }

  .customer-global-actions::-webkit-scrollbar {
    display: none;
  }

  .next-main {
    padding: 14px 12px 42px;
  }

  .next-hero {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 14px;
    min-height: auto;
    padding: 18px;
  }

  .hero-copy {
    gap: 12px;
  }

  .home-entry-grid {
    grid-template-columns: 1fr;
  }

  .home-about-nav {
    top: 70px;
  }

  .home-company-layout,
  .home-pricing-layout,
  .home-feedback-layout,
  .home-two-column-standards {
    grid-template-columns: 1fr;
  }

  .home-principle-grid,
  .home-standard-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-copy h1 {
    max-width: 100%;
    font-size: 34px;
    overflow-wrap: anywhere;
    word-break: break-all;
  }

  .hero-vehicle-card {
    height: clamp(190px, 28vw, 220px);
    min-height: 0;
  }

  .inventory-toolbar {
    display: grid;
    align-items: start;
  }

  .sort-links {
    justify-content: flex-start;
  }
}

@media (max-width: 680px) {
  .platform-detail-feature-grid,
  .platform-inspection-section-grid {
    grid-template-columns: 1fr;
  }

  .vehicle-trade-reminder {
    padding: 10px 12px;
  }

  .vehicle-trade-reminder h2 {
    font-size: 12px;
  }

  .vehicle-trade-reminder p {
    font-size: 12px;
  }

  .floating-agent {
    right: 16px;
    bottom: 16px;
    width: 60px;
    height: 60px;
    border-width: 3px;
  }

  body[data-page="image-card-home"] .floating-agent {
    right: 12px;
    bottom: 12px;
    width: 52px;
    height: 52px;
  }

  .customer-agent-dialog {
    right: 8px;
    bottom: 8px;
    width: calc(100vw - 16px);
    height: min(680px, calc(100svh - 16px));
  }

  .customer-agent-panel {
    border-radius: 24px;
  }

  .customer-agent-head {
    min-height: 68px;
    padding: 10px 14px;
  }

  .customer-agent-history-panel {
    top: 68px;
    border-right: 0;
  }

  .customer-agent-title strong {
    font-size: 21px;
  }

  .customer-agent-thread {
    padding: 16px 18px;
  }

  .customer-agent-bubble {
    font-size: 16px;
  }

  .customer-agent-composer {
    grid-template-columns: minmax(0, 1fr) 52px;
    padding: 14px 18px 18px;
  }

  .customer-agent-composer textarea,
  .customer-agent-composer button {
    min-height: 52px;
    height: 52px;
  }

  .next-logo {
    width: 158px;
    min-height: 44px;
  }

  .next-logo img {
    max-height: 44px;
  }

  .customer-tool-button,
  .customer-message-button,
  .customer-quick-link,
  .customer-language-button {
    width: 42px;
    min-width: 42px;
    height: 42px;
    min-height: 42px;
    padding: 0;
  }

  .customer-account-button {
    width: 42px;
    min-width: 42px;
    height: 42px;
    min-height: 42px;
    padding: 0;
  }

  .customer-message-button span {
    display: none;
  }

  .customer-message-count {
    position: absolute;
    top: -5px;
    right: -5px;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    font-size: 10px;
  }

  .customer-account-button span {
    display: none;
  }

  .customer-current-language {
    display: none;
  }

  .customer-current-language-short {
    display: inline;
    font-size: 12px;
    font-weight: 900;
  }

  .customer-tool-popover {
    right: 0;
  }

	  .customer-center-heading,
	  .customer-center-heading-actions,
	  .customer-demand-card-title,
	  .customer-intent-title-row,
  .customer-intent-bottom,
  .customer-inquiry-title-row,
  .customer-inquiry-bottom,
  .customer-inquiry-status-row,
  .customer-inquiry-actions,
  .customer-intent-detail-title,
  .customer-feedback-section-head,
  .customer-feedback-title-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .customer-center-heading-actions {
    width: 100%;
  }

  .customer-inquiry-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .customer-inquiry-search-tools,
  .customer-inquiry-search {
    width: 100%;
  }

  .customer-inquiry-search {
    min-width: 0;
  }

  .customer-inquiry-source-tabs {
    width: 100%;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .customer-inquiry-source-tabs::-webkit-scrollbar {
    display: none;
  }

  .customer-inquiry-source-summary {
    justify-items: start;
  }

  .customer-inquiry-actions,
  .customer-inquiry-actions a,
  .customer-inquiry-actions button {
    width: auto;
  }

  .customer-inquiry-action-rail {
    grid-template-columns: auto;
    justify-content: end;
    justify-items: end;
  }

  .customer-center-heading-actions button {
    width: 100%;
    justify-content: center;
  }

  .customer-demand-form,
  .customer-demand-form label.wide,
  .customer-demand-description-field,
  .customer-demand-form [data-customer-demand-create-error],
  .customer-demand-form-actions {
    grid-template-columns: 1fr;
    grid-column: 1;
    grid-row: auto;
  }

  .next-hero {
    border-radius: 14px;
    padding: 16px;
    gap: 12px;
  }

  .hero-copy h1 {
    font-size: 25px;
    line-height: 1.14;
  }

  .hero-copy h1 span {
    display: block;
  }

  .hero-copy p {
    font-size: 14px;
    line-height: 1.58;
  }

  .hero-actions a:not(.primary-hero-action) {
    display: none;
  }

  .hero-vehicle-card {
    height: 150px;
    min-height: 150px;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .hero-proof-points {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .hero-metrics div {
    min-height: 68px;
  }

  .hero-proof-points div {
    min-height: 74px;
    padding: 10px 8px;
  }

  .hero-proof-points strong {
    font-size: 22px;
  }

  .hero-proof-points span {
    font-size: 11px;
    line-height: 1.35;
  }

  .home-about-nav {
    top: 64px;
    margin-top: 12px;
  }

  .home-about-section,
  .home-standard-section,
  .home-feedback-section,
  .home-two-column-standards {
    margin-top: 26px;
  }

  .home-section-head h2,
  .home-section-head.compact h2 {
    font-size: 24px;
  }

  .home-story {
    padding-left: 14px;
  }

  .home-principle-grid,
  .home-standard-grid {
    grid-template-columns: 1fr;
  }

  .home-two-column-standards > article,
  .pricing-section,
  .home-pricing-card,
  .home-pricing-rules {
    padding: 18px;
  }

  .home-pricing-card strong {
    font-size: 30px;
  }

  .home-feedback-layout ul {
    grid-template-columns: 1fr;
  }

  .home-feedback-layout li,
  .home-feedback-layout li:nth-child(2n),
  .home-feedback-layout li:nth-last-child(-n + 2) {
    border-right: 0;
    border-bottom: 1px solid rgba(156, 171, 193, 0.18);
  }

  .home-feedback-layout li:last-child {
    border-bottom: 0;
  }

  .customer-center-menu {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    flex-wrap: nowrap;
    scrollbar-width: none;
  }

  .customer-center-menu > a,
  .customer-center-menu-demand {
    flex: 0 0 170px;
  }

  .customer-center-menu::-webkit-scrollbar {
    display: none;
  }

  .customer-center-content {
    padding: 0;
  }

	  .customer-center-heading,
	  .customer-demand-card-title,
	  .customer-intent-title-row,
  .customer-intent-bottom,
  .customer-inquiry-title-row,
  .customer-inquiry-bottom,
  .customer-inquiry-status-row,
  .customer-inquiry-actions,
  .customer-intent-detail-title,
  .customer-feedback-section-head,
  .customer-feedback-title-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .customer-intent-image {
    min-height: 180px;
  }

  .customer-inquiry-image {
    min-height: 180px;
  }

  .customer-intent-facts,
  .customer-inquiry-facts,
  .customer-intent-detail-fields,
  .customer-feedback-facts {
    grid-template-columns: 1fr;
  }

  .customer-intent-facts div,
  .customer-inquiry-facts div,
  .customer-intent-detail-fields div,
  .customer-feedback-facts div {
    border-right: 0;
    border-bottom: 1px solid rgba(156, 171, 193, 0.16);
  }

  .customer-intent-facts div:last-child,
  .customer-inquiry-facts div:last-child,
  .customer-intent-detail-fields div:last-child,
  .customer-feedback-facts div:last-child {
    border-bottom: 0;
  }

  .customer-intent-detail-fields div:nth-child(n + 3),
  .customer-inquiry-facts div:nth-child(n + 3),
  .customer-intent-detail-fields div:nth-child(n + 6),
  .customer-feedback-facts div:nth-child(n + 3) {
    border-top: 0;
  }

  .vehicle-consultation-backdrop {
    align-items: end;
    padding: 10px;
  }

  .vehicle-consultation-dialog {
    max-height: calc(100vh - 20px);
    overflow-y: auto;
    border-radius: 14px;
    padding: 20px;
  }

  .customer-feedback-dialog {
    max-height: calc(100vh - 20px);
    grid-template-columns: 1fr;
    overflow-y: auto;
    border-radius: 14px;
  }

  .customer-feedback-record-dialog {
    max-height: calc(100vh - 20px);
    overflow-y: auto;
    border-radius: 14px;
  }

  .customer-feedback-record-summary {
    grid-template-columns: 1fr;
  }

  .customer-feedback-record-media {
    height: 160px;
  }

  .customer-feedback-record-summary h2 {
    font-size: 22px;
  }

  .customer-feedback-record-fields {
    grid-template-columns: 1fr;
  }

  .customer-feedback-record-fields div,
  .customer-feedback-record-fields div:nth-child(2n) {
    border-right: 0;
    border-bottom: 1px solid rgba(156, 171, 193, 0.16);
  }

  .customer-feedback-record-fields div:last-child {
    border-bottom: 0;
  }

  .customer-inquiry-detail-dialog {
    max-height: calc(100vh - 20px);
    overflow-y: auto;
    border-radius: 14px;
  }

  .customer-inquiry-detail-summary {
    grid-template-columns: 1fr;
  }

  .customer-inquiry-detail-media {
    height: 160px;
  }

  .customer-inquiry-detail-summary h2 {
    font-size: 22px;
  }

  .customer-inquiry-detail-body {
    padding: 20px;
  }

  .customer-inquiry-detail-fields {
    grid-template-columns: 1fr;
  }

  .customer-inquiry-detail-fields div,
  .customer-inquiry-detail-fields div:nth-child(2n) {
    border-right: 0;
    border-bottom: 1px solid rgba(156, 171, 193, 0.16);
  }

  .customer-inquiry-detail-fields div:last-child {
    border-bottom: 0;
  }

  .customer-feedback-detail-dialog {
    width: min(100%, calc(100vw - 20px));
    padding: 12px;
  }

  .customer-feedback-detail-dialog .vehicle-detail-layout {
    grid-template-columns: 1fr;
  }

  .customer-feedback-detail-dialog .vehicle-detail-gallery {
    --detail-gallery-height: min(48vh, 360px);
  }

  .customer-feedback-detail-dialog .vehicle-detail-media {
    min-height: 260px;
  }

  .customer-feedback-dialog-media {
    min-height: 260px;
    max-height: 42vh;
  }

  .customer-feedback-dialog-body {
    padding: 20px;
  }

  .vehicle-consultation-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .vehicle-consultation-choice-grid {
    grid-template-columns: 1fr;
  }

  .filter-head,
  .filter-group,
  .brand-cloud,
  .customer-sort-panel,
  .picked-row {
    padding-left: 14px;
    padding-right: 14px;
  }

  .filter-matrix {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    padding: 12px 14px;
  }

  .filter-group {
    grid-template-columns: minmax(0, 1fr);
  }

  .filter-name {
    font-size: 12px;
  }

  .keyword-group {
    grid-column: 1 / -1;
  }

  .customer-sort-panel {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    padding-top: 0;
  }

  .customer-sort-label {
    padding-top: 0;
  }

  .filter-select-wrap,
  .brand-dropdown {
    width: 100%;
  }

  .picked-row {
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 10px;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .picked-values {
    width: 100%;
  }

  .filter-actions {
    width: 100%;
    justify-content: flex-end;
  }

  .live-search-status,
  .live-search-status-head,
  .platform-result-tags {
    justify-content: flex-start;
    text-align: left;
  }

  .live-search-status-head {
    flex-wrap: wrap;
  }

  .price-box {
    grid-column: 2;
    justify-self: start;
    margin-top: 4px;
  }

  .brand-cloud {
    padding-left: 14px;
  }

  .brand-cloud button {
    min-width: 108px;
  }

  .next-car-grid {
    grid-template-columns: 1fr;
  }

  .detail-quick-facts,
  .vehicle-detail-panel .detail-field-grid,
  .customer-feedback-detail-dialog .detail-field-grid,
  .customer-feedback-detail-dialog .customer-feedback-primary-panel .detail-field-grid,
  .customer-vehicle-detail-page .detail-field-grid,
  .customer-vehicle-detail-page .customer-vehicle-primary-panel .detail-field-grid,
  .detail-media-grid {
    grid-template-columns: 1fr;
  }

  .detail-quick-facts div + div {
    border-left: 0;
    border-top: 1px solid #eef2f7;
  }

  .detail-actions a,
  .detail-actions button {
    flex: 1 1 100%;
  }
}

@media (max-width: 430px) {
  .filter-matrix {
    grid-template-columns: 1fr;
  }

  .keyword-group {
    grid-column: auto;
  }

  .brand-option-list {
    grid-template-columns: 1fr;
  }
}

/* VERAX Honey-style image homepage */
body[data-portal="customer"][data-page="image-card-home"] {
  --honey-page: #fff;
  --honey-ink: #111722;
  --honey-muted: #697586;
  --honey-line: rgba(17, 24, 39, 0.1);
  --honey-blue: #2f6df6;
  --honey-blue-ink: #174ea6;
  --honey-blue-soft: rgba(47, 109, 246, 0.08);
  background: #fff;
  color: var(--honey-ink);
  overflow-x: hidden;
}

body[data-page="image-card-home"] .next-car-home {
  min-height: 100svh;
  background: transparent;
}

.honey-home-page {
  --honey-stack-edge: #061d33;
  --honey-stack-edge-height: 1px;
  --honey-stack-total-reveal: 0px;
  --honey-stack-bottom-clearance: 22px;
  --honey-stack-card-height: calc(100svh - var(--honey-stack-top) - var(--honey-stack-total-reveal) - var(--honey-stack-bottom-clearance));
  --honey-stack-card-margin: 0px;
  --honey-stack-card-top-offset: 20px;
  --honey-stack-bottom-space: 0px;
  --honey-stack-top: 68px;
  width: min(1500px, calc(100% - 56px));
  position: relative;
  display: block;
  margin: 0 auto;
  padding: 0 0 var(--honey-stack-bottom-clearance);
  isolation: isolate;
}

.honey-stack-cards {
  --numcards: 1;
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(var(--numcards), var(--honey-stack-card-height));
  gap: var(--honey-stack-card-margin);
  margin: 0;
  padding: 0 0 var(--honey-stack-bottom-space);
  list-style: none;
}

.honey-stack-card {
  --index: 1;
  --honey-stack-card-stick-top: var(--honey-stack-top);
  min-width: 0;
  position: sticky;
  top: var(--honey-stack-card-stick-top);
  z-index: var(--index);
  box-sizing: border-box;
  padding-top: 0;
}

body[data-page="image-card-home"] .honey-stack-card:not(.is-active) .honey-stack-content {
  cursor: pointer;
}

body[data-page="image-card-home"] .honey-stack-card a,
body[data-page="image-card-home"] .honey-stack-card button {
  cursor: pointer;
}

.honey-stack-card:nth-child(2) {
  --index: 2;
  --honey-stack-card-stick-top: calc(var(--honey-stack-top) + var(--honey-stack-card-top-offset));
}

.honey-stack-card:nth-child(3) {
  --index: 3;
  --honey-stack-card-stick-top: calc(var(--honey-stack-top) + var(--honey-stack-card-top-offset) + var(--honey-stack-card-top-offset));
}

.honey-stack-card:nth-child(4) {
  --index: 4;
  --honey-stack-card-stick-top: calc(var(--honey-stack-top) + var(--honey-stack-card-top-offset) + var(--honey-stack-card-top-offset) + var(--honey-stack-card-top-offset));
}

.honey-stack-card:nth-child(5) {
  --index: 5;
  --honey-stack-card-stick-top: calc(var(--honey-stack-top) + var(--honey-stack-card-top-offset) + var(--honey-stack-card-top-offset) + var(--honey-stack-card-top-offset) + var(--honey-stack-card-top-offset));
}

.honey-stack-content {
  min-width: 0;
  height: var(--honey-stack-card-height);
}

.honey-frame-panel.honey-hero-card,
.honey-frame-panel.honey-service-poster {
  position: relative;
  top: auto;
  z-index: auto;
  width: 100%;
  min-height: var(--honey-stack-card-height);
  height: var(--honey-stack-card-height);
  box-sizing: border-box;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  filter: none;
  box-shadow:
    0 18px 44px rgba(15, 33, 55, 0.12),
    0 0 0 1px rgba(30, 53, 84, 0.08);
}

@supports not (min-height: 100svh) {
  .honey-home-page {
    --honey-stack-card-height: calc(100vh - var(--honey-stack-top) - var(--honey-stack-total-reveal) - 22px);
  }

  .honey-frame-panel.honey-hero-card,
  .honey-frame-panel.honey-service-poster {
    min-height: var(--honey-stack-card-height);
  }
}

.honey-hero-card,
.honey-wide-card,
.honey-image-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--honey-line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 28px 80px rgba(58, 89, 122, 0.18);
}

.honey-hero-card {
  --hero-shift-x: 0px;
  --hero-shift-y: 0px;
  min-height: var(--honey-stack-card-height);
  color: #111827;
  background: #ecf3f8;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  box-shadow:
    0 18px 44px rgba(15, 33, 55, 0.12),
    0 0 0 1px rgba(30, 53, 84, 0.08);
  animation: none;
}

@supports not (min-height: 100svh) {
  .honey-hero-card {
    min-height: var(--honey-stack-card-height);
  }
}

.honey-hero-card::before,
.honey-hero-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.honey-hero-card::before {
  inset: -24%;
  background:
    radial-gradient(circle at 17% 42%, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0) 22%),
    linear-gradient(112deg, rgba(255, 231, 174, 0.28) 0, rgba(255, 255, 255, 0) 38%, rgba(82, 148, 232, 0.14) 100%);
  mix-blend-mode: screen;
  opacity: 0.72;
  transform: translate3d(-4%, 0, 0);
  animation: none;
}

.honey-hero-card::after {
  background:
    linear-gradient(90deg, rgba(250, 253, 255, 0.9) 0, rgba(250, 253, 255, 0.66) 37%, rgba(250, 253, 255, 0.16) 63%, rgba(250, 253, 255, 0) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(28, 76, 118, 0.06));
}

.honey-hero-media,
.honey-hero-media > img,
.honey-wide-card > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.honey-hero-media {
  opacity: 1;
  transform: none;
  animation: none;
}

.honey-hero-media > img,
.honey-wide-card > img {
  object-fit: cover;
  object-position: center;
}

.honey-hero-media > img {
  transform: translate3d(calc(var(--hero-shift-x) * -1), calc(var(--hero-shift-y) * -1), 0) scale(1.035);
  transform-origin: center;
}

.honey-poster-card {
  min-height: var(--honey-stack-card-height);
  background:
    radial-gradient(circle at 50% 24%, rgba(105, 173, 235, 0.16), rgba(105, 173, 235, 0) 32%),
    #f4f9ff;
}

.honey-poster-card::before {
  inset: 0 0 auto;
  z-index: 2;
  height: 1px;
  display: block;
  background: rgba(6, 29, 51, 0.32);
  mix-blend-mode: normal;
  opacity: 1;
  transform: none;
  animation: none;
}

.honey-poster-card::after {
  display: block;
  background:
    linear-gradient(90deg, rgba(4, 14, 28, 0.66) 0, rgba(4, 14, 28, 0.5) 30%, rgba(4, 14, 28, 0.24) 50%, rgba(4, 14, 28, 0.06) 72%, rgba(4, 14, 28, 0) 100%),
    linear-gradient(180deg, rgba(8, 22, 38, 0.02) 0, rgba(8, 22, 38, 0.08) 100%);
}

.honey-poster-media {
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 32%, rgba(75, 158, 236, 0.16), rgba(75, 158, 236, 0) 36%),
    linear-gradient(180deg, rgba(245, 250, 255, 0.25), rgba(245, 250, 255, 0.54)),
    #edf7ff;
}

.honey-poster-media::before {
  content: "";
  position: absolute;
  inset: -28px;
  background: url("/static/assets/home2-hero-china-source-network.png") center / cover no-repeat;
  filter: blur(34px) saturate(1.04);
  opacity: 0.12;
  transform: scale(1.08);
}

.honey-poster-card .honey-hero-media > img {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  padding: 0;
  object-fit: cover;
  object-position: center;
  transform: translate3d(calc(var(--hero-shift-x) * -0.22), calc(var(--hero-shift-y) * -0.18), 0) scale(1.01);
  filter: saturate(1.04) contrast(1.015);
}

.honey-hero-message {
  position: absolute;
  left: clamp(34px, 5rem, 80px);
  top: 50%;
  z-index: 3;
  width: min(500px, calc(100% - 84px));
  display: grid;
  gap: 15px;
  color: rgba(255, 255, 255, 0.82);
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.22);
  opacity: 1;
  transform: translate3d(0, -50%, 0);
  animation: none;
}

.honey-hero-message span {
  width: fit-content;
  max-width: 100%;
  border-radius: 999px;
  padding: 8px 12px;
  color: rgba(231, 243, 255, 0.76);
  background: rgba(8, 22, 38, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 13px;
  line-height: 1.1;
  font-weight: 780;
  overflow-wrap: anywhere;
  backdrop-filter: blur(12px);
}

.honey-hero-message h1 {
  max-width: 100%;
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(36px, 3.25rem, 52px);
  line-height: 1.08;
  font-weight: 860;
  letter-spacing: 0;
  overflow-wrap: anywhere;
  text-wrap: balance;
}

.honey-hero-message p {
  max-width: 100%;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(16px, 1.18rem, 19px);
  line-height: 1.55;
  font-weight: 620;
  overflow-wrap: anywhere;
}

.honey-hero-value-points {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.honey-hero-value-points strong {
  min-width: 0;
  min-height: 66px;
  display: grid;
  align-content: center;
  gap: 4px;
  border-radius: 10px;
  padding: 11px 14px;
  background: rgba(8, 22, 38, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 24px rgba(1, 10, 22, 0.1);
  backdrop-filter: blur(8px);
}

.honey-hero-value-points b {
  color: rgba(255, 255, 255, 0.86);
  font-size: 17px;
  line-height: 1.15;
  font-weight: 840;
  overflow-wrap: anywhere;
}

.honey-hero-value-points small {
  color: rgba(231, 243, 255, 0.62);
  font-size: 13px;
  line-height: 1.35;
  font-weight: 620;
  overflow-wrap: anywhere;
}

.honey-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.honey-hero-actions a {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 0 22px;
  color: #fff;
  background: #2563eb;
  text-decoration: none;
  text-align: center;
  font-weight: 900;
  overflow-wrap: anywhere;
  box-shadow: 0 16px 34px rgba(37, 99, 235, 0.28);
}

.honey-hero-actions a:last-child {
  color: #111827;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: inset 0 0 0 1px rgba(17, 24, 39, 0.14);
}

.honey-trust-strip {
  width: min(640px, 100%);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.honey-trust-strip span {
  display: grid;
  gap: 4px;
  border-radius: 8px;
  padding: 12px;
  color: #303948;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(17, 24, 39, 0.12);
  backdrop-filter: blur(12px);
}

.honey-trust-strip b {
  color: #111722;
  font-size: 13px;
  line-height: 1.25;
}

.honey-trust-strip small {
  color: #697586;
  font-size: 11px;
  font-weight: 720;
  line-height: 1.35;
}

.honey-feature-panel {
  position: relative;
  min-height: var(--honey-stack-card-height);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  background: #07192f;
  box-shadow:
    0 18px 44px rgba(15, 33, 55, 0.12),
    0 0 0 1px rgba(30, 53, 84, 0.08);
}

.honey-feature-panel-blue {
  position: relative;
}

.honey-feature-panel-green {
  position: relative;
}

.honey-feature-panel::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 2;
  height: var(--honey-stack-edge-height);
  background: var(--honey-stack-edge);
  pointer-events: none;
}

.honey-feature-panel > img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.04) contrast(1.02);
}

.honey-feature-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(4, 21, 42, 0.88) 0, rgba(4, 21, 42, 0.74) 33%, rgba(4, 21, 42, 0.2) 67%, rgba(4, 21, 42, 0.04) 100%),
    linear-gradient(180deg, rgba(4, 21, 42, 0.05), rgba(4, 21, 42, 0.22));
  pointer-events: none;
}

.honey-feature-panel-green::after {
  background:
    linear-gradient(90deg, rgba(3, 31, 45, 0.88) 0, rgba(3, 31, 45, 0.74) 34%, rgba(3, 31, 45, 0.22) 68%, rgba(3, 31, 45, 0.04) 100%),
    linear-gradient(180deg, rgba(3, 31, 45, 0.05), rgba(3, 31, 45, 0.22));
}

.honey-feature-content {
  position: relative;
  z-index: 2;
  width: min(560px, calc(100% - 64px));
  min-height: var(--honey-stack-card-height);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
  padding: 56px 64px;
  color: #fff;
}

.honey-feature-kicker {
  width: fit-content;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0 18px;
  color: #fff;
  background: linear-gradient(135deg, rgba(31, 84, 191, 0.88), rgba(25, 75, 177, 0.62));
  border: 0;
  font-size: 18px;
  line-height: 1;
  font-weight: 950;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.honey-feature-panel-green .honey-feature-kicker {
  color: #fff;
  background: linear-gradient(135deg, rgba(20, 132, 109, 0.88), rgba(16, 92, 78, 0.62));
}

.honey-feature-content h2,
.honey-feature-content p {
  margin: 0;
  letter-spacing: 0;
}

.honey-feature-content h2 {
  color: #fff;
  font-size: clamp(40px, 4.2vw, 64px);
  line-height: 1.12;
  font-weight: 950;
}

.honey-feature-content p {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(17px, 1.25vw, 21px);
  line-height: 1.7;
  font-weight: 720;
}

.honey-feature-models {
  width: min(520px, 100%);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.honey-entry-grid {
  width: min(640px, 100%);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.honey-entry-card {
  min-height: 190px;
  display: grid;
  align-content: start;
  gap: 10px;
  border-radius: 8px;
  padding: 20px;
  color: #111722;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(17, 24, 39, 0.12);
  text-decoration: none;
  backdrop-filter: blur(12px);
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    border-color 160ms ease;
}

.honey-entry-card:hover {
  transform: translateY(-2px);
  border-color: rgba(47, 109, 246, 0.26);
  box-shadow: 0 18px 36px rgba(15, 33, 55, 0.1);
}

.honey-entry-card span {
  color: #174ea6;
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.honey-entry-card strong {
  color: #111722;
  font-size: 22px;
  line-height: 1.2;
}

.honey-entry-card small {
  color: #697586;
  font-size: 14px;
  font-weight: 720;
  line-height: 1.45;
}

.honey-feature-models span {
  min-width: 0;
  min-height: 58px;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.11);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
}

.honey-feature-logo {
  width: 36px;
  height: 36px;
  display: block;
  border-radius: 10px;
  object-fit: contain;
  box-shadow:
    0 8px 18px rgba(0, 0, 0, 0.16),
    0 0 0 1px rgba(255, 255, 255, 0.2);
}

.honey-feature-models strong,
.honey-feature-models small {
  min-width: 0;
  line-height: 1.1;
}

.honey-feature-models strong {
  color: #fff;
  font-size: 19px;
  font-weight: 950;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.honey-feature-models small {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  justify-self: end;
  border-radius: 999px;
  padding: 0 10px;
  color: #dbeafe;
  background: rgba(47, 109, 246, 0.32);
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
}

.honey-feature-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.honey-feature-points span {
  min-width: 0;
  display: grid;
  gap: 7px;
  padding-right: 16px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.honey-feature-points span:last-child {
  border-right: 0;
}

.honey-feature-points b,
.honey-feature-points small {
  display: block;
}

.honey-feature-points b {
  color: #fff;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 920;
}

.honey-feature-points small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  line-height: 1.4;
  font-weight: 700;
}

.honey-feature-action {
  width: fit-content;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 26px;
  color: #1d4ed8;
  background: rgba(255, 255, 255, 0.96);
  text-decoration: none;
  font-size: 16px;
  line-height: 1;
  font-weight: 920;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.16);
}

.honey-service-poster {
  position: relative;
  min-height: var(--honey-stack-card-height);
  overflow: hidden;
  color: #fff;
  background: #06182b;
  isolation: isolate;
}

.honey-service-poster-progress {
  background:
    radial-gradient(circle at 80% 12%, rgba(56, 189, 248, 0.14), transparent 32%),
    radial-gradient(circle at 46% 92%, rgba(20, 184, 166, 0.12), transparent 30%),
    linear-gradient(135deg, #041426 0, #071f36 46%, #06343a 100%);
}

.honey-service-poster::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  z-index: 2;
  height: var(--honey-stack-edge-height);
  background: var(--honey-stack-edge);
  pointer-events: none;
}

.honey-service-poster::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(4, 14, 28, 0.86) 0, rgba(4, 14, 28, 0.7) 34%, rgba(4, 14, 28, 0.2) 68%, rgba(4, 14, 28, 0.04) 100%),
    linear-gradient(180deg, rgba(5, 18, 31, 0.08), rgba(5, 18, 31, 0.26));
  pointer-events: none;
}

.honey-service-poster-advisor::after {
  background:
    linear-gradient(90deg, rgba(7, 18, 38, 0.86) 0, rgba(7, 18, 38, 0.7) 34%, rgba(7, 18, 38, 0.2) 68%, rgba(7, 18, 38, 0.04) 100%),
    linear-gradient(180deg, rgba(70, 48, 25, 0.04), rgba(70, 48, 25, 0.22));
}

.honey-service-poster-leads::after {
  background:
    linear-gradient(90deg, rgba(3, 29, 42, 0.86) 0, rgba(3, 29, 42, 0.7) 34%, rgba(3, 29, 42, 0.2) 68%, rgba(3, 29, 42, 0.04) 100%),
    linear-gradient(180deg, rgba(9, 58, 70, 0.04), rgba(9, 58, 70, 0.24));
}

.honey-service-poster-about::after {
  background:
    linear-gradient(90deg, rgba(5, 18, 31, 0.86) 0, rgba(5, 18, 31, 0.7) 34%, rgba(5, 18, 31, 0.2) 68%, rgba(5, 18, 31, 0.04) 100%),
    linear-gradient(180deg, rgba(74, 50, 23, 0.04), rgba(74, 50, 23, 0.22));
}

.honey-service-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.04) contrast(1.02);
}

.honey-service-poster-progress .honey-service-copy {
  width: min(520px, 45%);
}

.honey-service-copy {
  position: relative;
  z-index: 3;
  width: min(570px, calc(100% - 84px));
  min-height: var(--honey-stack-card-height);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  padding-left: clamp(34px, 5rem, 80px);
  color: #fff;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.22);
}

.honey-service-copy span {
  width: fit-content;
  max-width: 100%;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0 14px;
  color: rgba(231, 243, 255, 0.82);
  background: rgba(37, 99, 235, 0.28);
  border: 1px solid rgba(191, 219, 254, 0.2);
  font-size: 13px;
  line-height: 1;
  font-weight: 880;
  overflow-wrap: anywhere;
  backdrop-filter: blur(12px);
}

.honey-service-poster-advisor .honey-service-copy span {
  background: rgba(217, 119, 6, 0.28);
  border-color: rgba(252, 211, 77, 0.22);
}

.honey-service-poster-leads .honey-service-copy span {
  background: rgba(20, 184, 166, 0.24);
  border-color: rgba(153, 246, 228, 0.2);
}

.honey-service-poster-about .honey-service-copy span {
  background: rgba(248, 211, 107, 0.2);
  border-color: rgba(253, 230, 138, 0.22);
}

.honey-service-copy h2,
.honey-service-copy p {
  margin: 0;
  letter-spacing: 0;
}

.honey-service-copy h2 {
  max-width: 100%;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(36px, 3rem, 50px);
  line-height: 1.12;
  font-weight: 900;
  overflow-wrap: anywhere;
  text-wrap: balance;
}

.honey-service-copy p {
  max-width: 530px;
  color: rgba(231, 243, 255, 0.72);
  font-size: 17px;
  line-height: 1.58;
  font-weight: 650;
  overflow-wrap: anywhere;
}

.honey-service-steps {
  width: min(520px, 100%);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.honey-service-steps span {
  min-width: 0;
  min-height: 74px;
  display: grid;
  align-content: center;
  gap: 6px;
  border-radius: 8px;
  padding: 12px;
  color: #fff;
  background: rgba(8, 22, 38, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 10px 24px rgba(1, 10, 22, 0.1);
  backdrop-filter: blur(10px);
}

.honey-service-steps b,
.honey-service-steps strong {
  display: block;
  min-width: 0;
  line-height: 1.15;
  overflow-wrap: anywhere;
}

.honey-service-steps b {
  color: rgba(147, 197, 253, 0.86);
  font-size: 13px;
  font-weight: 900;
}

.honey-service-poster-advisor .honey-service-steps b {
  color: rgba(252, 211, 77, 0.86);
}

.honey-service-poster-leads .honey-service-steps b {
  color: rgba(153, 246, 228, 0.86);
}

.honey-service-poster-about .honey-service-steps b {
  color: rgba(253, 230, 138, 0.88);
}

.honey-service-steps strong {
  color: rgba(255, 255, 255, 0.86);
  font-size: 15px;
  font-weight: 840;
}

.honey-service-action {
  width: fit-content;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 0 22px;
  color: #fff;
  background: #2563eb;
  text-decoration: none;
  text-align: center;
  font-size: 16px;
  line-height: 1;
  font-weight: 900;
  overflow-wrap: anywhere;
  box-shadow: 0 16px 34px rgba(37, 99, 235, 0.28);
}

.honey-service-poster-advisor .honey-service-action {
  background: #d97706;
  box-shadow: 0 16px 34px rgba(217, 119, 6, 0.24);
}

.honey-service-poster-leads .honey-service-action {
  background: #0f8f7f;
  box-shadow: 0 16px 34px rgba(15, 143, 127, 0.24);
}

.honey-service-poster-about .honey-service-action {
  color: #101827;
  background: #f8d36b;
  box-shadow: 0 16px 34px rgba(248, 211, 107, 0.2);
}

.honey-feature-panel-green .honey-feature-action {
  color: #087c63;
}

.honey-search-panel {
  display: grid;
  grid-template-columns: minmax(380px, 0.58fr) minmax(560px, 1fr);
  align-items: center;
  background:
    linear-gradient(135deg, #042334 0, #062f3d 48%, #103c42 100%);
}

.honey-search-panel::after {
  background:
    linear-gradient(90deg, rgba(3, 25, 38, 0.92) 0, rgba(3, 25, 38, 0.72) 39%, rgba(3, 25, 38, 0.18) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(4, 22, 37, 0.3));
}

.honey-search-content {
  width: auto;
  max-width: 570px;
  gap: 14px;
  padding: 32px 56px;
}

.honey-search-content h2 {
  font-size: clamp(36px, 3.6vw, 54px);
}

.honey-search-content p {
  font-size: clamp(15px, 1.1vw, 18px);
  line-height: 1.55;
}

.honey-search-flow {
  width: min(520px, 100%);
  display: grid;
  gap: 8px;
}

.honey-search-flow span {
  min-width: 0;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: center;
  gap: 5px 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.09);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.honey-search-flow b {
  grid-row: span 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: #052c36;
  background: #6ee7c8;
  font-size: 13px;
  line-height: 1;
  font-weight: 950;
}

.honey-search-flow strong,
.honey-search-flow small {
  min-width: 0;
  display: block;
}

.honey-search-flow strong {
  color: #fff;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 920;
}

.honey-search-flow small {
  color: rgba(229, 247, 245, 0.74);
  font-size: 11px;
  line-height: 1.45;
  font-weight: 720;
}

.honey-sourcing-board {
  position: relative;
  z-index: 2;
  width: min(620px, calc(100% - 64px));
  justify-self: center;
  display: grid;
  gap: 14px;
  padding: 26px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(17, 24, 39, 0.1);
  box-shadow:
    0 24px 58px rgba(15, 33, 55, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(12px);
}

.honey-sourcing-board-header {
  display: grid;
  gap: 8px;
  border-radius: 8px;
  padding: 20px 22px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(47, 109, 246, 0.16);
  box-shadow: 0 18px 42px rgba(15, 33, 55, 0.08);
}

.honey-sourcing-board-header span {
  color: #697586;
  font-size: 13px;
  font-weight: 820;
  text-transform: uppercase;
}

.honey-sourcing-board-header strong {
  color: #111722;
  font-size: clamp(28px, 2.9vw, 40px);
  line-height: 1.08;
  font-weight: 940;
}

.honey-sourcing-flow {
  position: relative;
  display: grid;
  gap: 10px;
}

.honey-sourcing-step {
  min-width: 0;
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 5px 12px;
  align-items: center;
  border-radius: 8px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(17, 24, 39, 0.1);
  box-shadow:
    0 14px 34px rgba(15, 33, 55, 0.07),
    inset 4px 0 0 rgba(14, 116, 144, 0.42);
}

.honey-sourcing-step b {
  grid-row: span 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, #0e7490 0%, #0f766e 100%);
  font-size: 13px;
  line-height: 1;
  font-weight: 950;
}

.honey-sourcing-step strong,
.honey-sourcing-step small {
  min-width: 0;
  display: block;
}

.honey-sourcing-step strong {
  color: #111722;
  font-size: 17px;
  line-height: 1.2;
  font-weight: 920;
}

.honey-sourcing-step small {
  color: #697586;
  font-size: 12px;
  line-height: 1.45;
  font-weight: 720;
}

.honey-search-steps {
  position: relative;
  z-index: 2;
  width: min(640px, calc(100% - 64px));
  justify-self: end;
  display: grid;
  grid-template-areas:
    "filter filter"
    "results detail"
    "results consult";
  grid-template-columns: minmax(0, 1fr) minmax(200px, 0.62fr);
  gap: 10px;
  padding: 24px 40px 24px 0;
}

.honey-search-step {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  background: rgba(241, 250, 249, 0.96);
  box-shadow:
    0 22px 54px rgba(0, 0, 0, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.36);
}

.honey-search-step-filter {
  grid-area: filter;
  aspect-ratio: 3.58;
}

.honey-search-step-results {
  grid-area: results;
  min-height: 300px;
}

.honey-search-step-detail {
  grid-area: detail;
  aspect-ratio: 1.45;
}

.honey-search-step-consult {
  grid-area: consult;
  aspect-ratio: 1.26;
}

.honey-search-step img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: top left;
}

.honey-search-step-detail img {
  object-position: top right;
}

.honey-search-step figcaption {
  position: absolute;
  left: 12px;
  top: 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  padding: 7px 10px;
  color: #083344;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.14);
  backdrop-filter: blur(10px);
}

.honey-search-step figcaption span {
  color: #087c63;
  font-size: 12px;
  line-height: 1;
  font-weight: 950;
}

.honey-search-step figcaption strong {
  font-size: 13px;
  line-height: 1;
  font-weight: 920;
}

.honey-trade-visual {
  position: absolute;
  right: 48px;
  top: 118px;
  z-index: 3;
  width: min(560px, calc(100% - 740px));
  min-width: 440px;
  display: grid;
  grid-template-columns: 0.9fr 1.22fr 0.9fr;
  align-items: center;
  gap: 12px;
  transform: translate3d(calc(var(--hero-shift-x) * -0.18), calc(var(--hero-shift-y) * -0.12), 0);
  transition: transform 180ms ease-out;
  will-change: transform;
}

.honey-trade-visual::before,
.honey-trade-visual::after {
  content: "";
  position: absolute;
  top: 50%;
  z-index: -1;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(31, 76, 142, 0), rgba(31, 76, 142, 0.6), rgba(31, 76, 142, 0));
  transform: translateY(-50%);
}

.honey-trade-visual::before {
  right: 67%;
  left: 18%;
}

.honey-trade-visual::after {
  right: 18%;
  left: 67%;
}

.honey-trade-node,
.honey-platform-panel {
  border: 1px solid rgba(24, 54, 92, 0.13);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 22px 54px rgba(35, 68, 110, 0.18);
  backdrop-filter: blur(18px);
}

.honey-trade-node {
  min-height: 146px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 8px;
  padding: 16px 12px;
  text-align: center;
  opacity: 0;
  transform: translate3d(0, 18px, 0);
  animation: honeyFadeUp 740ms cubic-bezier(0.16, 1, 0.3, 1) 660ms both;
}

.honey-trade-buyer {
  animation-delay: 860ms;
}

.honey-trade-node strong,
.honey-platform-panel strong {
  color: #0f1f35;
  font-size: 14px;
  line-height: 1.18;
  font-weight: 900;
}

.honey-trade-node small,
.honey-platform-panel small {
  color: rgba(28, 45, 68, 0.62);
  font-size: 11px;
  line-height: 1.28;
  font-weight: 760;
}

.honey-trade-icon {
  position: relative;
  width: 58px;
  height: 38px;
  display: block;
}

.honey-trade-icon-cars::before,
.honey-trade-icon-cars::after {
  content: "";
  position: absolute;
  border-radius: 8px 12px 6px 6px;
  background: linear-gradient(135deg, #1a3760 0%, #3475d6 100%);
  box-shadow:
    inset 10px 0 0 rgba(255, 255, 255, 0.18),
    6px 9px 0 -5px #0f1f35,
    36px 9px 0 -5px #0f1f35;
}

.honey-trade-icon-cars::before {
  right: 4px;
  bottom: 4px;
  width: 42px;
  height: 24px;
}

.honey-trade-icon-cars::after {
  left: 3px;
  bottom: 14px;
  width: 34px;
  height: 20px;
  opacity: 0.42;
}

.honey-trade-icon-ship::before {
  content: "";
  position: absolute;
  right: 4px;
  bottom: 8px;
  width: 48px;
  height: 18px;
  border-radius: 4px 4px 12px 12px;
  background: linear-gradient(135deg, #17345a 0%, #2e69bf 100%);
  box-shadow: inset 16px 0 0 rgba(255, 255, 255, 0.16);
}

.honey-trade-icon-ship::after {
  content: "";
  position: absolute;
  right: 12px;
  bottom: 27px;
  width: 28px;
  height: 8px;
  border-radius: 4px 4px 0 0;
  background: rgba(23, 52, 90, 0.9);
}

.honey-platform-panel {
  min-height: 226px;
  display: grid;
  gap: 10px;
  padding: 14px;
  opacity: 0;
  transform: translate3d(0, 18px, 0) scale(0.98);
  animation: honeyPlatformReveal 780ms cubic-bezier(0.16, 1, 0.3, 1) 740ms both;
}

.honey-platform-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.honey-platform-top span {
  color: #174b9d;
  font-size: 15px;
  line-height: 1;
  font-weight: 950;
}

.honey-platform-top b {
  border-radius: 999px;
  padding: 6px 8px;
  color: #fff;
  background: #1f64e0;
  font-size: 10px;
  line-height: 1;
  font-weight: 880;
}

.honey-platform-car {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(24, 54, 92, 0.1);
  border-radius: 8px;
  padding: 11px;
  background: rgba(246, 250, 255, 0.82);
}

.honey-platform-car > span {
  position: relative;
  width: 48px;
  height: 30px;
  border-radius: 9px 13px 7px 7px;
  background: linear-gradient(135deg, #142845 0%, #2f74df 100%);
}

.honey-platform-car > span::before {
  content: "";
  position: absolute;
  right: 8px;
  bottom: 21px;
  width: 21px;
  height: 8px;
  border-radius: 8px 8px 0 0;
  background: rgba(255, 255, 255, 0.42);
}

.honey-platform-car > span::after {
  content: "";
  position: absolute;
  left: 8px;
  right: 8px;
  bottom: -3px;
  height: 7px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 12% 50%, #0f1f35 0 4px, transparent 4px),
    radial-gradient(circle at 88% 50%, #0f1f35 0 4px, transparent 4px);
}

.honey-bid-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  border-radius: 8px;
  padding: 10px 12px;
  background: linear-gradient(135deg, rgba(17, 34, 58, 0.96), rgba(29, 82, 166, 0.94));
}

.honey-bid-row span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  font-weight: 800;
}

.honey-bid-row strong {
  color: #fff;
  font-size: 20px;
  line-height: 1;
  font-weight: 950;
}

.honey-bid-bars {
  height: 38px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: end;
  gap: 6px;
}

.honey-bid-bars span {
  border-radius: 999px 999px 4px 4px;
  background: linear-gradient(180deg, rgba(52, 117, 214, 0.9), rgba(52, 117, 214, 0.24));
}

.honey-bid-bars span:nth-child(1) {
  height: 42%;
}

.honey-bid-bars span:nth-child(2) {
  height: 62%;
}

.honey-bid-bars span:nth-child(3) {
  height: 78%;
}

.honey-bid-bars span:nth-child(4) {
  height: 100%;
}

.honey-card-copy {
  position: absolute;
  z-index: 3;
  left: 44px;
  bottom: 42px;
  width: min(560px, calc(100% - 88px));
  display: grid;
  gap: 13px;
  color: #fff;
}

.honey-hero-copy {
  top: 68px;
  bottom: auto;
  color: #101828;
  transform: translate3d(calc(var(--hero-shift-x) * 0.2), calc(var(--hero-shift-y) * 0.14), 0);
  transition: transform 180ms ease-out;
  will-change: transform;
}

.honey-card-copy.honey-hero-copy span {
  border-color: rgba(30, 64, 106, 0.16);
  color: #1f3c5e;
  background: rgba(255, 255, 255, 0.7);
}

.honey-card-copy.honey-hero-copy > span,
.honey-card-copy.honey-hero-copy h1,
.honey-card-copy.honey-hero-copy p,
.honey-card-copy.honey-hero-copy .honey-actions {
  opacity: 0;
  transform: translate3d(0, 18px, 0);
  animation: honeyFadeUp 760ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.honey-card-copy.honey-hero-copy > span {
  animation-delay: 240ms;
}

.honey-card-copy.honey-hero-copy h1 {
  animation-delay: 360ms;
}

.honey-card-copy.honey-hero-copy p {
  animation-delay: 480ms;
}

.honey-card-copy.honey-hero-copy .honey-actions {
  animation-delay: 600ms;
}

.honey-card-copy.honey-hero-copy h1 {
  max-width: 560px;
  color: #0b1728;
}

.honey-card-copy.honey-hero-copy p {
  color: rgba(22, 40, 64, 0.74);
}

.honey-hero-copy .honey-actions a {
  border-color: rgba(25, 38, 56, 0.13);
  color: #162235;
  background: rgba(255, 255, 255, 0.68);
}

.honey-hero-copy .honey-actions a:first-child {
  border-color: #10213a;
  color: #fff;
  background: linear-gradient(135deg, #10213a 0%, #214c92 100%);
}

.honey-card-copy span,
.honey-statement span,
.honey-image-card span,
.honey-flywheel span:first-child {
  width: fit-content;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  padding: 7px 11px;
  color: rgba(255, 255, 255, 0.84);
  background: rgba(255, 255, 255, 0.1);
  font-size: 13px;
  line-height: 1;
  font-weight: 840;
  backdrop-filter: blur(14px);
}

.honey-card-copy h1,
.honey-card-copy h2,
.honey-card-copy p,
.honey-statement p,
.honey-image-card h2,
.honey-image-card p,
.honey-flywheel h2 {
  margin: 0;
  letter-spacing: 0;
}

.honey-card-copy h1 {
  color: #fff;
  font-size: 56px;
  line-height: 1.02;
  font-weight: 950;
}

.honey-card-copy h2 {
  color: #fff;
  font-size: 42px;
  line-height: 1.08;
  font-weight: 930;
}

.honey-card-copy p {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 17px;
  line-height: 1.58;
  font-weight: 680;
}

.honey-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 5px;
}

.honey-actions a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 8px;
  padding: 0 16px;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  text-decoration: none;
  font-weight: 860;
  backdrop-filter: blur(14px);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.honey-actions a:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(43, 82, 135, 0.16);
}

.honey-actions a:first-child {
  border-color: #fff;
  color: #10141a;
  background: #fff;
}

.honey-service-strip {
  position: absolute;
  right: 44px;
  bottom: 42px;
  z-index: 3;
  width: min(660px, calc(100% - 88px));
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  transform: translate3d(calc(var(--hero-shift-x) * -0.14), calc(var(--hero-shift-y) * -0.1), 0);
  transition: transform 180ms ease-out;
  will-change: transform;
}

.honey-service-strip span,
.honey-service-strip strong {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(25, 38, 56, 0.13);
  border-radius: 8px;
  padding: 0 12px;
  color: #273449;
  background: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  font-weight: 860;
  white-space: nowrap;
  box-shadow: 0 12px 24px rgba(48, 70, 96, 0.1);
  backdrop-filter: blur(14px);
  opacity: 0;
  transform: translate3d(0, 16px, 0);
  animation: honeyFadeUp 720ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.honey-service-strip span:nth-child(1) {
  animation-delay: 720ms;
}

.honey-service-strip strong {
  animation-delay: 820ms;
}

.honey-service-strip span:nth-child(3) {
  animation-delay: 920ms;
}

.honey-service-strip strong {
  color: #fff;
  border-color: rgba(38, 92, 190, 0.32);
  background: linear-gradient(135deg, #1d4fa8 0%, #3578f6 100%);
}

@keyframes honeyHeroLift {
  0% {
    opacity: 0;
    transform: translate3d(0, 18px, 0) scale(0.992);
  }

  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes honeyHeroMediaReveal {
  0% {
    opacity: 0;
    transform: scale(1.055);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes honeyPlatformReveal {
  0% {
    opacity: 0;
    transform: translate3d(0, 18px, 0) scale(0.98);
  }

  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes honeyFadeUp {
  0% {
    opacity: 0;
    transform: translate3d(0, 18px, 0);
  }

  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes honeyHeroMessageIn {
  0% {
    opacity: 0;
    transform: translate3d(0, calc(-50% + 18px), 0);
  }

  100% {
    opacity: 1;
    transform: translate3d(0, -50%, 0);
  }
}

@keyframes honeyHeroLight {
  0% {
    opacity: 0;
    transform: translate3d(-10%, 4%, 0);
  }

  45% {
    opacity: 0.78;
  }

  100% {
    opacity: 0.5;
    transform: translate3d(1.5%, 0, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  body[data-page="image-card-home"] .honey-hero-card,
  body[data-page="image-card-home"] .honey-stack-content,
  body[data-page="image-card-home"] .honey-hero-media,
  body[data-page="image-card-home"] .honey-hero-media > img,
  body[data-page="image-card-home"] .honey-card-copy.honey-hero-copy > span,
  body[data-page="image-card-home"] .honey-card-copy.honey-hero-copy h1,
  body[data-page="image-card-home"] .honey-card-copy.honey-hero-copy p,
  body[data-page="image-card-home"] .honey-card-copy.honey-hero-copy .honey-actions,
  body[data-page="image-card-home"] .honey-trade-node,
  body[data-page="image-card-home"] .honey-platform-panel,
  body[data-page="image-card-home"] .honey-service-strip,
  body[data-page="image-card-home"] .honey-service-strip span,
  body[data-page="image-card-home"] .honey-service-strip strong {
    animation: none;
    transition: none;
    opacity: 1;
    transform: none;
  }

  body[data-page="image-card-home"] .honey-hero-card::before {
    display: none;
  }
}

.honey-statement {
  display: grid;
  gap: 18px;
  border-radius: 8px;
  padding: 72px 44px;
  color: #fff;
  background: #10141a;
}

.honey-statement p {
  max-width: 1040px;
  color: #fff;
  font-size: 42px;
  line-height: 1.22;
  font-weight: 920;
}

.honey-wide-card {
  min-height: 680px;
  color: #fff;
  background: #10141a;
}

.honey-wide-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 10, 13, 0.82) 0, rgba(8, 10, 13, 0.5) 46%, rgba(8, 10, 13, 0.08) 100%),
    linear-gradient(0deg, rgba(8, 10, 13, 0.68), rgba(8, 10, 13, 0.06));
  pointer-events: none;
}

.honey-step-row {
  position: absolute;
  right: 34px;
  bottom: 34px;
  left: 34px;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.honey-step-row article {
  min-height: 160px;
  display: grid;
  align-content: end;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  padding: 18px;
  color: #fff;
  background: rgba(8, 10, 13, 0.34);
  backdrop-filter: blur(18px);
}

.honey-step-row b {
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  font-weight: 920;
}

.honey-step-row h3,
.honey-step-row p {
  margin: 0;
}

.honey-step-row h3 {
  font-size: 23px;
  line-height: 1.1;
  font-weight: 920;
}

.honey-step-row p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.48;
  font-weight: 660;
}

.honey-image-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.honey-image-card {
  min-height: 620px;
  display: grid;
  grid-template-rows: minmax(0, 1.25fr) auto;
}

.honey-image-card img {
  width: 100%;
  height: 100%;
  min-height: 390px;
  display: block;
  object-fit: cover;
}

.honey-image-card div {
  display: grid;
  gap: 12px;
  padding: 28px;
  background: #fff;
}

.honey-image-card span,
.honey-flywheel span:first-child {
  border-color: var(--honey-line);
  color: #344054;
  background: #f4f6f8;
  backdrop-filter: none;
}

.honey-image-card h2 {
  color: var(--honey-ink);
  font-size: 31px;
  line-height: 1.1;
  font-weight: 920;
}

.honey-image-card p {
  color: var(--honey-muted);
  font-size: 16px;
  line-height: 1.58;
  font-weight: 660;
}

.honey-flywheel {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 18px;
  border-radius: 8px;
  padding: 42px;
  background: #fff;
  box-shadow: 0 18px 46px rgba(15, 23, 42, 0.08);
}

.honey-flywheel div:first-child {
  display: grid;
  align-content: center;
  gap: 14px;
}

.honey-flywheel h2 {
  max-width: 560px;
  color: var(--honey-ink);
  font-size: 36px;
  line-height: 1.12;
  font-weight: 930;
}

.honey-flywheel-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid var(--honey-line);
  border-radius: 8px;
}

.honey-flywheel-row span {
  min-height: 112px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid var(--honey-line);
  padding: 0 14px;
  text-align: center;
  color: #344054;
  font-size: 15px;
  line-height: 1.35;
  font-weight: 850;
}

.honey-flywheel-row span:last-child {
  border-right: 0;
}

@media (max-width: 1060px) {
  .honey-trade-visual {
    display: none;
  }

  .honey-search-panel {
    grid-template-columns: 1fr;
    align-content: start;
  }

  .honey-search-panel::after {
    background:
      linear-gradient(180deg, rgba(3, 25, 38, 0.9) 0, rgba(3, 25, 38, 0.68) 44%, rgba(3, 25, 38, 0.24) 100%),
      linear-gradient(90deg, rgba(3, 25, 38, 0.58), rgba(3, 25, 38, 0.04));
  }

  .honey-search-content {
    max-width: 640px;
    min-height: auto;
    padding-bottom: 26px;
  }

  .honey-search-steps {
    width: auto;
    justify-self: stretch;
    grid-template-columns: minmax(0, 1fr) minmax(220px, 0.58fr);
    padding: 0 48px 42px;
  }

  .honey-service-strip {
    right: 34px;
    left: 34px;
    width: auto;
  }

  .honey-card-copy h1 {
    font-size: 50px;
  }

  .honey-card-copy h2 {
    font-size: 34px;
  }

  .honey-image-grid,
  .honey-flywheel {
    grid-template-columns: 1fr;
  }

  .honey-flywheel-row {
    grid-template-columns: 1fr;
  }

  .honey-flywheel-row span {
    min-height: 64px;
    border-right: 0;
    border-bottom: 1px solid var(--honey-line);
  }

  .honey-flywheel-row span:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 760px) {
  .honey-home-page {
    --honey-stack-edge-height: 1px;
    --honey-stack-total-reveal: 0px;
    --honey-stack-bottom-clearance: 18px;
    --honey-stack-card-height: calc(100svh - var(--honey-stack-top) - var(--honey-stack-total-reveal) - var(--honey-stack-bottom-clearance));
    --honey-stack-card-margin: 0px;
    --honey-stack-card-top-offset: 16px;
    --honey-stack-bottom-space: 0px;
    --honey-stack-top: 115px;
    width: calc(100% - 28px);
    padding: 0 0 var(--honey-stack-bottom-clearance);
  }

  .honey-hero-card {
    min-height: var(--honey-stack-card-height);
  }

  .honey-poster-card {
    min-height: var(--honey-stack-card-height);
    aspect-ratio: auto;
  }

  .honey-poster-card .honey-hero-media > img {
    inset: 0;
    width: 100%;
    object-position: 51% center;
    transform: translate3d(calc(var(--hero-shift-x) * -0.1), calc(var(--hero-shift-y) * -0.08), 0) scale(1.02);
  }

  .honey-poster-card::after {
    background:
      linear-gradient(180deg, rgba(8, 22, 38, 0.66) 0, rgba(8, 22, 38, 0.18) 52%, rgba(8, 22, 38, 0.28) 100%),
      linear-gradient(90deg, rgba(8, 22, 38, 0.44), rgba(8, 22, 38, 0.02));
  }

  .honey-hero-message {
    left: 16px;
    top: 36px;
    width: auto;
    max-width: calc(100% - 32px);
    gap: 12px;
    transform: none;
  }

  .honey-hero-message span {
    padding: 7px 10px;
    font-size: 12px;
  }

  .honey-hero-message h1 {
    font-size: 32px;
    line-height: 1.14;
  }

  .honey-hero-message p {
    max-width: 330px;
    font-size: 14px;
    line-height: 1.5;
  }

  .honey-hero-value-points {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    max-width: 330px;
  }

  .honey-hero-value-points strong {
    max-width: none;
    min-height: auto;
    padding: 10px 12px;
  }

  .honey-hero-value-points b {
    font-size: 14px;
  }

  .honey-hero-value-points small {
    font-size: 12px;
  }

  .honey-hero-actions {
    gap: 8px;
  }

  .honey-hero-actions a {
    min-height: 42px;
    padding: 0 14px;
  }

  .honey-service-poster::after,
  .honey-service-poster-advisor::after,
  .honey-service-poster-leads::after,
  .honey-service-poster-about::after {
    background:
      linear-gradient(180deg, rgba(5, 18, 31, 0.86) 0, rgba(5, 18, 31, 0.68) 50%, rgba(5, 18, 31, 0.2) 100%),
      linear-gradient(90deg, rgba(5, 18, 31, 0.5), rgba(5, 18, 31, 0.04));
  }

  .honey-service-media {
    object-position: 64% center;
  }

  .honey-service-poster-progress .honey-service-copy {
    width: auto;
  }

  .honey-service-copy {
    width: auto;
    max-width: calc(100% - 32px);
    min-height: var(--honey-stack-card-height);
    justify-content: flex-start;
    gap: 11px;
    padding: 32px 0 0 16px;
  }

  .honey-service-copy span {
    min-height: 30px;
    padding: 0 11px;
    font-size: 12px;
  }

  .honey-service-copy h2 {
    max-width: 330px;
    font-size: 30px;
    line-height: 1.14;
  }

  .honey-service-copy p {
    max-width: 320px;
    font-size: 13px;
    line-height: 1.46;
  }

  .honey-service-steps {
    grid-template-columns: 1fr;
    gap: 7px;
    width: min(280px, 100%);
  }

  .honey-service-steps span {
    min-height: 42px;
    grid-template-columns: 34px minmax(0, 1fr);
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
  }

  .honey-service-steps b {
    font-size: 12px;
  }

  .honey-service-steps strong {
    font-size: 13px;
  }

  .honey-service-action {
    min-height: 40px;
    padding: 0 14px;
    font-size: 13px;
  }

  .honey-feature-panel {
    min-height: var(--honey-stack-card-height);
  }

  .honey-feature-panel > img {
    object-position: 62% center;
  }

  .honey-feature-panel-green > img {
    object-position: 67% center;
  }

  .honey-feature-panel::after,
  .honey-feature-panel-green::after {
    background:
      linear-gradient(180deg, rgba(4, 21, 42, 0.88) 0, rgba(4, 21, 42, 0.74) 40%, rgba(4, 21, 42, 0.18) 100%),
      linear-gradient(90deg, rgba(4, 21, 42, 0.56), rgba(4, 21, 42, 0.02));
  }

  .honey-feature-content {
    width: auto;
    min-height: var(--honey-stack-card-height);
    justify-content: flex-start;
    gap: 16px;
    padding: 36px 18px;
  }

  .honey-feature-kicker {
    min-height: 36px;
    padding: 0 14px;
    font-size: 15px;
  }

  .honey-feature-content h2 {
    font-size: 36px;
    line-height: 1.16;
  }

  .honey-feature-content p {
    max-width: 340px;
    font-size: 15px;
    line-height: 1.6;
  }

  .honey-feature-models {
    grid-template-columns: 1fr;
    gap: 8px;
    max-width: 300px;
  }

  .honey-feature-models span {
    min-height: 50px;
    padding: 8px 10px;
  }

  .honey-feature-logo {
    width: 34px;
    height: 34px;
    border-radius: 9px;
  }

  .honey-feature-models strong {
    font-size: 17px;
  }

  .honey-feature-models small {
    min-height: 26px;
    font-size: 12px;
  }

  .honey-feature-points {
    grid-template-columns: 1fr;
    gap: 10px;
    max-width: 300px;
  }

  .honey-feature-points span {
    padding-right: 0;
    padding-bottom: 10px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .honey-feature-points span:last-child {
    border-bottom: 0;
  }

  .honey-feature-action {
    min-height: 44px;
    padding: 0 20px;
    font-size: 14px;
  }

  .honey-search-panel {
    min-height: auto;
  }

  .honey-search-content {
    min-height: auto;
    padding: 36px 18px 20px;
  }

  .honey-search-flow {
    width: 100%;
    max-width: 340px;
    gap: 8px;
  }

  .honey-search-flow span {
    grid-template-columns: 36px minmax(0, 1fr);
    padding: 10px 11px;
  }

  .honey-search-flow b {
    width: 31px;
    height: 31px;
    font-size: 11px;
  }

  .honey-search-flow strong {
    font-size: 14px;
  }

  .honey-search-flow small {
    font-size: 11px;
  }

  .honey-search-steps {
    grid-template-areas:
      "filter"
      "results"
      "detail"
      "consult";
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 0 18px 32px;
  }

  .honey-search-step-filter,
  .honey-search-step-results,
  .honey-search-step-detail,
  .honey-search-step-consult {
    min-height: 0;
  }

  .honey-search-step-filter {
    aspect-ratio: 2.4;
  }

  .honey-search-step-results {
    aspect-ratio: 1.65;
  }

  .honey-search-step-detail {
    aspect-ratio: 1.5;
  }

  .honey-search-step-consult {
    aspect-ratio: 1.38;
  }

  .honey-search-step figcaption {
    left: 9px;
    top: 9px;
    padding: 6px 8px;
  }

  .honey-search-step figcaption strong {
    font-size: 12px;
  }

  @supports not (min-height: 100svh) {
    .honey-home-page {
      --honey-stack-card-height: calc(100vh - 160px);
    }
  }

  .honey-hero-card::after,
  .honey-wide-card::after {
    background:
      linear-gradient(180deg, rgba(246, 250, 254, 0.2) 0, rgba(246, 250, 254, 0.36) 42%, rgba(246, 250, 254, 0.88) 100%),
      linear-gradient(90deg, rgba(246, 250, 254, 0.54), rgba(246, 250, 254, 0.04));
  }

  .honey-card-copy,
  .honey-hero-copy {
    top: auto;
    right: 20px;
    bottom: 146px;
    left: 20px;
    width: auto;
    gap: 10px;
  }

  .honey-card-copy h1 {
    font-size: 37px;
    line-height: 1.08;
  }

  .honey-card-copy h2 {
    font-size: 29px;
    line-height: 1.1;
  }

  .honey-card-copy p {
    font-size: 14px;
    line-height: 1.5;
  }

  .honey-actions a {
    min-height: 38px;
    padding: 0 12px;
    font-size: 13px;
  }

  .honey-service-strip {
    right: 18px;
    bottom: 20px;
    left: 18px;
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .honey-service-strip span,
  .honey-service-strip strong {
    min-height: 34px;
    font-size: 12px;
  }

  .honey-statement {
    gap: 14px;
    padding: 42px 20px;
  }

  .honey-statement p {
    font-size: 25px;
    line-height: 1.24;
  }

  .honey-wide-card {
    min-height: 680px;
  }

  .honey-step-row {
    right: 18px;
    bottom: 18px;
    left: 18px;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .honey-step-row article {
    min-height: 112px;
    padding: 14px;
  }

  .honey-image-card {
    min-height: auto;
  }

  .honey-image-card img {
    min-height: 260px;
  }

  .honey-image-card div {
    padding: 22px;
  }

  .honey-image-card h2,
  .honey-flywheel h2 {
    font-size: 27px;
  }

  .honey-flywheel {
    padding: 24px;
  }
}

@media (max-width: 860px) {
  .honey-trust-strip,
  .honey-entry-grid,
  .honey-sourcing-flow {
    grid-template-columns: 1fr;
  }

  .honey-hero-actions a {
    width: 100%;
    justify-content: center;
  }
}

/* Customer home search hero */
body[data-page="image-card-home"] .honey-home-page {
  width: min(1240px, calc(100% - 56px));
  margin: 0 auto;
  padding: 18px 0 36px;
  isolation: isolate;
}

.honey-home-hero {
  position: relative;
  min-height: 360px;
  display: grid;
  isolation: isolate;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  background:
    linear-gradient(120deg, #07182c 0%, #0f4c81 42%, #2563eb 73%, #f59e0b 132%),
    #07182c;
  aspect-ratio: 16 / 5;
  box-shadow:
    0 18px 44px rgba(15, 33, 55, 0.12),
    0 0 0 1px rgba(30, 53, 84, 0.08);
}

.honey-home-hero::before,
.honey-home-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.honey-home-hero::before {
  background:
    linear-gradient(90deg, rgba(4, 14, 28, 0.58) 0, rgba(4, 14, 28, 0.34) 42%, rgba(4, 14, 28, 0.08) 100%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0.04) 27%, transparent 27%, transparent 48%, rgba(255, 255, 255, 0.08) 48%, rgba(255, 255, 255, 0.02) 62%, transparent 62%);
}

.honey-home-hero::after {
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 88px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 72px);
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.72));
  opacity: 0.22;
}

.honey-home-content {
  position: relative;
  z-index: 2;
  min-height: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 480px);
  align-items: end;
  gap: clamp(22px, 3vw, 48px);
  padding: clamp(26px, 3.4vw, 48px);
  color: #fff;
}

.honey-home-copy {
  width: min(540px, 100%);
  display: grid;
  gap: 15px;
  padding-bottom: clamp(0px, 2vw, 22px);
  color: rgba(255, 255, 255, 0.82);
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.22);
}

.honey-home-copy > span,
.honey-home-search-head span {
  width: fit-content;
  max-width: 100%;
  border-radius: 999px;
  padding: 8px 12px;
  color: rgba(231, 243, 255, 0.78);
  background: rgba(8, 22, 38, 0.24);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 13px;
  line-height: 1.1;
  font-weight: 780;
  overflow-wrap: anywhere;
  backdrop-filter: blur(12px);
}

.honey-home-copy h1 {
  max-width: 100%;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(26px, 2rem, 34px);
  line-height: 1.18;
  font-weight: 860;
  letter-spacing: 0;
  overflow-wrap: anywhere;
  text-wrap: balance;
}

.honey-home-copy p {
  max-width: 100%;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(16px, 1.18rem, 19px);
  line-height: 1.55;
  font-weight: 620;
  overflow-wrap: anywhere;
}

.honey-home-search-panel {
  align-self: end;
  width: 100%;
  box-sizing: border-box;
  display: grid;
  gap: 14px;
  border-radius: 8px;
  padding: 18px;
  background: rgba(7, 20, 35, 0.64);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow:
    0 24px 48px rgba(2, 8, 20, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.honey-home-search-head {
  display: grid;
  gap: 8px;
}

.honey-home-search-head strong {
  color: rgba(255, 255, 255, 0.9);
  font-size: 20px;
  line-height: 1.2;
  font-weight: 860;
  overflow-wrap: anywhere;
}

.honey-home-search-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.honey-home-field {
  min-width: 0;
  display: grid;
  gap: 7px;
}

.honey-home-field > span,
.honey-home-field > .filter-name {
  color: rgba(231, 243, 255, 0.72);
  font-size: 13px;
  line-height: 1.2;
  font-weight: 820;
}

.honey-home-field input,
.honey-home-field select {
  width: 100%;
  min-height: 42px;
  box-sizing: border-box;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  padding: 0 12px;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(5, 16, 30, 0.64);
  font: inherit;
  font-size: 14px;
  font-weight: 720;
  outline: none;
}

.honey-home-field input::placeholder {
  color: rgba(231, 243, 255, 0.48);
}

.honey-home-field input:focus,
.honey-home-field select:focus {
  border-color: rgba(147, 197, 253, 0.72);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.22);
}

.honey-home-search-submit {
  width: 100%;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 8px;
  padding: 0 22px;
  color: #fff;
  background: #2563eb;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 16px 34px rgba(37, 99, 235, 0.28);
}

.honey-home-search-panel .filter-select {
  min-height: 42px;
  border-color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.96);
  box-shadow:
    0 10px 22px rgba(1, 10, 22, 0.16),
    inset 0 0 0 1px rgba(143, 157, 177, 0.08);
}

.honey-home-search-panel .brand-combo-control {
  min-height: 42px;
  padding-right: 36px;
}

.honey-home-search-panel .brand-combo-input {
  min-height: 0;
  border: 0;
  padding: 0;
  color: #202938;
  background: transparent;
  box-shadow: none;
}

.honey-home-search-panel .brand-combo-input:focus {
  border: 0;
  box-shadow: none;
}

.honey-home-search-panel .filter-combo-input {
  border: 1px solid rgba(255, 255, 255, 0.8);
  padding: 0 36px 0 12px;
  color: #202938;
  background: rgba(255, 255, 255, 0.96);
  box-shadow:
    0 10px 22px rgba(1, 10, 22, 0.16),
    inset 0 0 0 1px rgba(143, 157, 177, 0.08);
}

.honey-home-search-panel .brand-combo-input::placeholder,
.honey-home-search-panel .filter-combo-input::placeholder {
  color: #8a95a5;
}

.honey-home-search-panel .brand-combo-control:focus-within,
.honey-home-search-panel .filter-combo-input:focus {
  border-color: rgba(147, 197, 253, 0.86);
  box-shadow: 0 10px 22px rgba(1, 10, 22, 0.16);
}

.honey-home-search-panel .brand-menu,
.honey-home-search-panel .filter-menu {
  border-color: rgba(156, 171, 193, 0.32);
  box-shadow: 0 18px 36px rgba(2, 8, 20, 0.22);
}

.honey-home-search-panel .brand-menu {
  width: 100%;
  padding: 8px;
}

.honey-home-search-panel .brand-option-list {
  grid-template-columns: 1fr;
  max-height: 184px;
}

.honey-home-search-panel .filter-menu {
  max-height: 168px;
}

.honey-home-featured {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.honey-home-featured-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
}

.honey-home-featured-head div {
  min-width: 0;
  display: grid;
  gap: 6px;
}

.honey-home-featured-head span {
  color: #2563eb;
  font-size: 13px;
  line-height: 1.2;
  font-weight: 860;
}

.honey-home-featured-head h2 {
  margin: 0;
  color: #152033;
  font-size: 28px;
  line-height: 1.16;
  font-weight: 900;
  letter-spacing: 0;
}

.honey-home-featured-head a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border-radius: 8px;
  padding: 0 14px;
  color: #174ea6;
  background: #fff;
  border: 1px solid rgba(23, 78, 166, 0.16);
  text-decoration: none;
  font-weight: 860;
  box-shadow: 0 10px 22px rgba(24, 35, 51, 0.06);
}

.honey-home-featured-shell {
  margin-top: 0;
}

.honey-home-featured .inventory-summary {
  margin-top: 0;
}

@media (max-width: 1080px) {
  .honey-home-hero {
    min-height: 620px;
    aspect-ratio: auto;
  }

  .honey-home-content {
    grid-template-columns: 1fr;
    align-content: space-between;
  }

  .honey-home-search-panel {
    width: min(480px, 100%);
    justify-self: end;
  }
}

@media (max-width: 760px) {
  body[data-page="image-card-home"] .honey-home-page {
    width: calc(100% - 28px);
    padding: 12px 0 24px;
  }

  .honey-home-hero {
    min-height: 620px;
  }

  .honey-home-hero::before {
    background:
      linear-gradient(180deg, rgba(4, 14, 28, 0.76) 0, rgba(4, 14, 28, 0.44) 43%, rgba(4, 14, 28, 0.64) 100%),
      linear-gradient(90deg, rgba(4, 14, 28, 0.34), rgba(4, 14, 28, 0.08));
  }

  .honey-home-content {
    gap: 18px;
    padding: 20px 16px;
  }

  .honey-home-copy {
    gap: 12px;
  }

  .honey-home-copy > span {
    padding: 7px 10px;
    font-size: 12px;
  }

  .honey-home-copy h1 {
    font-size: 26px;
    line-height: 1.2;
  }

  .honey-home-copy p {
    max-width: 100%;
    font-size: 14px;
    line-height: 1.5;
  }

  .honey-home-search-panel {
    width: min(480px, 100%);
    justify-self: center;
    padding: 14px;
  }

  .honey-home-search-grid {
    grid-template-columns: 1fr;
  }

  .honey-home-search-panel .brand-menu {
    width: 100%;
  }

  .honey-home-featured-head {
    align-items: start;
    flex-direction: column;
  }

  .honey-home-featured-head h2 {
    font-size: 24px;
  }
}

/* Customer center list refresh */
.customer-intent-card,
.customer-demand-card {
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    background-color 160ms ease,
    transform 160ms ease;
}

.customer-intent-card:hover,
.customer-demand-card:hover {
  border-color: rgba(37, 99, 235, 0.22);
  background: #fff;
  box-shadow: 0 10px 26px rgba(24, 35, 51, 0.075);
  transform: translateY(-1px);
}

.customer-intent-card.customer-demand-card {
  grid-template-columns: minmax(340px, 1fr) minmax(172px, 210px) 112px;
}

.customer-intent-card.customer-inquiry-card {
  grid-template-columns: minmax(220px, 250px) minmax(320px, 1fr) minmax(172px, 210px) 112px;
}

.customer-intent-card:hover .customer-intent-image img {
  transform: scale(1.025);
}

.customer-intent-image img {
  transition: transform 220ms ease;
}

.customer-inquiry-summary {
  background: linear-gradient(180deg, #fbfdff 0%, #f8fbff 100%);
}

.customer-inquiry-action-rail {
  border-left: 1px solid rgba(151, 164, 184, 0.18);
  padding: 16px 14px;
  background: linear-gradient(180deg, rgba(248, 251, 255, 0.75), rgba(255, 255, 255, 0.95));
}

.customer-inquiry-actions {
  justify-content: center;
}

.customer-inquiry-actions a,
.customer-inquiry-actions button {
  width: auto;
  min-width: 72px;
  height: 36px;
  min-height: 36px;
  gap: 8px;
  border: 1px solid rgba(37, 99, 235, 0.2);
  border-radius: 999px;
  padding: 0 12px;
  color: #174ea6;
  background: #f8fbff;
  box-shadow: 0 1px 2px rgba(24, 35, 51, 0.04);
  font-size: 13px;
  font-weight: 860;
  transition:
    border-color 150ms ease,
    background-color 150ms ease,
    color 150ms ease,
    transform 150ms ease;
}

.customer-inquiry-actions a::after,
.customer-inquiry-actions button::after {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}

.customer-inquiry-actions a:hover,
.customer-inquiry-actions button:hover,
.customer-inquiry-actions a:focus-visible,
.customer-inquiry-actions button:focus-visible {
  border-color: rgba(37, 99, 235, 0.38);
  color: #123e91;
  background: #edf4ff;
  outline: none;
  transform: translateX(1px);
}

.customer-center-loading {
  justify-items: stretch;
  gap: 14px;
  border: 0;
  padding: 0;
  background: transparent;
  box-shadow: none;
  text-align: left;
}

.customer-center-loading-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  padding: 0 2px 2px;
}

.customer-center-loading-head strong {
  color: #1d2634;
  font-size: 16px;
  font-weight: 860;
}

.customer-center-loading-head span {
  color: #7a8495;
  font-size: 13px;
  font-weight: 760;
}

.customer-center-loading-list {
  display: grid;
  gap: 12px;
}

.customer-center-loading-card {
  min-height: 154px;
  display: grid;
  grid-template-columns: minmax(220px, 250px) minmax(320px, 1fr) minmax(172px, 210px) 112px;
  overflow: hidden;
  border: 1px solid rgba(156, 171, 193, 0.2);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 4px 14px rgba(32, 44, 68, 0.035);
}

.customer-center-loading-media,
.customer-center-loading-copy span,
.customer-center-loading-copy strong,
.customer-center-loading-copy em,
.customer-center-loading-side span,
.customer-center-loading-side strong,
.customer-center-loading-side em,
.customer-center-loading-action {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 8px;
  background: #eef2f7;
}

.customer-center-loading-media::after,
.customer-center-loading-copy span::after,
.customer-center-loading-copy strong::after,
.customer-center-loading-copy em::after,
.customer-center-loading-side span::after,
.customer-center-loading-side strong::after,
.customer-center-loading-side em::after,
.customer-center-loading-action::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.72), transparent);
  transform: translateX(-100%);
  animation: customerCenterSkeleton 1300ms ease-in-out infinite;
}

.customer-center-loading-media {
  min-height: 154px;
  border-radius: 0;
}

.customer-center-loading-copy,
.customer-center-loading-side {
  display: grid;
  align-content: center;
  gap: 12px;
  padding: 18px;
}

.customer-center-loading-copy span {
  width: 132px;
  height: 22px;
}

.customer-center-loading-copy strong {
  width: min(420px, 72%);
  height: 24px;
}

.customer-center-loading-copy em {
  width: min(320px, 58%);
  height: 16px;
}

.customer-center-loading-side {
  border-left: 1px solid rgba(151, 164, 184, 0.18);
  background: linear-gradient(180deg, #fbfdff 0%, #f8fbff 100%);
}

.customer-center-loading-side span {
  width: 72px;
  height: 14px;
}

.customer-center-loading-side strong {
  width: 128px;
  height: 24px;
}

.customer-center-loading-side em {
  width: 96px;
  height: 14px;
}

.customer-center-loading-action {
  align-self: center;
  justify-self: center;
  width: 72px;
  height: 36px;
  border-radius: 999px;
}

@keyframes customerCenterSkeleton {
  from {
    transform: translateX(-100%);
  }

  to {
    transform: translateX(100%);
  }
}

@media (max-width: 760px) {
  .customer-intent-card.customer-demand-card,
  .customer-intent-card.customer-inquiry-card,
  .customer-center-loading-card {
    grid-template-columns: 1fr;
  }

  .customer-inquiry-action-rail {
    border-left: 0;
    border-top: 1px solid rgba(151, 164, 184, 0.18);
    justify-content: end;
    justify-items: end;
    padding: 12px 18px;
  }

  .customer-center-loading-head {
    display: grid;
    align-items: start;
    gap: 4px;
  }

  .customer-center-loading-media {
    min-height: 180px;
  }

  .customer-center-loading-side {
    border-left: 0;
    border-top: 1px solid rgba(151, 164, 184, 0.18);
  }

  .customer-center-loading-action {
    margin: 0 18px 14px auto;
  }
}

/* The inventory and online-search detail pages share the same two-column vehicle profile. */
.customer-vehicle-detail-page .inspection-report-card,
.customer-vehicle-detail-page .vehicle-condition-panel {
  grid-column: 1 / -1;
}

.inspection-report-card-content {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 86px;
  border: 1px solid #dbe7ff;
  border-radius: 10px;
  padding: 14px;
  background: linear-gradient(110deg, #f7faff 0%, #eef4ff 100%);
}

.inspection-report-card-content.is-empty {
  border-style: dashed;
  border-color: #d9e0eb;
  background: #fafbfd;
}

.inspection-report-card-icon {
  display: grid;
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 10px;
  color: #275df5;
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(39, 93, 245, 0.16);
  font-size: 14px;
  font-weight: 900;
}

.inspection-report-card-icon.is-link {
  font-size: 24px;
}

.inspection-report-card-copy {
  min-width: 0;
  flex: 1 1 auto;
}

.inspection-report-card-copy strong,
.inspection-report-card-copy p {
  display: block;
  margin: 0;
}

.inspection-report-card-copy strong {
  color: #182333;
  font-size: 15px;
}

.inspection-report-card-copy p {
  margin-top: 4px;
  color: #667085;
  font-size: 13px;
  line-height: 1.55;
}

.inspection-report-card-action {
  min-height: 38px;
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  padding: 0 15px;
  color: #fff;
  background: #275df5;
  font-size: 13px;
  font-weight: 850;
  text-decoration: none;
}

.inspection-report-card-action:hover {
  color: #fff;
  background: #1f4bd1;
}

@media (max-width: 640px) {
  .inspection-report-card-content {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .inspection-report-card-action {
    width: 100%;
  }
}
