:root {
  --ink: #16201f;
  --muted: #63706e;
  --line: #dfe7e4;
  --panel: #ffffff;
  --panel-soft: #f5f7f2;
  --accent: #d93232;
  --accent-dark: #aa2222;
  --mint: #1c8c69;
  --amber: #d99526;
  --charcoal: #24302f;
  --shadow: 0 22px 60px rgba(20, 32, 31, 0.16);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fbfcfa;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.5;
}

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 12px;
  left: 50%;
  display: grid;
  width: min(1180px, calc(100% - 24px));
  min-height: 64px;
  grid-template-columns: auto 1fr auto;
  gap: 22px;
  align-items: center;
  padding: 10px 12px 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: var(--radius);
  background: rgba(22, 32, 31, 0.78);
  color: #ffffff;
  transform: translateX(-50%);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 7px;
  background: var(--accent);
  color: #ffffff;
}

.brand-text {
  white-space: nowrap;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.site-nav a {
  padding: 9px 12px;
  border-radius: 7px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
}

.site-nav a:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.header-actions {
  display: inline-flex;
  gap: 8px;
  align-items: center;
}

.button,
.icon-button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 7px;
  font-weight: 750;
}

.button {
  padding: 0 18px;
}

.icon-button {
  width: 44px;
  padding: 0;
}

.button svg,
.icon-button svg,
.trust-row svg,
.insight svg,
.timeline-item svg {
  width: 18px;
  height: 18px;
  stroke-width: 2.2;
}

.button-primary {
  background: var(--accent);
  color: #ffffff;
  box-shadow: 0 10px 24px rgba(217, 50, 50, 0.24);
}

.button-primary:hover {
  background: var(--accent-dark);
}

.button-primary:disabled {
  cursor: not-allowed;
  background: #b9c1bd;
  box-shadow: none;
}

.button-outline {
  border: 1px solid rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.1);
  color: inherit;
}

.button-outline:hover,
.icon-button:hover {
  background: rgba(255, 255, 255, 0.18);
}

.button-dark {
  background: var(--charcoal);
  color: #ffffff;
}

.button-wide {
  width: 100%;
}

.hero {
  position: relative;
  display: flex;
  min-height: 88vh;
  align-items: end;
  overflow: hidden;
  padding: 118px 24px 64px;
  color: #ffffff;
}

.hero-image,
.hero-scrim {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-scrim {
  background:
    linear-gradient(90deg, rgba(11, 17, 16, 0.92) 0%, rgba(11, 17, 16, 0.72) 43%, rgba(11, 17, 16, 0.18) 100%),
    linear-gradient(0deg, rgba(11, 17, 16, 0.58) 0%, rgba(11, 17, 16, 0.04) 42%);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(1180px, 100%);
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.75fr);
  gap: 42px;
  align-items: end;
  margin: 0 auto;
}

.hero-copy {
  max-width: 720px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ffb3a7;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 18px;
  font-size: clamp(42px, 7.3vw, 86px);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 12px;
  font-size: clamp(30px, 4.4vw, 52px);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 640px;
  margin-bottom: 26px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 20px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-row span {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  gap: 8px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
}

.search-panel {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.93);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.mode-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--panel-soft);
}

.mode-tab {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--muted);
  font-weight: 760;
}

.mode-tab.is-active {
  background: var(--panel);
  color: var(--ink);
  box-shadow: 0 5px 16px rgba(22, 32, 31, 0.09);
}

.field-group {
  margin-top: 16px;
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.field-group label {
  display: block;
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 760;
}

.checkbox-option {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: start;
  margin-top: 16px;
  padding: 12px;
  border: 1px solid #cfdad5;
  border-radius: 7px;
  background: #ffffff;
  cursor: pointer;
}

.checkbox-option input {
  width: 18px;
  min-height: 18px;
  margin-top: 3px;
  padding: 0;
  accent-color: var(--mint);
}

.checkbox-option strong,
.checkbox-option small {
  display: block;
}

.checkbox-option small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.input-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
}

input {
  width: 100%;
  min-height: 50px;
  padding: 0 14px;
  border: 1px solid #cfdad5;
  border-radius: 7px;
  background: #ffffff;
  color: var(--ink);
  outline: none;
}

input:focus {
  border-color: var(--mint);
  box-shadow: 0 0 0 3px rgba(28, 140, 105, 0.13);
}

