:root {
  --ink: #101828;
  --muted: #5c667a;
  --line: #d8dee9;
  --panel: #ffffff;
  --soft: #f5f7fb;
  --blue: #006fd6;
  --blue-dark: #064d96;
  --green: #0f8f64;
  --amber: #a55c00;
  --red: #b42318;
  --navy: #071d3a;
  --shadow: 0 18px 45px rgba(16, 24, 40, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  min-width: 210px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  color: #fff;
  background: var(--navy);
  font-weight: 800;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 12px;
}

nav {
  display: flex;
  justify-content: center;
  gap: clamp(12px, 2.3vw, 34px);
  font-size: 15px;
}

nav a,
.header-call,
.text-link,
.footer a {
  text-decoration: none;
}

nav a:hover,
.text-link:hover,
.footer a:hover {
  color: var(--blue);
}

.header-call {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--blue-dark);
  font-weight: 700;
  white-space: nowrap;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: clamp(30px, 5vw, 72px);
  align-items: center;
  min-height: calc(100vh - 68px);
  padding: clamp(54px, 7vw, 96px) clamp(18px, 5vw, 72px);
  overflow: hidden;
}

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

.eyebrow {
  margin: 0 0 10px;
  color: var(--blue-dark);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 18px;
  font-size: clamp(42px, 6vw, 78px);
  line-height: 0.98;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.04;
}

h3 {
  font-size: 21px;
}

.hero-text,
.section-heading p,
.split p,
.band p {
  color: var(--muted);
  font-size: 18px;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

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

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

.button.secondary {
  color: var(--blue-dark);
  background: #fff;
  border-color: var(--blue);
}

.hero-media {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-media img {
  width: 100%;
  aspect-ratio: 1.28;
  object-fit: cover;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 34px 0 0;
}

.trust-strip div,
.sell-box,
.request-panel,
.contact-card,
.product-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.trust-strip div {
  padding: 15px;
}

.trust-strip dt {
  font-size: 28px;
  font-weight: 900;
}

.trust-strip dd {
  margin: 0;
  color: var(--muted);
}

.section {
  padding: clamp(58px, 8vw, 112px) clamp(18px, 5vw, 72px);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 30px;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.filter {
  min-height: 38px;
  padding: 8px 13px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
}

.filter.is-active {
  color: #fff;
  background: var(--navy);
  border-color: var(--navy);
}

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

.product-card {
  display: flex;
  flex-direction: column;
  min-height: 360px;
  padding: 18px;
}

.product-topline {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 13px;
}

.status {
  padding: 3px 7px;
  border-radius: 999px;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

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

.status.repair {
  background: var(--red);
}

.status.parts {
  background: #606a7b;
}

.status.match {
  background: var(--green);
}

.product-card dl {
  display: grid;
  gap: 10px;
  margin: 0 0 18px;
}

.product-card dl div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid #edf0f5;
  padding-bottom: 8px;
}

.product-card dt {
  color: var(--muted);
}

.product-card dd {
  margin: 0;
  text-align: right;
  font-weight: 750;
}

.product-card p {
  color: var(--muted);
}

.product-card .text-link {
  margin-top: auto;
  color: var(--blue-dark);
  font-weight: 800;
}

.band {
  background: var(--soft);
  border-block: 1px solid var(--line);
}

.band-inner {
  padding: clamp(58px, 8vw, 104px) clamp(18px, 5vw, 72px);
}

.two-column,
.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(28px, 6vw, 82px);
  align-items: start;
}

.process-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 6px 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.process-list span {
  grid-row: span 2;
  color: var(--blue);
  font-weight: 900;
}

.process-list p {
  margin: 0;
}

.request-panel {
  display: grid;
  gap: 14px;
  padding: clamp(18px, 3vw, 28px);
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 7px;
  font-weight: 750;
}

input,
textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
}

input:focus,
textarea:focus {
  outline: 3px solid rgba(0, 111, 214, 0.18);
  border-color: var(--blue);
}

.sell-box {
  padding: clamp(20px, 3vw, 30px);
  background: var(--navy);
  color: #fff;
}

.sell-box p {
  color: #d5deed;
}

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

.contact-card {
  display: grid;
  gap: 8px;
  padding: 24px;
  text-decoration: none;
}

.contact-card span {
  color: var(--muted);
}

.contact-card strong {
  overflow-wrap: anywhere;
  font-size: 20px;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 34px clamp(18px, 5vw, 72px);
  color: #fff;
  background: var(--navy);
}

.footer p {
  margin: 8px 0 0;
  color: #d5deed;
}

.footer div:last-child {
  display: grid;
  gap: 8px;
  text-align: right;
}

@media (max-width: 1040px) {
  .site-header {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero,
  .two-column,
  .split {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 680px) {
  .site-header {
    position: static;
  }

  .header-call {
    width: 100%;
    text-align: center;
  }

  nav {
    gap: 16px;
  }

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

  h1 {
    font-size: 40px;
  }

  .trust-strip,
  .product-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .product-card {
    min-height: 0;
  }

  .footer {
    display: grid;
  }

  .footer div:last-child {
    text-align: left;
  }
}
