:root {
  --bg: #f3f0ea;
  --bg-soft: #ece7df;
  --surface: rgba(255, 255, 255, 0.72);
  --surface-strong: rgba(255, 255, 255, 0.88);
  --surface-dark: #101215;
  --text: #171717;
  --text-soft: #4f5561;
  --line: rgba(23, 23, 23, 0.08);
  --primary: #1d6fe2;
  --primary-soft: rgba(29, 111, 226, 0.18);
  --accent: #8f8576;
  --shadow: 0 24px 60px rgba(17, 18, 20, 0.14);
  --radius-xl: 32px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Aptos, "Segoe UI Variable Display", "Trebuchet MS", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(29, 111, 226, 0.18), transparent 28%),
    radial-gradient(circle at 80% 20%, rgba(143, 133, 118, 0.16), transparent 24%),
    linear-gradient(180deg, #f8f6f2 0%, var(--bg) 58%, #e9e3d8 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.24) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.24) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.7), transparent 92%);
}

.page-shell {
  width: min(calc(100% - 32px), var(--max-width));
  margin: 0 auto;
  padding: 20px 0 120px;
}

.site-header {
  position: sticky;
  top: 14px;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 18px;
  margin-bottom: 26px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 999px;
  background: rgba(247, 244, 238, 0.72);
  backdrop-filter: blur(18px);
  box-shadow: 0 14px 40px rgba(17, 18, 20, 0.08);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: inherit;
  text-decoration: none;
}

.brand img,
.footer-brand img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.brand span,
.footer-brand span {
  font-family: "Arial Narrow", Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.site-nav {
  display: inline-flex;
  align-items: center;
  gap: 24px;
}

.site-nav a {
  color: var(--text-soft);
  text-decoration: none;
  font-size: 0.96rem;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
}

.hero {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 28px;
  align-items: stretch;
  min-height: 78vh;
}

.hero-copy,
.hero-card,
.contact-panel,
.quote-card,
.dark-panel,
.stats-strip,
.benefit-grid article,
.process-grid article,
.comparison-grid article,
.faq-list details {
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero-copy {
  padding: clamp(28px, 4vw, 56px);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.52)),
    linear-gradient(180deg, rgba(29, 111, 226, 0.08), transparent 48%);
}

.eyebrow {
  margin: 0 0 16px;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
}

.hero h1,
.section h2,
.hero-card h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 0.98;
}

.hero h1 {
  font-size: clamp(3.4rem, 7vw, 6.4rem);
  max-width: 10ch;
}

.hero-text,
.section-copy p,
.section-heading + p,
.hero-card p,
.contact-panel p,
.faq-list p,
.quote {
  color: var(--text-soft);
  line-height: 1.7;
  font-size: 1.02rem;
}

.hero-text {
  max-width: 58ch;
  margin: 22px 0 0;
}

.hero-actions {
  display: flex;
  gap: 14px;
}

.hero-actions {
  margin-top: 30px;
}

.cta-support-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.service-mobile-note {
  display: grid;
  gap: 6px;
  margin-top: 16px;
  padding: 16px 18px;
  border: 1px solid rgba(29, 111, 226, 0.14);
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(29, 111, 226, 0.08), rgba(255, 255, 255, 0.72)),
    rgba(255, 255, 255, 0.7);
}

.service-mobile-note strong {
  font-size: 1rem;
}

.service-mobile-note span {
  color: var(--text-soft);
  line-height: 1.7;
}

.service-area-note {
  display: grid;
  gap: 6px;
  margin-top: 14px;
  padding: 15px 18px;
  border: 1px solid rgba(23, 23, 23, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
}

.service-area-note strong {
  font-size: 1rem;
}

.service-area-note span {
  color: var(--text-soft);
  line-height: 1.7;
}

.cta-support-pill {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(23, 23, 23, 0.06);
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 700;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  text-decoration: none;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-small {
  min-height: 44px;
  padding: 0 18px;
  font-size: 0.92rem;
}

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, #1d6fe2, #0f59bf);
  box-shadow: 0 14px 30px rgba(29, 111, 226, 0.28);
}

.button-secondary,
.button-outline {
  color: var(--text);
  background: rgba(255, 255, 255, 0.56);
  border-color: rgba(23, 23, 23, 0.1);
}

.trust-points {
  display: grid;
  gap: 10px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.trust-points li {
  position: relative;
  padding-left: 28px;
  color: var(--text);
  font-weight: 600;
}

.trust-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), #7eb1ff);
  box-shadow: 0 0 0 6px rgba(29, 111, 226, 0.1);
}

.hero-next-step-panel {
  display: grid;
  gap: 18px;
  margin-top: 24px;
  padding: 22px 24px;
  border: 1px solid rgba(23, 23, 23, 0.08);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.7)),
    linear-gradient(180deg, rgba(29, 111, 226, 0.05), transparent 72%);
  box-shadow: var(--shadow);
}

.hero-next-step-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px 14px;
}

.hero-next-step-head strong {
  font-size: 1rem;
}

.hero-next-step-head span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(29, 111, 226, 0.08);
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 700;
}

.hero-next-step-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.hero-next-step-grid article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  padding: 18px;
  border-radius: 20px;
  background: rgba(23, 23, 23, 0.04);
}

.hero-next-step-grid b {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: linear-gradient(135deg, #1d6fe2, #0f59bf);
  color: #fff;
  font-size: 0.96rem;
}

.hero-next-step-grid article div {
  display: grid;
  gap: 8px;
}

.hero-next-step-grid article strong {
  font-size: 0.98rem;
}

.hero-next-step-grid article span {
  color: var(--text-soft);
  line-height: 1.65;
}

.hero-panel {
  display: flex;
}

.hero-card {
  position: relative;
  width: 100%;
  padding: 28px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: linear-gradient(180deg, rgba(16, 18, 21, 0.95), rgba(21, 24, 29, 0.92));
  color: #f2f5f8;
}

.hero-card-glow::after {
  content: "";
  position: absolute;
  inset: auto -10% -30% auto;
  width: 260px;
  height: 260px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(29, 111, 226, 0.34), transparent 72%);
}