.field-hint,
.form-message {
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.launch-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.form-message.is-error {
  color: var(--accent-dark);
}

.form-message.is-success {
  color: var(--mint);
}

.field-grid {
  display: grid;
  grid-template-columns: 0.7fr 0.9fr 1fr;
  gap: 10px;
}

section:not(.hero) {
  padding: 82px 24px;
  scroll-margin-top: 96px;
}

.section-head {
  width: min(1180px, 100%);
  margin: 0 auto 32px;
}

.section-head p:not(.eyebrow) {
  max-width: 740px;
  color: var(--muted);
  font-size: 18px;
}

.preview-band {
  background: #f0f5f0;
}

.preview-layout {
  display: grid;
  width: min(1180px, 100%);
  grid-template-columns: minmax(310px, 0.8fr) 1fr;
  gap: 24px;
  margin: 0 auto;
}

.preview-card,
.report-shell,
.workspace-shell,
.price-card,
.dealer-panel,
.timeline {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: 0 16px 42px rgba(36, 48, 47, 0.08);
}

.preview-card {
  padding: 22px;
}

.status-line {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 760;
}

.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 99px;
  background: var(--amber);
  box-shadow: 0 0 0 5px rgba(217, 149, 38, 0.15);
}

.preview-card.is-ready .status-dot {
  background: var(--mint);
  box-shadow: 0 0 0 5px rgba(28, 140, 105, 0.15);
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin: 22px 0;
}

.metric-grid div,
.insight,
.dealer-stat {
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--panel-soft);
}

.metric-grid div {
  min-height: 84px;
  padding: 12px;
}

.metric-label,
.dealer-stat span,
.price-head span,
.insight span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 740;
}

.metric-grid strong {
  display: block;
  margin-top: 6px;
  font-size: 22px;
}

.flow-list {
  display: grid;
  gap: 12px;
}

.flow-item {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 16px;
  align-items: start;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
}

.flow-item span {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 7px;
  background: #e8efe9;
  color: var(--mint);
  font-weight: 850;
}

.flow-item p {
  margin-bottom: 0;
  color: var(--muted);
}

.report-section {
  background: #fbfcfa;
}

.report-shell {
  width: min(1180px, 100%);
  margin: 0 auto;
  overflow: hidden;
}

.report-summary {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  padding: 28px;
  border-bottom: 1px solid var(--line);
}

.report-summary p {
  color: var(--muted);
}

.risk-score {
  display: grid;
  width: 120px;
  min-height: 120px;
  place-items: center;
  padding: 12px;
  border: 1px solid rgba(28, 140, 105, 0.22);
  border-radius: 7px;
  background: #e9f6ef;
  color: var(--mint);
  text-align: center;
}

.risk-score span,
.risk-score small {
  font-weight: 790;
}

.risk-score strong {
  font-size: 40px;
  line-height: 1;
}

.insight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  padding: 20px 28px;
}

.insight {
  min-height: 126px;
  padding: 16px;
}

.insight svg {
  margin-bottom: 12px;
  color: var(--accent);
}

.insight strong {
  display: block;
  margin: 5px 0;
  font-size: 22px;
}

.insight small {
  color: var(--muted);
}

.table-wrap {
  overflow-x: auto;
  border-top: 1px solid var(--line);
}

table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

th,
td {
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  white-space: nowrap;
}

th {
  background: #f4f6f2;
  color: var(--muted);
  font-size: 13px;
  font-weight: 790;
}

.pill {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 0 10px;
  border-radius: 7px;
  font-size: 13px;
  font-weight: 790;
}

.pill.success {
  background: #e6f4ec;
  color: var(--mint);
}

.pill.warning {
  background: #fff1dc;
  color: #a76712;
}

.pill.muted {
  background: #edf0ee;
  color: var(--muted);
}

.workspace-section {
  background: #eef3ef;
}

.workspace-shell {
  width: min(1180px, 100%);
  margin: 0 auto;
  overflow: hidden;
}

.workspace-tabs {
  display: flex;
  gap: 8px;
  padding: 10px;
  border-bottom: 1px solid var(--line);
  background: #f7f9f6;
}

.workspace-tab {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 14px;
  border: 1px solid transparent;
  border-radius: 7px;
  background: transparent;
  color: var(--muted);
  font-weight: 790;
}

.workspace-tab svg {
  width: 18px;
  height: 18px;
}

.workspace-tab.is-active {
  border-color: var(--line);
  background: #ffffff;
  color: var(--ink);
  box-shadow: 0 8px 22px rgba(22, 32, 31, 0.08);
}

