:root {
  --ink: #171713;
  --muted: #6b685e;
  --paper: #f5f1e7;
  --card: #fffdf7;
  --line: #d8d0bf;
  --red: #df2d1f;
  --orange: #f28a1b;
  --green: #25735a;
  --amber: #a3620a;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 12% 4%, rgba(242, 138, 27, 0.09), transparent 25rem),
    var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button,
select {
  cursor: pointer;
}

textarea {
  resize: vertical;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 12px clamp(20px, 5vw, 72px);
  border-bottom: 1px solid rgba(216, 208, 191, 0.85);
  background: rgba(245, 241, 231, 0.92);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  background: var(--red);
  color: white;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: -0.04em;
  transform: skew(-8deg);
  box-shadow: 5px 5px 0 var(--orange);
}

.brand b,
.brand small {
  display: block;
}

.brand b {
  font-size: 14px;
}

.brand small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 11px;
}

.topbar nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: #4f4b42;
  font-size: 13px;
  font-weight: 700;
}

.topbar nav a:hover {
  color: var(--red);
}

.topbar nav button {
  border: 1px solid var(--ink);
  background: transparent;
  padding: 10px 14px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.topbar nav .nav-cta {
  padding: 10px 14px;
  background: var(--red);
  color: white;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(380px, 1.05fr);
  gap: clamp(36px, 6vw, 92px);
  align-items: center;
  min-height: 690px;
  padding: 72px clamp(20px, 6vw, 88px) 64px;
  overflow: hidden;
}

.eyebrow {
  margin: 0 0 20px;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.hero h1 {
  max-width: 740px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 6.2vw, 94px);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.93;
}

.hero-lede {
  max-width: 650px;
  margin: 30px 0 0;
  color: #4f4b42;
  font-size: 18px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.hero-actions a {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.primary-action {
  background: var(--red);
  color: white;
}

.secondary-action {
  border: 1px solid var(--line);
  background: rgba(255, 253, 247, 0.7);
}

.scope-note {
  max-width: 620px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}

.hero-image {
  position: relative;
  margin: 0;
  padding: 18px 18px 50px;
  background: #fff;
  box-shadow: 0 28px 80px rgba(47, 36, 18, 0.18);
  transform: rotate(1.25deg);
}

.hero-image::before {
  position: absolute;
  top: -28px;
  left: 42%;
  width: 112px;
  height: 50px;
  background: rgba(244, 218, 147, 0.64);
  content: "";
  transform: rotate(-3deg);
}

.hero-image img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.hero-image figcaption {
  position: absolute;
  right: 20px;
  bottom: 16px;
  left: 20px;
  color: #666158;
  font-size: 11px;
  line-height: 1.35;
}

.summary {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr 1fr;
  margin: 0 clamp(20px, 6vw, 88px);
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.summary article {
  min-height: 150px;
  padding: 26px 28px;
  border-right: 1px solid var(--line);
}

.summary article:last-child {
  border-right: 0;
}

.summary span,
.summary small {
  display: block;
  color: var(--muted);
  font-size: 11px;
}

.summary span {
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.summary strong {
  display: block;
  margin: 16px 0 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 3.2vw, 48px);
  font-weight: 500;
  letter-spacing: -0.04em;
}

.catalog-section {
  padding: 110px clamp(20px, 6vw, 88px);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(260px, 0.6fr);
  gap: 36px;
  align-items: end;
}

.section-heading h2,
.method h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(36px, 4.4vw, 66px);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1;
}

.section-heading > p {
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.filters {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) auto auto;
  gap: 10px;
  margin-top: 42px;
}

.search-box {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 15px;
  border: 1px solid var(--line);
  background: var(--card);
}

.search-box > span {
  color: var(--red);
  font-size: 24px;
  line-height: 0;
  transform: rotate(-18deg);
}

.search-box input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
}

.filters select {
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--card);
  padding: 0 42px 0 14px;
  color: var(--ink);
  font-size: 13px;
}

.catalog-meta {
  display: flex;
  justify-content: space-between;
  margin: 18px 0;
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.legend {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.dot {
  width: 7px;
  height: 7px;
  margin-left: 8px;
  border-radius: 50%;
}

.dot.high {
  background: var(--green);
}

.dot.medium {
  background: var(--amber);
}

.dot.verify {
  background: var(--red);
}

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

.car-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  border: 1px solid var(--line);
  background: var(--card);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.car-card:hover {
  box-shadow: 0 22px 45px rgba(52, 42, 25, 0.11);
  transform: translateY(-3px);
}

.image-button {
  position: relative;
  display: block;
  width: 100%;
  height: 300px;
  overflow: hidden;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: #ebe7dd;
}

.image-button img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 280ms ease;
}

.image-button:hover img {
  transform: scale(1.025);
}

.image-button span {
  position: absolute;
  right: 12px;
  bottom: 12px;
  padding: 7px 9px;
  background: rgba(23, 23, 19, 0.86);
  color: white;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 22px;
}

.card-kicker,
.name-row,
.price-row,
.card-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.card-kicker {
  color: var(--muted);
  font-family: "Courier New", monospace;
  font-size: 10px;
}

.confidence {
  padding: 5px 7px;
  color: white;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.confidence.high {
  background: var(--green);
}

.confidence.medium {
  background: var(--amber);
}

.confidence.needs-verification {
  background: var(--red);
}

.name-row {
  align-items: flex-start;
  margin-top: 15px;
}

.name-row h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 29px;
  font-weight: 500;
  letter-spacing: -0.04em;
}

.name-row p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 11px;
}

.qty {
  display: grid;
  min-width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--red);
  font-size: 13px;
}