.card-label {
  display: inline-flex;
  margin: 0 0 16px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #d7dce3;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-card h2 {
  font-size: clamp(2rem, 3.5vw, 3.1rem);
  max-width: 12ch;
}

.hero-card p {
  color: rgba(242, 245, 248, 0.76);
}

.estimator-placeholder {
  position: relative;
  display: grid;
  place-items: center;
  gap: 8px;
  min-height: 320px;
  padding: 24px;
  margin: 28px 0 22px;
  border: 1px dashed rgba(255, 255, 255, 0.28);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    radial-gradient(circle at top, rgba(29, 111, 226, 0.26), transparent 56%);
  text-align: center;
}

.estimator-placeholder p {
  margin: 0;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
}

.estimator-placeholder span {
  color: rgba(242, 245, 248, 0.66);
}

.placeholder-badge {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: #dce8fb;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.estimator-frame {
  width: 100%;
  min-height: 420px;
  border: 0;
  border-radius: 20px;
  background: #fff;
}

.estimator-placeholder.has-live-estimator {
  display: block;
  min-height: auto;
  padding: 12px;
  border-style: solid;
  border-color: rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    linear-gradient(135deg, rgba(29, 111, 226, 0.18), rgba(16, 18, 21, 0.78));
}

.mini-proof-grid,
.contact-cards {
  display: grid;
  gap: 14px;
}

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

.mini-proof-grid article,
.contact-cards a {
  position: relative;
  z-index: 1;
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  text-decoration: none;
}

.mini-proof-grid strong,
.contact-cards strong {
  display: block;
  margin-bottom: 6px;
  color: #fff;
}

.mini-proof-grid span,
.contact-cards span {
  color: rgba(242, 245, 248, 0.68);
}

.hero-quick-form-card {
  display: grid;
  gap: 16px;
  margin-top: 22px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    rgba(255, 255, 255, 0.02);
}

.hero-quick-form-copy {
  display: grid;
  gap: 6px;
}

.hero-quick-form-copy strong {
  color: #fff;
  font-size: 1rem;
}

.hero-quick-form-copy span {
  color: rgba(242, 245, 248, 0.72);
  line-height: 1.65;
}

.hero-quick-form {
  display: grid;
  gap: 14px;
}

.hero-quick-form label {
  display: grid;
  gap: 8px;
}

.hero-quick-form label span {
  color: #fff;
  font-weight: 700;
}

.hero-quick-form input {
  width: 100%;
  min-height: 52px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--text);
  font: inherit;
}

.hero-quick-form input:focus-visible {
  outline: none;
  border-color: rgba(126, 177, 255, 0.72);
  box-shadow: 0 0 0 4px rgba(126, 177, 255, 0.16);
}

.hero-quick-form-submit {
  display: grid;
  gap: 10px;
}

.hero-quick-form-submit small {
  color: rgba(242, 245, 248, 0.66);
  line-height: 1.6;
}

.hero-quick-form .button {
  width: 100%;
}

.section {
  padding-top: 88px;
}

.stats-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 22px;
  padding: 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.56);
}

.stats-strip article {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.58);
}

.stats-strip strong {
  display: block;
  margin-bottom: 8px;
  font-size: clamp(2rem, 4vw, 3rem);
  font-family: Georgia, "Times New Roman", serif;
}

.stats-strip span {
  color: var(--text-soft);
}

.split-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
}

.section-copy h2,
.section-heading h2 {
  font-size: clamp(2.2rem, 4.4vw, 4rem);
  max-width: 12ch;
}

.benefit-grid,
.coverage-grid,
.process-grid,
.comparison-grid,
.service-model-grid,
.inventory-grid,
.vehicle-content-grid,
.seller-intake-grid,
.seller-reasons-grid,
.contact-reassurance-grid {
  display: grid;
  gap: 18px;
}

.showcase-section {
  padding-top: 34px;
}

.showcase-frame {
  position: relative;
  margin: 0;
  min-height: 560px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.showcase-frame img,
.benefit-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.showcase-overlay {
  position: absolute;
  left: 28px;
  bottom: 28px;
  max-width: min(560px, calc(100% - 56px));
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 26px;
  background: rgba(14, 16, 19, 0.72);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 48px rgba(8, 10, 12, 0.26);
}

.showcase-overlay h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.8rem);
  max-width: 13ch;
}

.showcase-overlay p:last-child {
  margin: 16px 0 0;
  color: rgba(242, 245, 248, 0.8);
}

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

.coverage-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: start;
}

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

.coverage-grid article,
.service-model-grid article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.62);
  box-shadow: var(--shadow);
}

.coverage-grid strong {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 14px;
  background: rgba(29, 111, 226, 0.1);
  color: var(--primary);
  font-weight: 800;
}

.coverage-grid h3,
.service-model-grid h3 {
  margin: 0 0 10px;
  font-size: 1.16rem;
}

.coverage-grid p,
.service-model-grid p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.7;
}

.clarity-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.clarity-card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.68);
  box-shadow: var(--shadow);
}

.clarity-card ul {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding-left: 18px;
}

.clarity-card li {
  color: var(--text-soft);
  line-height: 1.7;
}

.clarity-card-featured {
  background:
    linear-gradient(135deg, rgba(29, 111, 226, 0.08), rgba(255, 255, 255, 0.72)),
    rgba(255, 255, 255, 0.72);
}

.benefit-visual {
  position: relative;
  grid-column: 1 / -1;
  min-height: 340px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.benefit-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 24%, rgba(13, 15, 18, 0.7) 100%);
}

.benefit-visual figcaption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 1;
  display: grid;
  gap: 8px;
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
}

.benefit-visual strong {
  color: #fff;
  font-size: 1.15rem;
}

.benefit-visual span {
  color: rgba(245, 247, 250, 0.82);
  line-height: 1.6;
}