.workspace-panel {
  display: none;
  grid-template-columns: 1fr minmax(280px, 340px);
  gap: 18px;
  padding: 18px;
}

.workspace-panel.is-active {
  display: grid;
}

.workspace-main,
.workspace-side,
.bulk-box,
.ops-grid {
  display: grid;
  gap: 14px;
}

.workspace-toolbar {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #ffffff;
}

.workspace-toolbar h3 {
  margin-bottom: 0;
}

.report-list {
  display: grid;
  gap: 10px;
}

.report-row {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #ffffff;
}

.report-row strong,
.report-row span {
  display: block;
}

.report-row div span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 14px;
}

.mini-card {
  min-height: 132px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #ffffff;
}

.mini-card strong {
  display: block;
  margin: 6px 0 8px;
  font-size: 26px;
  line-height: 1.1;
}

.mini-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.bulk-box {
  grid-template-columns: 1.2fr 0.8fr;
}

.bulk-drop {
  display: grid;
  min-height: 220px;
  place-items: center;
  align-content: center;
  gap: 10px;
  padding: 24px;
  border: 1px dashed #b6c6be;
  border-radius: 7px;
  background: #ffffff;
  text-align: center;
}

.bulk-drop svg {
  width: 42px;
  height: 42px;
  color: var(--accent);
}

.bulk-drop span {
  color: var(--muted);
}

.queue-list {
  display: grid;
  gap: 10px;
}

.queue-list div {
  display: flex;
  min-height: 64px;
  align-items: center;
  justify-content: space-between;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #ffffff;
}

.queue-list span,
.ops-item span,
.ops-item small {
  color: var(--muted);
  font-size: 13px;
  font-weight: 760;
}

.queue-list strong {
  font-size: 28px;
}

.ops-grid {
  grid-template-columns: repeat(2, 1fr);
}

.ops-item {
  min-height: 132px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #ffffff;
}

.ops-item strong {
  display: block;
  margin: 12px 0 6px;
  font-size: 28px;
  line-height: 1;
}

.ops-item.is-ok strong {
  color: var(--mint);
}

.ops-item.is-warn strong {
  color: var(--amber);
}

.pricing-section {
  background: #f7f2ee;
}

.pricing-grid {
  display: grid;
  width: min(1180px, 100%);
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 0 auto;
}

.price-card {
  position: relative;
  display: flex;
  min-height: 390px;
  flex-direction: column;
  padding: 22px;
}

.price-card.is-featured {
  border-color: rgba(217, 50, 50, 0.32);
  box-shadow: 0 22px 60px rgba(217, 50, 50, 0.13);
}

.badge {
  align-self: flex-start;
  margin-bottom: 16px;
  padding: 6px 10px;
  border-radius: 7px;
  background: #ffe8e4;
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 850;
}

.price-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: start;
  margin-bottom: 18px;
}

.price-head strong {
  font-size: 30px;
  line-height: 1;
}

.price-card p,
.price-card li {
  color: var(--muted);
}

.price-card ul {
  display: grid;
  gap: 10px;
  margin: 0 0 24px;
  padding-left: 18px;
}

.price-card .button {
  margin-top: auto;
}

.price-card .button-outline,
.checkout-panel .button-outline {
  border-color: var(--line);
  background: #ffffff;
  color: var(--ink);
}

.addon-panel {
  display: grid;
  width: min(1180px, 100%);
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  margin: 18px auto 0;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
}

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

.addon-price {
  display: grid;
  gap: 12px;
  justify-items: end;
}

.addon-price strong {
  font-size: 30px;
  line-height: 1;
}

.dealer-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 480px);
  gap: 32px;
  align-items: center;
  background: #ffffff;
}

.dealer-copy,
.dealer-panel {
  width: min(100%, 580px);
}

.dealer-copy {
  justify-self: end;
}

.dealer-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
}

.dealer-panel {
  display: grid;
  gap: 10px;
  padding: 18px;
}

.dealer-stat {
  display: flex;
  min-height: 74px;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  padding: 14px;
}

.dealer-stat strong {
  text-align: right;
}

.integration-section {
  background: #eff5f1;
}

.timeline {
  display: grid;
  width: min(1180px, 100%);
  gap: 0;
  margin: 0 auto;
  overflow: hidden;
}

.crm-choice {
  display: grid;
  width: min(1180px, 100%);
  grid-template-columns: 1fr minmax(260px, 420px);
  gap: 18px;
  align-items: center;
  margin: 0 auto 18px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 16px 42px rgba(36, 48, 47, 0.08);
}