.price-row {
  align-items: flex-end;
  margin-top: 24px;
  padding: 17px 0 14px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.price-row span {
  color: var(--muted);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.price-row strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  font-weight: 500;
}

.group-value {
  margin: 8px 0 0;
  color: var(--red);
  font-size: 11px;
  font-weight: 800;
  text-align: right;
}

.card-body dl {
  margin: 18px 0 0;
}

.card-body dl > div {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid #e8e1d3;
}

.card-body dt {
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.card-body dd {
  margin: 0;
  font-size: 12px;
  line-height: 1.45;
}

.car-note {
  margin: 18px 0 0;
  color: #4d493f;
  font-size: 12px;
  line-height: 1.6;
}

.card-body details {
  margin: 14px 0 0;
  padding: 10px 0;
  border-top: 1px dashed var(--line);
}

.card-body summary {
  color: var(--red);
  font-size: 11px;
  font-weight: 800;
}

.card-body details p {
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.55;
}

.card-actions {
  align-items: stretch;
  margin-top: auto;
  padding-top: 18px;
}

.card-actions a {
  display: flex;
  flex: 1;
  justify-content: space-between;
  gap: 8px;
  padding: 10px;
  border: 1px solid var(--line);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.card-actions a:first-child {
  border-color: var(--red);
  background: var(--red);
  color: white;
}

.method {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px 90px;
  padding: 100px clamp(20px, 6vw, 88px);
  background: var(--ink);
  color: white;
}

.method .eyebrow {
  color: var(--orange);
}

.method ol {
  margin: 0;
  padding: 0;
  counter-reset: checks;
  list-style: none;
}

.method li {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 20px;
  padding: 18px 0 18px 48px;
  border-top: 1px solid #47463f;
  counter-increment: checks;
}

.method li::before {
  position: absolute;
  top: 17px;
  left: 0;
  color: var(--orange);
  content: "0" counter(checks);
  font-family: "Courier New", monospace;
  font-size: 12px;
}

.method li b {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  font-weight: 500;
}

.method li span {
  color: #bdb9ae;
  font-size: 12px;
  line-height: 1.55;
}

.method aside {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 0.5fr 1.5fr;
  gap: 30px;
  padding: 24px;
  border-left: 5px solid var(--orange);
  background: #292923;
}

.method aside b {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.method aside p {
  margin: 0;
  color: #d1cdc3;
  font-size: 13px;
  line-height: 1.65;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 24px clamp(20px, 6vw, 88px);
  background: #0f0f0d;
  color: #8f8c83;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.pricing-page {
  overflow: hidden;
}

.sales-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(380px, 0.98fr);
  gap: clamp(40px, 7vw, 104px);
  align-items: center;
  min-height: 700px;
  padding: 78px clamp(20px, 6vw, 88px);
}

.sales-hero h1 {
  max-width: 780px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(50px, 6.5vw, 94px);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.93;
}

.sales-lede {
  max-width: 640px;
  margin: 28px 0 0;
  color: #4f4b42;
  font-size: 18px;
  line-height: 1.65;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-top: 28px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.trust-row span::before {
  margin-right: 7px;
  color: var(--green);
  content: "✓";
}

.sample-promo {
  display: block;
  border: 1px solid var(--ink);
  background: var(--card);
  box-shadow: 20px 24px 0 rgba(242, 138, 27, 0.18);
  transform: rotate(1deg);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.sample-promo:hover {
  box-shadow: 12px 14px 0 rgba(242, 138, 27, 0.3);
  transform: rotate(0deg) translateY(-4px);
}

.sample-promo figure {
  margin: 0;
  border-bottom: 1px solid var(--line);
}

.sample-promo img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.sample-promo-copy {
  padding: 24px 26px 28px;
}

.sample-promo-copy p {
  margin: 0 0 8px;
  color: var(--red);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.sample-promo-copy strong,
.sample-promo-copy span,
.sample-promo-copy b {
  display: block;
}

.sample-promo-copy strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 27px;
  font-weight: 500;
}

.sample-promo-copy span {
  margin-top: 10px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.sample-promo-copy b {
  margin-top: 18px;
  color: var(--red);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0 clamp(20px, 6vw, 88px);
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.proof-strip article {
  min-height: 120px;
  padding: 24px;
  border-right: 1px solid var(--line);
}

.proof-strip article:last-child {
  border-right: 0;
}

.proof-strip b,
.proof-strip span {
  display: block;
}

.proof-strip b {
  margin-bottom: 12px;
  color: var(--red);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  font-weight: 500;
}

.proof-strip span {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.5;
}

.package-section {
  padding: 110px clamp(20px, 6vw, 88px);
}

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

.package-card {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 28px 24px 24px;
  border: 1px solid var(--line);
  background: var(--card);
}

.package-card.featured {
  border: 2px solid var(--red);
  box-shadow: 0 20px 50px rgba(56, 41, 20, 0.12);
  transform: translateY(-10px);
}

.popular {
  position: absolute;
  top: 0;
  right: 0;
  padding: 7px 10px;
  background: var(--red);
  color: white;
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.package-limit {
  margin: 0;
  color: var(--red);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.package-card h3 {
  margin: 14px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.035em;
}

.package-description {
  min-height: 64px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.package-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: 20px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.package-price del {
  color: var(--muted);
  font-size: 12px;
}

.package-price strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 42px;
  font-weight: 500;
  letter-spacing: -0.04em;
}

.package-price span {
  color: var(--muted);
  font-size: 10px;
}

.package-card ul {
  margin: 20px 0;
  padding: 0;
  list-style: none;
}

.package-card li {
  position: relative;
  padding: 7px 0 7px 19px;
  color: #4d493f;
  font-size: 11px;
  line-height: 1.4;
}

.package-card li::before {
  position: absolute;
  left: 0;
  color: var(--green);
  content: "✓";
  font-weight: 900;
}

.package-card button {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-top: auto;
  padding: 13px 14px;
  border: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.package-card.featured button {
  border-color: var(--red);
  background: var(--red);
  color: white;
}

.add-ons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 40px;
  margin-top: 34px;
  padding: 20px;
  border: 1px dashed var(--line);
  color: var(--muted);
  font-size: 12px;
}

.add-ons b {
  color: var(--ink);
}

.process-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 80px;
  padding: 100px clamp(20px, 6vw, 88px);
  background: var(--ink);
  color: white;
}

.process-section h2,
.signup-copy h2,
.faq-section h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(40px, 4.5vw, 66px);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1;
}

.process-section > div > p:last-child {
  color: #bdb9ae;
  font-size: 13px;
  line-height: 1.7;
}

.process-section .eyebrow {
  color: var(--orange);
}

.process-section ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-section li {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
  padding: 19px 0;
  border-top: 1px solid #46463f;
}

.process-section li > span {
  color: var(--orange);
  font-family: "Courier New", monospace;
  font-size: 12px;
}

.process-section li b {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 19px;
  font-weight: 500;
}

.process-section li p {
  margin: 6px 0 0;
  color: #bdb9ae;
  font-size: 12px;
  line-height: 1.5;
}

.signup-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(44px, 8vw, 120px);
  padding: 110px clamp(20px, 8vw, 120px);
}

.signup-copy > p:not(.eyebrow) {
  max-width: 470px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.selected-order {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 6px 20px;
  margin-top: 30px;
  padding: 22px;
  border-left: 5px solid var(--red);
  background: var(--card);
}

.selected-order span,
.selected-order small {
  color: var(--muted);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.selected-order b {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  font-weight: 500;
}

.selected-order strong {
  grid-row: 1 / 3;
  grid-column: 2;
  align-self: center;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 40px;
  font-weight: 500;
}

.signup-form {
  display: grid;
  gap: 16px;
  padding: 32px;
  border: 1px solid var(--line);
  background: var(--card);
  box-shadow: 0 24px 60px rgba(45, 34, 17, 0.1);
}

.signup-form label {
  display: grid;
  gap: 7px;
  color: #403d35;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.signup-form label > span {
  color: var(--muted);
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
}

.signup-form input,
.signup-form select,
.signup-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0;
  outline: 0;
  background: #fff;
  padding: 13px 14px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
}

.signup-form input:focus,
.signup-form select:focus,
.signup-form textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 2px rgba(223, 45, 31, 0.12);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.signup-form .consent {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  padding: 12px 0;
}

.signup-form .consent input {
  width: 16px;
  height: 16px;
  margin: 1px 0 0;
}

.signup-form .consent span {
  color: var(--muted);
  font-size: 10px;
  line-height: 1.5;
}

.paypal-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 54px;
  border: 0;
  background: #ffc439;
  color: #153563;
  font-size: 12px;
  font-weight: 900;
}

.paypal-wordmark {
  color: #0070ba;
  font-size: 19px;
  font-style: italic;
  letter-spacing: -0.06em;
}

.form-note {
  color: var(--muted);
  font-size: 10px;
  line-height: 1.55;
  text-align: center;
}

.submitted-message {
  margin: 0;
  padding: 10px;
  background: rgba(37, 115, 90, 0.1);
  color: var(--green);
  font-size: 11px;
  font-weight: 800;
  text-align: center;
}

.faq-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 80px;
  padding: 100px clamp(20px, 6vw, 88px);
  border-top: 1px solid var(--line);
}

.faq-list details {
  padding: 20px 0;
  border-top: 1px solid var(--line);
}

.faq-list summary {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 19px;
}

.faq-list summary::after {
  color: var(--red);
  content: "+";
}

.faq-list details[open] summary::after {
  content: "–";
}

.faq-list p {
  max-width: 700px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
}

.lightbox {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 40px;
  background: rgba(13, 13, 11, 0.92);
}

.lightbox[hidden] {
  display: none;
}

.lightbox > button {
  position: absolute;
  top: 22px;
  right: 26px;
  width: 44px;
  height: 44px;
  border: 1px solid #777;
  border-radius: 50%;
  background: transparent;
  color: white;
  font-size: 28px;
}

.lightbox figure {
  max-width: min(900px, 92vw);
  max-height: 88vh;
  margin: 0;
  background: var(--card);
}

.lightbox img {
  display: block;
  max-width: 100%;
  max-height: 75vh;
  object-fit: contain;
}

.lightbox figcaption {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 15px 18px;
  color: var(--ink);
  font-size: 12px;
}

.lightbox figcaption span {
  color: var(--muted);
}

@media (max-width: 1050px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 56px;
  }

  .hero-image {
    max-width: 760px;
  }

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

  .sales-hero {
    grid-template-columns: 1fr;
  }

  .sample-promo {
    max-width: 760px;
  }

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

@media (max-width: 760px) {
  .topbar nav a {
    display: none;
  }

  .topbar nav button {
    padding: 9px 10px;
  }

  .hero {
    min-height: 0;
    padding-bottom: 42px;
  }

  .hero h1 {
    font-size: 50px;
  }

  .hero-image {
    padding: 10px 10px 48px;
  }

  .summary,
  .section-heading,
  .method,
  .process-section,
  .signup-section,
  .faq-section {
    grid-template-columns: 1fr;
  }

  .summary article {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .summary article:last-child {
    border-bottom: 0;
  }

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

  .filters select {
    width: 100%;
  }

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

  .catalog-meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .method li,
  .method aside {
    grid-template-columns: 1fr;
  }

  .method aside {
    grid-column: auto;
  }

  footer {
    flex-direction: column;
  }

  .sales-hero {
    min-height: 0;
    padding-top: 56px;
  }

  .sales-hero h1 {
    font-size: 50px;
  }

  .proof-strip,
  .package-grid {
    grid-template-columns: 1fr;
  }

  .proof-strip article {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .proof-strip article:last-child {
    border-bottom: 0;
  }

  .package-card.featured {
    transform: none;
  }

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

  .signup-form {
    padding: 22px 18px;
  }
}

@media print {
  .topbar,
  .hero-actions,
  .filters,
  .catalog-meta,
  .card-actions,
  .image-button span,
  .lightbox {
    display: none !important;
  }

  body {
    background: white;
  }

  .hero {
    min-height: 0;
    padding: 30px;
  }

  .summary,
  .catalog-section {
    margin: 0;
    padding: 30px;
  }

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

  .car-card {
    break-inside: avoid;
    box-shadow: none;
  }
}