.benefit-grid article,
.process-grid article,
.comparison-grid article {
  padding: 24px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.62);
}

.benefit-grid h3,
.process-grid h3,
.comparison-grid h3 {
  margin: 0 0 12px;
  font-size: 1.2rem;
}

.benefit-grid p,
.process-grid p,
.comparison-grid li {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.7;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 28px;
}

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

.process-grid article span {
  display: inline-flex;
  width: 50px;
  height: 50px;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border-radius: 16px;
  background: var(--primary-soft);
  color: var(--primary);
  font-weight: 800;
}

.dark-panel {
  padding: 36px;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at top right, rgba(29, 111, 226, 0.18), transparent 30%),
    linear-gradient(180deg, rgba(16, 18, 21, 0.98), rgba(22, 24, 28, 0.96));
  color: #f5f7fa;
}

.dark-panel .eyebrow,
.dark-panel .section-heading h2 {
  color: #f5f7fa;
}

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

.comparison-grid article {
  background: rgba(255, 255, 255, 0.04);
}

.comparison-grid ul {
  margin: 0;
  padding-left: 18px;
}

.comparison-grid li + li {
  margin-top: 10px;
}

.comparison-grid .featured {
  background:
    linear-gradient(180deg, rgba(29, 111, 226, 0.18), rgba(255, 255, 255, 0.06)),
    rgba(255, 255, 255, 0.04);
}

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

.service-model-banner {
  display: grid;
  gap: 10px;
  margin-top: 20px;
  padding: 24px 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(29, 111, 226, 0.08), rgba(255, 255, 255, 0.7)),
    rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
}

.service-model-banner strong {
  font-size: 1.15rem;
}

.service-model-banner span {
  color: var(--text-soft);
  line-height: 1.7;
}

.buyer-trust-panel {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 24px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(16, 18, 21, 0.96), rgba(22, 24, 29, 0.92)),
    rgba(16, 18, 21, 0.94);
  box-shadow: var(--shadow);
}

.buyer-trust-panel h2 {
  color: #fff;
  max-width: 12ch;
}

.buyer-trust-panel p:last-child {
  color: rgba(242, 245, 248, 0.78);
  line-height: 1.7;
}

.buyer-trust-grid {
  display: grid;
  gap: 14px;
}

.buyer-trust-grid article {
  display: grid;
  gap: 8px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.06);
}

.buyer-trust-grid strong {
  color: #fff;
}

.buyer-trust-grid span {
  color: rgba(242, 245, 248, 0.78);
  line-height: 1.7;
}

.inventory-section .section-heading {
  align-items: center;
}

.inventory-section-copy {
  display: grid;
  gap: 10px;
  max-width: 72ch;
}

.inventory-section-copy p:last-child {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.75;
}

.inventory-home-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

.inventory-home-proof-grid article {
  display: grid;
  gap: 10px;
  padding: 20px;
  border: 1px solid rgba(23, 23, 23, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: var(--shadow);
}

.inventory-home-proof-grid strong {
  font-size: 1rem;
}

.inventory-home-proof-grid span {
  color: var(--text-soft);
  line-height: 1.65;
}

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

.inventory-card {
  display: grid;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.68);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.inventory-card-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.inventory-image-wrap {
  position: relative;
  aspect-ratio: 1.28 / 1;
  overflow: hidden;
}

.inventory-image-wrap img,
.vehicle-media-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.inventory-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(16, 18, 21, 0.8);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.inventory-body {
  padding: 20px;
}

.inventory-meta {
  margin: 0 0 8px;
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.inventory-body h3 {
  margin: 0;
  font-size: 1.28rem;
  line-height: 1.3;
}

.inventory-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.inventory-specs span,
.summary-badges span,
.toolbar-chip,
.equipment-list span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(23, 23, 23, 0.06);
  color: var(--text);
  font-size: 0.92rem;
}

.inventory-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 20px;
}

.inventory-conversion-note {
  margin: 16px 0 0;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(29, 111, 226, 0.08);
  color: var(--text-soft);
  line-height: 1.6;
  font-weight: 600;
}

.inventory-trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.inventory-trust-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(18, 106, 95, 0.1);
  color: #0d5b55;
  font-size: 0.86rem;
  font-weight: 700;
}

.inventory-price-stack {
  display: grid;
  gap: 4px;
}

.inventory-card-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 0 20px 20px;
}

.inventory-card-actions .button {
  justify-content: center;
  width: 100%;
}

.inventory-footer strong,
.vehicle-price {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.9rem;
  letter-spacing: -0.03em;
}

.inventory-price-stack small {
  color: var(--text-soft);
  font-size: 0.86rem;
  font-weight: 700;
}

.inventory-footer span {
  color: var(--text-soft);
  font-weight: 700;
}

.catalog-hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 24px;
  align-items: stretch;
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0.58)),
    linear-gradient(180deg, rgba(29, 111, 226, 0.08), transparent 48%);
  box-shadow: var(--shadow);
}

.catalog-hero h1,
.vehicle-summary-card h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.03em;
}

.catalog-hero h1 {
  font-size: clamp(2.6rem, 5vw, 4.8rem);
  max-width: 12ch;
}

.catalog-hero-card {
  display: grid;
  place-content: center;
  gap: 12px;
  padding: 28px;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(16, 18, 21, 0.95), rgba(22, 24, 29, 0.92));
  color: #fff;
}

.catalog-hero-card strong {
  font-size: 1.4rem;
}

.catalog-hero-card span {
  color: rgba(242, 245, 248, 0.76);
  line-height: 1.7;
}

.catalog-toolbar {
  display: grid;
  gap: 18px;
  padding-top: 26px;
}

.catalog-toolbar-copy {
  display: grid;
  gap: 8px;
}

.catalog-toolbar-copy strong {
  font-size: 1.1rem;
}

.catalog-toolbar-copy span {
  color: var(--text-soft);
  line-height: 1.7;
}