.crm-choice h3 {
  font-size: 26px;
}

.crm-choice p {
  margin-bottom: 0;
  color: var(--muted);
}

.crm-limits {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.crm-limits span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 10px;
  border-radius: 7px;
  background: #f1f5f2;
  color: var(--muted);
  font-size: 13px;
  font-weight: 790;
}

.timeline-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  padding: 22px;
  border-bottom: 1px solid var(--line);
}

.timeline-item:last-child {
  border-bottom: 0;
}

.timeline-item svg {
  width: 42px;
  height: 42px;
  padding: 10px;
  border-radius: 7px;
  background: #edf0ee;
  color: var(--muted);
}

.timeline-item.is-done svg {
  background: #e3f3eb;
  color: var(--mint);
}

.timeline-item p {
  margin-bottom: 0;
  color: var(--muted);
}

.checkout {
  position: fixed;
  z-index: 40;
  inset: 0;
  display: none;
}

.checkout.is-open {
  display: block;
}

.checkout-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(12, 18, 17, 0.55);
}

.checkout-panel {
  position: absolute;
  top: 0;
  right: 0;
  display: grid;
  width: min(430px, 100%);
  height: 100%;
  align-content: start;
  gap: 16px;
  padding: 26px;
  background: #ffffff;
  box-shadow: -20px 0 70px rgba(20, 32, 31, 0.2);
}

.checkout-close {
  justify-self: end;
  border: 1px solid var(--line);
  background: #ffffff;
  color: var(--ink);
}

.checkout-panel p:not(.eyebrow) {
  color: var(--muted);
}

.checkout-total {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--panel-soft);
}

.checkout-total strong {
  font-size: 30px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 32px 24px;
  background: var(--charcoal);
  color: #ffffff;
}

.site-footer p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.site-footer a {
  color: #ffffff;
  font-weight: 790;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 18px;
}

.footer-links a {
  white-space: nowrap;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-nav {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 106px;
  }

  .hero-content,
  .preview-layout,
  .workspace-panel,
  .crm-choice,
  .dealer-section {
    grid-template-columns: 1fr;
  }

  .crm-limits {
    justify-content: flex-start;
  }

  .hero-copy {
    max-width: none;
  }

  .search-panel {
    max-width: 640px;
  }

  .dealer-copy,
  .dealer-panel {
    width: min(100%, 680px);
    justify-self: center;
  }

  .pricing-grid,
  .insight-grid,
  .bulk-box,
  .ops-grid,
  .addon-panel {
    grid-template-columns: 1fr;
  }

  .addon-price {
    justify-items: start;
  }
}

@media (max-width: 720px) {
  .site-header {
    top: 8px;
    width: calc(100% - 16px);
  }

  .brand-text,
  .header-actions .button {
    display: none;
  }

  .hero {
    padding: 96px 16px 42px;
  }

  .hero-scrim {
    background:
      linear-gradient(90deg, rgba(11, 17, 16, 0.94) 0%, rgba(11, 17, 16, 0.72) 100%),
      linear-gradient(0deg, rgba(11, 17, 16, 0.58) 0%, rgba(11, 17, 16, 0.08) 52%);
  }

  h1 {
    font-size: 42px;
    line-height: 1;
  }

  h2 {
    font-size: 32px;
  }

  .hero-lead {
    font-size: 17px;
  }

  .input-row,
  .field-grid,
  .report-summary {
    grid-template-columns: 1fr;
  }

  .report-summary {
    display: grid;
  }

  .risk-score {
    width: 100%;
    min-height: 94px;
    grid-template-columns: 1fr auto 1fr;
    justify-items: center;
  }

  section:not(.hero) {
    padding: 58px 16px;
  }

  .preview-card,
  .report-summary,
  .insight-grid,
  .workspace-panel,
  .workspace-toolbar,
  .price-card,
  .timeline-item,
  .dealer-panel {
    padding: 16px;
  }

  .workspace-tabs {
    overflow-x: auto;
  }

  .workspace-tab {
    min-width: 128px;
  }

  .workspace-toolbar,
  .report-row {
    display: grid;
  }

  .metric-grid {
    grid-template-columns: 1fr;
  }

  .flow-item {
    grid-template-columns: 40px 1fr;
    padding: 16px;
  }

  .flow-item span {
    width: 40px;
    height: 40px;
  }

  .site-footer {
    display: grid;
  }
}