.catalog-toolbar-controls {
  display: grid;
  gap: 14px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.64)),
    linear-gradient(180deg, rgba(29, 111, 226, 0.06), transparent 68%);
  box-shadow: var(--shadow);
}

.catalog-toolbar-topline {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 14px;
}

.catalog-search-field {
  display: grid;
  gap: 8px;
}

.catalog-search-field span,
.catalog-sort-field span {
  font-weight: 700;
}

.catalog-search-field input,
.catalog-sort-field select {
  width: 100%;
  min-height: 56px;
  padding: 14px 16px;
  border: 1px solid rgba(23, 23, 23, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--text);
  font: inherit;
}

.catalog-sort-field {
  display: grid;
  gap: 8px;
}

.catalog-search-field input:focus-visible,
.catalog-sort-field select:focus-visible {
  outline: none;
  border-color: rgba(29, 111, 226, 0.48);
  box-shadow: 0 0 0 4px rgba(29, 111, 226, 0.12);
}

.catalog-filter-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.catalog-results-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 16px;
  padding-top: 4px;
}

.catalog-results-copy {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.7;
}

.inventory-reassurance {
  display: grid;
  gap: 22px;
  margin-top: 28px;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.66)),
    linear-gradient(180deg, rgba(29, 111, 226, 0.08), transparent 72%);
  box-shadow: var(--shadow);
}

.inventory-reassurance-copy {
  display: grid;
  gap: 10px;
  max-width: 68ch;
}

.inventory-reassurance-copy h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.inventory-reassurance-copy p:last-child {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.75;
}

.inventory-reassurance-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.inventory-reassurance-grid article {
  display: grid;
  gap: 10px;
  padding: 18px;
  border: 1px solid rgba(23, 23, 23, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.78);
}

.inventory-reassurance-grid strong {
  font-size: 1rem;
}

.inventory-reassurance-grid span {
  color: var(--text-soft);
  line-height: 1.65;
}

.toolbar-chip {
  border: 1px solid transparent;
  cursor: pointer;
  font: inherit;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.toolbar-chip:hover,
.toolbar-chip:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(29, 111, 226, 0.24);
}

.toolbar-chip.is-active {
  background: linear-gradient(135deg, #1d6fe2, #0f59bf);
  color: #fff;
  box-shadow: 0 14px 30px rgba(29, 111, 226, 0.22);
}

.inventory-grid-page {
  padding-top: 26px;
}

.inventory-empty-state {
  display: grid;
  gap: 8px;
  padding: 22px 24px;
  margin-top: 22px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
}

.inventory-empty-state span {
  color: var(--text-soft);
  line-height: 1.7;
}

.inventory-home-note {
  display: grid;
  gap: 8px;
  margin-top: 22px;
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.66)),
    linear-gradient(180deg, rgba(29, 111, 226, 0.06), transparent 72%);
  box-shadow: var(--shadow);
}

.inventory-home-note span {
  color: var(--text-soft);
  line-height: 1.7;
}

.seller-hero {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 28px;
  align-items: stretch;
}

.seller-hero-copy,
.seller-hero-card,
.seller-intake-card,
.seller-timeline article,
.seller-reasons-grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
}

.seller-hero-copy {
  padding: clamp(28px, 4vw, 52px);
}

.seller-hero-copy h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.9rem, 6vw, 5.4rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
  max-width: 12ch;
}

.seller-hero-card {
  position: relative;
  overflow: hidden;
  min-height: 560px;
}

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

.seller-hero-overlay {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  display: grid;
  gap: 8px;
  padding: 20px 22px;
  border-radius: 24px;
  background: rgba(14, 16, 19, 0.68);
  color: #fff;
  backdrop-filter: blur(14px);
}

.seller-hero-overlay span {
  color: rgba(242, 245, 248, 0.8);
}

.seller-intake-grid {
  grid-template-columns: 1.1fr 0.9fr;
}

.seller-intake-card {
  padding: 24px;
}

.seller-intake-card h3,
.seller-reasons-grid h3,
.seller-timeline h3 {
  margin: 0 0 10px;
  font-size: 1.3rem;
}

.seller-intake-card p,
.seller-reasons-grid p,
.seller-timeline p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.7;
}

.estimation-readiness-grid {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.estimation-readiness-grid article {
  display: grid;
  gap: 6px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(23, 23, 23, 0.05);
}

.estimation-readiness-grid span,
.estimation-preview-note span {
  color: var(--text-soft);
  line-height: 1.7;
}

.estimation-proof-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.estimation-proof-pill {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(29, 111, 226, 0.08);
  color: var(--primary);
  font-size: 0.9rem;
  font-weight: 700;
}

.seller-estimator-placeholder {
  min-height: 360px;
  margin-top: 22px;
}

.estimation-preview-note {
  display: grid;
  gap: 6px;
  margin-top: 18px;
  padding: 18px;
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(29, 111, 226, 0.08), rgba(255, 255, 255, 0.72)),
    rgba(255, 255, 255, 0.72);
}

.seller-form-card {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.66)),
    linear-gradient(180deg, rgba(29, 111, 226, 0.08), transparent 60%);
}

.seller-estimation-followup {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 22px;
  margin-top: 22px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(16, 18, 21, 0.96), rgba(22, 24, 29, 0.92)),
    rgba(16, 18, 21, 0.94);
  box-shadow: var(--shadow);
}

.seller-estimation-followup h3 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 1.5rem;
}

.seller-estimation-followup p:last-child {
  color: rgba(242, 245, 248, 0.78);
  line-height: 1.8;
}

.seller-estimation-steps {
  display: grid;
  gap: 14px;
}

.seller-estimation-steps article {
  display: grid;
  gap: 8px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.06);
}

.seller-estimation-steps strong {
  color: #fff;
}

.seller-estimation-steps span {
  color: rgba(242, 245, 248, 0.78);
  line-height: 1.7;
}

.seller-documents-trust {
  display: grid;
  grid-template-columns: 0.96fr 1.04fr;
  gap: 20px;
  margin-top: 18px;
  padding: 24px;
  border: 1px solid rgba(23, 23, 23, 0.08);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(29, 111, 226, 0.08), rgba(255, 255, 255, 0.76)),
    rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow);
}

.seller-documents-trust h3 {
  margin: 0 0 12px;
  font-size: 1.45rem;
}

.seller-documents-trust-grid {
  display: grid;
  gap: 14px;
}

.seller-documents-trust-grid article {
  display: grid;
  gap: 8px;
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.7);
}

.seller-documents-trust-grid span {
  color: var(--text-soft);
  line-height: 1.7;
}

.seller-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.seller-form label {
  display: grid;
  gap: 8px;
}

.seller-form span {
  font-weight: 700;
}

.seller-form input,
.seller-form textarea {
  width: 100%;
  min-height: 54px;
  padding: 14px 16px;
  border: 1px solid rgba(23, 23, 23, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--text);
  font: inherit;
}

.seller-form textarea {
  min-height: 132px;
  resize: vertical;
}

.seller-form-full {
  grid-column: 1 / -1;
}

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

.seller-reasons-grid article {
  padding: 24px;
}

.seller-prep-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.seller-prep-card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
}

.seller-prep-card ul {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding-left: 18px;
}

.seller-prep-card li {
  color: var(--text-soft);
  line-height: 1.7;
}

.seller-prep-card-featured {
  background:
    linear-gradient(135deg, rgba(29, 111, 226, 0.08), rgba(255, 255, 255, 0.72)),
    rgba(255, 255, 255, 0.72);
}

.seller-visibility-panel {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 24px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(16, 18, 21, 0.96), rgba(22, 24, 29, 0.92)),
    rgba(16, 18, 21, 0.94);
  box-shadow: var(--shadow);
}

.seller-visibility-panel h2 {
  color: #fff;
  max-width: 12ch;
}

.seller-visibility-panel p:last-child {
  color: rgba(242, 245, 248, 0.78);
  line-height: 1.7;
}

.seller-visibility-grid {
  display: grid;
  gap: 14px;
}

.seller-visibility-grid article {
  display: grid;
  gap: 8px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.06);
}

.seller-visibility-grid strong {
  color: #fff;
}

.seller-visibility-grid span {
  color: rgba(242, 245, 248, 0.78);
  line-height: 1.7;
}

.seller-timeline {
  display: grid;
  gap: 16px;
}

.seller-timeline article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: start;
  padding: 22px;
}

.seller-timeline strong {
  display: inline-flex;
  width: 52px;
  height: 52px;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: rgba(29, 111, 226, 0.1);
  color: var(--primary);
  font-weight: 800;
}

.contact-page-hero {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 28px;
  align-items: stretch;
}

.contact-page-copy,
.contact-page-panel,
.contact-page-form-card,
.contact-side-card,
.contact-reassurance-grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
}

.contact-page-copy {
  padding: clamp(28px, 4vw, 52px);
}

.contact-page-copy h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
  max-width: 12ch;
}

.contact-page-actions {
  display: flex;
  gap: 14px;
  margin-top: 28px;
}

.contact-page-panel {
  display: grid;
  gap: 16px;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(16, 18, 21, 0.96), rgba(22, 24, 29, 0.92));
  color: #fff;
}

.contact-page-panel-card {
  display: grid;
  gap: 6px;
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.06);
}

.contact-page-panel-card span {
  color: rgba(242, 245, 248, 0.78);
  line-height: 1.7;
}

.contact-page-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
}

.contact-page-form-card,
.contact-side-card {
  padding: 28px;
}

.contact-page-form-card h2,
.contact-side-card h3 {
  margin: 0;
}

.contact-intent-shortcuts {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
  margin-bottom: 22px;
}

.contact-intent-chip {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(23, 23, 23, 0.1);
  border-radius: 999px;
  background: rgba(23, 23, 23, 0.05);
  color: var(--text);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.contact-intent-chip:hover,
.contact-intent-chip:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(29, 111, 226, 0.28);
  outline: none;
}

.contact-intent-chip.is-active {
  background: linear-gradient(135deg, #1d6fe2, #0f59bf);
  color: #fff;
  box-shadow: 0 14px 28px rgba(29, 111, 226, 0.2);
}

.contact-page-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 20px;
}

.contact-page-form label {
  display: grid;
  gap: 8px;
}

.contact-page-form span {
  font-weight: 700;
}

.seller-confidence-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.seller-confidence-grid article {
  display: grid;
  gap: 10px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
}

.seller-confidence-grid strong {
  font-size: 1.08rem;
}

.seller-confidence-grid p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.75;
}

.contact-page-form input,
.contact-page-form select,
.contact-page-form textarea {
  width: 100%;
  min-height: 54px;
  padding: 14px 16px;
  border: 1px solid rgba(23, 23, 23, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--text);
  font: inherit;
}

.contact-page-form textarea {
  min-height: 148px;
  resize: vertical;
}

.contact-page-form-full {
  grid-column: 1 / -1;
}

.contact-form-note {
  display: grid;
  gap: 6px;
  margin-top: 18px;
  padding: 18px;
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(29, 111, 226, 0.08), rgba(255, 255, 255, 0.72)),
    rgba(255, 255, 255, 0.72);
}

.contact-form-note span {
  color: var(--text-soft);
  line-height: 1.7;
}

.contact-page-side {
  display: grid;
  gap: 18px;
}

.contact-side-card p {
  color: var(--text-soft);
  line-height: 1.7;
}

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

.contact-reassurance-grid article {
  padding: 24px;
}

.contact-reassurance-grid h3 {
  margin: 0 0 10px;
}

.contact-reassurance-grid p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.7;
}

.contact-routing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.contact-routing-grid article {
  display: grid;
  gap: 8px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
}

.contact-routing-grid span {
  color: var(--text-soft);
  line-height: 1.7;
}

.contact-clarity-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.contact-clarity-grid article {
  display: grid;
  gap: 8px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
}

.contact-clarity-grid span {
  color: var(--text-soft);
  line-height: 1.7;
}

.contact-followup-panel {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 24px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(16, 18, 21, 0.96), rgba(22, 24, 29, 0.92)),
    rgba(16, 18, 21, 0.94);
  box-shadow: var(--shadow);
}

.contact-followup-panel h2 {
  color: #fff;
  max-width: 12ch;
}

.contact-followup-panel p:last-child {
  color: rgba(242, 245, 248, 0.78);
  line-height: 1.7;
}

.contact-followup-steps {
  display: grid;
  gap: 14px;
}

.contact-followup-steps article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.06);
}

.contact-followup-steps strong {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(29, 111, 226, 0.14);
  color: #fff;
  font-weight: 800;
}

.contact-followup-steps h3 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 1.05rem;
}

.contact-followup-steps p {
  margin: 0;
  color: rgba(242, 245, 248, 0.78);
}

.form-surface-header {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px 16px;
  padding: 16px 18px;
  border: 1px solid rgba(23, 23, 23, 0.08);
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(29, 111, 226, 0.08), rgba(255, 255, 255, 0.74)),
    rgba(255, 255, 255, 0.72);
}

.form-surface-header strong {
  font-size: 1rem;
}

.form-surface-header span {
  color: var(--text-soft);
  font-size: 0.92rem;
  font-weight: 600;
}

.form-trust-line {
  grid-column: 1 / -1;
  padding: 14px 16px;
  border: 1px solid rgba(29, 111, 226, 0.1);
  border-radius: 18px;
  background: rgba(29, 111, 226, 0.06);
  color: var(--text-soft);
  line-height: 1.7;
  font-size: 0.94rem;
}

.form-submit-row {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 16px;
}

.form-submit-row small {
  color: var(--text-soft);
  line-height: 1.6;
}

.form-submit-row .button {
  width: auto;
}

.form-feedback {
  grid-column: 1 / -1;
  padding: 14px 16px;
  border-radius: 16px;
  font-weight: 700;
  line-height: 1.6;
}

.form-feedback.is-success {
  background: rgba(47, 163, 107, 0.12);
  color: #1f6f4e;
  border: 1px solid rgba(47, 163, 107, 0.18);
}

.form-feedback.is-error {
  background: rgba(209, 92, 92, 0.12);
  color: #964242;
  border: 1px solid rgba(209, 92, 92, 0.18);
}

.vehicle-detail-hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: start;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 18px;
  color: var(--text-soft);
  font-size: 0.94rem;
}

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

.vehicle-media-card,
.vehicle-summary-card,
.vehicle-content-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
}

.vehicle-media-card {
  overflow: hidden;
}

.vehicle-gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.vehicle-gallery-thumb {
  padding: 0;
  border: 1px solid rgba(23, 23, 23, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  overflow: hidden;
  cursor: pointer;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.vehicle-gallery-thumb:hover,
.vehicle-gallery-thumb:focus-visible,
.vehicle-gallery-thumb.is-active {
  transform: translateY(-1px);
  border-color: rgba(29, 111, 226, 0.34);
  box-shadow: 0 14px 30px rgba(29, 111, 226, 0.14);
}

.vehicle-gallery-thumb img {
  width: 100%;
  aspect-ratio: 1.2 / 1;
  display: block;
  object-fit: cover;
}

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

.vehicle-facts-grid article {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.6);
  box-shadow: var(--shadow);
}

.vehicle-facts-grid strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.05rem;
}

.vehicle-facts-grid span {
  color: var(--text-soft);
}

.vehicle-summary-card {
  position: sticky;
  top: 104px;
  padding: 28px;
}

.vehicle-summary-card h1 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  max-width: 10ch;
}

.vehicle-price {
  margin: 18px 0 0;
}

.vehicle-fee {
  margin: 6px 0 0;
  color: var(--text-soft);
  font-weight: 700;
}

.vehicle-fee-row {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 6px;
}

.fee-info-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border: 0;
  border-radius: 999px;
  background: rgba(23, 23, 23, 0.12);
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 800;
  cursor: help;
}

.fee-tooltip {
  position: absolute;
  left: 0;
  top: calc(100% + 12px);
  z-index: 8;
  width: min(420px, calc(100vw - 48px));
  display: grid;
  gap: 8px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(23, 23, 23, 0.92);
  color: #fff;
  box-shadow: 0 18px 48px rgba(8, 10, 12, 0.24);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition:
    opacity 180ms ease,
    transform 180ms ease,
    visibility 180ms ease;
}

.fee-tooltip span {
  color: rgba(242, 245, 248, 0.82);
  line-height: 1.7;
}

.vehicle-fee-row:hover .fee-tooltip,
.vehicle-fee-row:focus-within .fee-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.vehicle-subline {
  margin: 14px 0 0;
  color: var(--text-soft);
  line-height: 1.7;
}

.summary-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.summary-cta-stack {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.summary-decision-box {
  display: grid;
  gap: 12px;
  margin-top: 22px;
  padding: 20px;
  border: 1px solid rgba(29, 111, 226, 0.14);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(29, 111, 226, 0.12), rgba(255, 255, 255, 0.74)),
    rgba(255, 255, 255, 0.74);
}

.summary-decision-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.summary-decision-pills span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(16, 18, 21, 0.88);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 700;
}

.summary-decision-box p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.7;
}

.summary-cta-stack .button {
  justify-content: center;
  min-height: 56px;
  font-size: 1rem;
  font-weight: 700;
}

.summary-cta-note {
  margin: 14px 0 0;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(29, 111, 226, 0.08);
  color: var(--text-soft);
  line-height: 1.7;
  font-weight: 600;
}

.summary-contact-box {
  display: grid;
  gap: 6px;
  margin-top: 24px;
  padding: 18px;
  border-radius: 20px;
  background: rgba(23, 23, 23, 0.06);
}

.summary-action-note {
  display: grid;
  gap: 8px;
  margin-top: 18px;
  padding: 18px;
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(29, 111, 226, 0.08), rgba(255, 255, 255, 0.64)),
    rgba(255, 255, 255, 0.68);
}

.summary-action-note span,
.summary-contact-box span {
  color: var(--text-soft);
  line-height: 1.7;
}

.vehicle-content-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding-top: 28px;
}

.vehicle-content-card {
  padding: 28px;
}

.vehicle-content-card h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  max-width: 13ch;
}

.vehicle-content-card p {
  color: var(--text-soft);
  line-height: 1.8;
}

.maintenance-history-card h2 {
  max-width: 14ch;
}

.maintenance-history-intro {
  margin-bottom: 0;
}

.maintenance-history-list {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.maintenance-history-item {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  gap: 16px;
  padding: 18px;
  border: 1px solid rgba(23, 23, 23, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
}

.maintenance-history-mileage {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(16, 18, 21, 0.92);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
}

.maintenance-history-content {
  display: grid;
  gap: 8px;
}

.maintenance-history-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.maintenance-history-head strong {
  font-size: 1rem;
}

.maintenance-history-head span,
.maintenance-history-content small,
.maintenance-history-empty,
.maintenance-history-sync-note span {
  color: var(--text-soft);
}

.maintenance-history-content p {
  margin: 0;
}

.maintenance-history-sync-note {
  display: grid;
  gap: 6px;
  margin-top: 18px;
  padding: 18px;
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(29, 111, 226, 0.08), rgba(255, 255, 255, 0.68)),
    rgba(255, 255, 255, 0.68);
}

.maintenance-history-empty {
  padding: 18px;
  border-radius: 20px;
  background: rgba(23, 23, 23, 0.05);
  line-height: 1.7;
}

.spec-list {
  display: grid;
  gap: 14px;
}

.spec-list div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(23, 23, 23, 0.08);
}

.spec-list span {
  color: var(--text-soft);
}

.spec-list strong {
  text-align: right;
}

.equipment-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.vehicle-action-card {
  display: grid;
  align-content: start;
  gap: 14px;
}

.detail-action-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.detail-action-form label {
  display: grid;
  gap: 8px;
}

.detail-action-form span {
  font-weight: 700;
}

.detail-action-form input,
.detail-action-form textarea {
  width: 100%;
  min-height: 54px;
  padding: 14px 16px;
  border: 1px solid rgba(23, 23, 23, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--text);
  font: inherit;
}

.seller-form input:focus-visible,
.seller-form textarea:focus-visible,
.contact-page-form input:focus-visible,
.contact-page-form select:focus-visible,
.contact-page-form textarea:focus-visible,
.detail-action-form input:focus-visible,
.detail-action-form textarea:focus-visible {
  outline: none;
  border-color: rgba(29, 111, 226, 0.48);
  box-shadow: 0 0 0 4px rgba(29, 111, 226, 0.12);
}

.detail-action-form textarea {
  min-height: 132px;
  resize: vertical;
}

.detail-action-form-full {
  grid-column: 1 / -1;
}

.detail-action-form .button {
  width: fit-content;
}

.vehicle-highlight-card {
  background:
    linear-gradient(135deg, rgba(29, 111, 226, 0.08), rgba(255, 255, 255, 0.68)),
    rgba(255, 255, 255, 0.72);
}

.purchase-pillars-card {
  background:
    linear-gradient(135deg, rgba(29, 111, 226, 0.06), rgba(255, 255, 255, 0.72)),
    rgba(255, 255, 255, 0.72);
}

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

.purchase-pillar {
  display: grid;
  gap: 8px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.68);
}

.purchase-pillar strong {
  font-size: 1rem;
}

.purchase-pillar span {
  color: var(--text-soft);
  line-height: 1.7;
}

.purchase-process-card {
  background:
    linear-gradient(135deg, rgba(15, 44, 99, 0.05), rgba(255, 255, 255, 0.72)),
    rgba(255, 255, 255, 0.72);
}

.purchase-process {
  display: grid;
  gap: 14px;
  margin-top: 16px;
}

.purchase-process article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.66);
}

.purchase-process strong {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(29, 111, 226, 0.1);
  color: var(--primary);
  font-weight: 800;
}

.purchase-process h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
}

.purchase-process p {
  margin: 0;
}

.trust-checklist-card {
  background:
    linear-gradient(135deg, rgba(29, 111, 226, 0.05), rgba(255, 255, 255, 0.72)),
    rgba(255, 255, 255, 0.72);
}

.trust-checklist {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.trust-checklist article {
  display: grid;
  gap: 8px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.66);
}

.trust-checklist strong {
  font-size: 1rem;
}

.trust-checklist span {
  color: var(--text-soft);
  line-height: 1.7;
}

.buyer-faq-card {
  background:
    linear-gradient(135deg, rgba(143, 133, 118, 0.08), rgba(255, 255, 255, 0.72)),
    rgba(255, 255, 255, 0.72);
}

.buyer-faq-list {
  display: grid;
  gap: 14px;
  margin-top: 16px;
}

.buyer-faq-list details {
  padding: 18px 22px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.66);
}

.buyer-faq-list summary {
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}

.buyer-faq-list summary::-webkit-details-marker {
  display: none;
}

.buyer-faq-list p {
  margin: 14px 0 0;
}

.warranty-card {
  background:
    linear-gradient(135deg, rgba(15, 44, 99, 0.06), rgba(255, 255, 255, 0.72)),
    rgba(255, 255, 255, 0.72);
}

.warranty-panel {
  overflow: hidden;
  border-radius: 24px;
  background: #173768;
  color: #fff;
}

.warranty-header {
  padding: 18px 20px;
  background: #16315c;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.warranty-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  padding: 10px 20px 4px;
}

.warranty-grid span {
  position: relative;
  padding: 10px 0 10px 24px;
  font-weight: 700;
}

.warranty-grid span::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 10px;
  color: #8cf0d7;
  font-weight: 900;
}

.warranty-footer {
  display: grid;
  gap: 10px;
  padding: 16px 20px 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(0, 0, 0, 0.12));
}

.warranty-footer strong {
  color: #b7fff0;
}

.warranty-footer div {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.warranty-footer span {
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.92rem;
}

.quote-section {
  display: flex;
  justify-content: center;
}

.quote-card {
  width: min(100%, 900px);
  padding: 32px;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.74);
  text-align: center;
}

.quote {
  margin: 0 0 22px;
  font-size: clamp(1.2rem, 2.8vw, 1.9rem);
  color: var(--text);
  font-family: Georgia, "Times New Roman", serif;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-list details {
  padding: 18px 22px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.64);
}

.faq-list summary {
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list p {
  margin: 14px 0 0;
}

.contact-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  padding: 32px;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0.68)),
    linear-gradient(180deg, rgba(29, 111, 226, 0.12), transparent 72%);
}

.contact-panel h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.contact-cards {
  min-width: min(320px, 100%);
}

.contact-cards a {
  background: rgba(16, 18, 21, 0.95);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 34px 0 12px;
}

.conversion-dock {
  position: fixed;
  left: 50%;
  bottom: 18px;
  z-index: 40;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  width: min(calc(100% - 24px), 980px);
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 24px;
  background: rgba(16, 18, 21, 0.9);
  backdrop-filter: blur(18px);
  box-shadow: 0 22px 48px rgba(8, 10, 12, 0.28);
  transform: translateX(-50%);
}

.conversion-dock-close {
  position: absolute;
  top: 12px;
  right: 12px;
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-size: 1.2rem;
  line-height: 1;
  transition:
    transform 180ms ease,
    background-color 180ms ease;
}

.conversion-dock-close:hover,
.conversion-dock-close:focus-visible {
  transform: scale(1.04);
  background: rgba(255, 255, 255, 0.14);
  outline: none;
}

.conversion-dock-copy {
  display: grid;
  gap: 4px;
  padding-right: 40px;
}

.conversion-dock-copy strong {
  color: #fff;
  font-size: 1rem;
}

.conversion-dock-copy span {
  color: rgba(242, 245, 248, 0.76);
  line-height: 1.6;
  font-size: 0.94rem;
}

.conversion-dock-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.conversion-dock .button-outline {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
}

.footer-brand-block {
  display: grid;
  gap: 10px;
}

.site-footer p,
.footer-links a,
.footer-contact a {
  margin: 0;
  color: var(--text-soft);
  text-decoration: none;
}

.footer-location {
  color: var(--text-soft);
  line-height: 1.6;
  font-size: 0.94rem;
}

.footer-links,
.footer-contact {
  display: grid;
  gap: 8px;
}

.footer-links a:hover,
.footer-links a:focus-visible,
.footer-contact a:hover,
.footer-contact a:focus-visible {
  color: var(--text);
}

.footer-cta {
  white-space: nowrap;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 550ms ease,
    transform 550ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .hero,
  .split-section,
  .coverage-section,
  .contact-panel,
  .process-grid,
  .comparison-grid,
  .service-model-grid,
  .clarity-grid,
  .inventory-home-proof-grid,
  .catalog-hero,
  .vehicle-detail-hero,
  .vehicle-content-grid,
  .seller-hero,
  .seller-intake-grid,
  .seller-reasons-grid,
  .seller-confidence-grid,
  .contact-clarity-grid,
  .contact-routing-grid,
  .contact-page-hero,
  .contact-page-grid,
  .contact-reassurance-grid,
  .buyer-trust-panel,
  .contact-followup-panel {
    grid-template-columns: 1fr;
  }

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

  .seller-prep-grid,
  .seller-visibility-panel,
  .seller-estimation-followup,
  .seller-documents-trust {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .section-heading {
    display: block;
  }

  .section-copy h2,
  .section-heading h2,
  .hero-card h2,
  .showcase-overlay h2,
  .catalog-hero h1,
  .vehicle-summary-card h1,
  .vehicle-content-card h2,
  .seller-hero-copy h1,
  .contact-page-copy h1 {
    max-width: 100%;
  }

  .vehicle-summary-card {
    position: static;
  }

  .purchase-pillars {
    grid-template-columns: 1fr;
  }

  .trust-checklist {
    grid-template-columns: 1fr;
  }

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

  .catalog-toolbar-topline {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .page-shell {
    width: min(calc(100% - 20px), var(--max-width));
    padding-top: 12px;
  }

  .site-header {
    border-radius: 28px;
  }

  .site-nav,
  .site-header .button-outline {
    display: none;
  }

  .hero h1 {
    max-width: none;
  }

  .benefit-grid,
  .coverage-grid,
  .stats-strip,
  .mini-proof-grid,
  .hero-next-step-grid,
  .inventory-grid,
  .vehicle-gallery-thumbs,
  .vehicle-facts-grid,
  .seller-form,
  .detail-action-form,
  .warranty-grid,
  .contact-page-form {
    grid-template-columns: 1fr;
  }

  .inventory-card-actions {
    grid-template-columns: 1fr;
  }

  .seller-hero-card {
    min-height: 380px;
  }

  .showcase-frame {
    min-height: 420px;
  }

  .showcase-overlay {
    left: 16px;
    right: 16px;
    bottom: 16px;
    max-width: none;
    padding: 18px;
  }

  .benefit-visual {
    min-height: 280px;
  }

  .benefit-visual figcaption {
    left: 16px;
    right: 16px;
    bottom: 16px;
  }

  .contact-cards {
    min-width: 0;
  }

  .site-footer {
    display: grid;
    gap: 18px;
    justify-content: stretch;
    align-items: flex-start;
  }

  .conversion-dock {
    grid-template-columns: 1fr;
    width: min(calc(100% - 16px), 980px);
    padding: 14px;
  }

  .conversion-dock-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .conversion-dock-actions .button {
    width: 100%;
  }

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

  .maintenance-history-head {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  * {
    transition: none !important;
    animation: none !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
