@font-face {
  font-family: "Onest";
  src: url("/techhelp-wave0-assets/fonts/onest-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Onest";
  src: url("/techhelp-wave0-assets/fonts/onest-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Onest";
  src: url("/techhelp-wave0-assets/fonts/onest-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #16213a;
  --ink-soft: #3b4963;
  --muted: #68738a;
  --line: #dce2eb;
  --paper: #ffffff;
  --canvas: #f3f6fa;
  --blue: #3569d4;
  --blue-dark: #244fae;
  --blue-soft: #eaf1ff;
  --orange: #f05a24;
  --orange-dark: #cc4313;
  --orange-soft: #fff0e9;
  --mint: #e8f6ef;
  --green: #14784a;
  --yellow: #fff4ca;
  --yellow-ink: #795700;
  --red-soft: #fff0ee;
  --red: #b7392c;
  --shadow: 0 18px 42px rgba(30, 48, 84, 0.1);
  --shadow-small: 0 8px 24px rgba(30, 48, 84, 0.08);
  --radius: 22px;
  --shell: min(1180px, calc(100% - 32px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--canvas);
  color: var(--ink);
  font-family: "Onest", "Segoe UI", sans-serif;
  line-height: 1.55;
}

body.menu-open {
  overflow: hidden;
}

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

.responsivePicture {
  display: block;
  width: 100%;
  height: 100%;
}

a {
  color: inherit;
}

button,
input,
select {
  font: inherit;
}

button,
select {
  cursor: pointer;
}

.boot {
  display: grid;
  min-height: 100vh;
  place-items: center;
  color: var(--muted);
}

.localBar {
  background: var(--ink);
  color: #fff;
  font-size: 12px;
}

.localBarInner {
  display: flex;
  width: var(--shell);
  min-height: 34px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 0 auto;
}

.localBar strong {
  color: #ffb596;
}

.localBar span:last-child {
  color: #bfc8d9;
}

.siteHeader {
  position: sticky;
  z-index: 20;
  top: 0;
  border-bottom: 1px solid rgba(220, 226, 235, 0.92);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(14px);
}

.headerInner {
  display: flex;
  width: var(--shell);
  min-height: 76px;
  align-items: center;
  gap: 30px;
  margin: 0 auto;
}

.brand {
  flex: 0 0 auto;
}

.brand img {
  width: 156px;
  height: auto;
}

.mainNav {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: auto;
}

.mainNav a {
  position: relative;
  padding: 27px 0 24px;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.mainNav a:hover,
.mainNav a.active {
  color: var(--blue-dark);
}

.mainNav a.active::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 3px;
  border-radius: 3px 3px 0 0;
  background: var(--orange);
  content: "";
}

.headerSearch {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 0;
  border-radius: 13px;
  background: var(--blue-soft);
  color: var(--blue-dark);
  text-decoration: none;
}

.headerSearch svg,
.menuButton svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 2;
}

.menuButton {
  display: none;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 0;
  border-radius: 13px;
  background: var(--ink);
  color: #fff;
}

.page {
  min-height: calc(100vh - 110px);
}

.shell {
  width: var(--shell);
  margin: 0 auto;
}

.hero {
  padding: 54px 0 38px;
  background: var(--paper);
}

.heroGrid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(310px, 0.75fr);
  gap: 44px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 13px;
  color: var(--orange-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 24px;
  height: 3px;
  border-radius: 3px;
  background: var(--orange);
  content: "";
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(38px, 5.2vw, 67px);
  letter-spacing: -0.055em;
  line-height: 1.02;
}

h1 span {
  color: var(--blue);
}

.heroLead {
  max-width: 690px;
  margin: 20px 0 0;
  color: var(--ink-soft);
  font-size: 18px;
}

.searchBox {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  max-width: 760px;
  min-height: 62px;
  margin-top: 28px;
  border: 1px solid #cfd8e8;
  border-radius: 17px;
  background: #fff;
  padding: 7px 8px 7px 18px;
  box-shadow: var(--shadow-small);
}

.searchBox:focus-within {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(53, 105, 212, 0.12);
}

.searchBox svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: var(--blue-dark);
  stroke-width: 2;
}

.searchBox input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  color: var(--ink);
  font-size: 15px;
}

.searchBox button,
.primaryButton {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 12px;
  background: var(--orange);
  padding: 0 19px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.searchBox button:hover,
.primaryButton:hover {
  background: var(--orange-dark);
}

.quickLinks {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.quickLinks a {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--canvas);
  padding: 7px 11px;
  color: var(--ink-soft);
  font-size: 12px;
  text-decoration: none;
}

.quickLinks a:hover {
  border-color: var(--blue);
  color: var(--blue-dark);
}

.heroBoard {
  overflow: hidden;
  border-radius: 26px;
  background: var(--blue);
  color: #fff;
  box-shadow: var(--shadow);
}

.heroBoardTop {
  padding: 24px 26px 18px;
}

.heroBoardTop small {
  color: #cbdcff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.heroBoardTop strong {
  display: block;
  margin-top: 8px;
  font-size: 22px;
  line-height: 1.2;
}

.heroBoardTop p {
  margin: 9px 0 0;
  color: #e4ecff;
  font-size: 13px;
}

.heroMetrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  background: #2b5dc2;
}

.heroMetrics div {
  padding: 18px 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.heroMetrics div:nth-child(2n) {
  border-right: 0;
}

.heroMetrics strong {
  display: block;
  font-size: 27px;
  line-height: 1;
}

.heroMetrics span {
  display: block;
  margin-top: 6px;
  color: #d8e4ff;
  font-size: 11px;
}

.trustStrip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.trustInner {
  display: grid;
  width: var(--shell);
  grid-template-columns: repeat(3, 1fr);
  margin: 0 auto;
}

.trustItem {
  display: flex;
  min-height: 76px;
  align-items: center;
  gap: 12px;
  border-right: 1px solid var(--line);
  padding: 15px 24px;
}

.trustItem:last-child {
  border-right: 0;
}

.trustIcon {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--mint);
  color: var(--green);
  font-weight: 700;
}

.trustItem strong {
  display: block;
  font-size: 13px;
}

.trustItem span:last-child {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 11px;
}

.section {
  padding: 58px 0;
}

.section.white {
  background: var(--paper);
}

.section.dark {
  background: var(--ink);
  color: #fff;
}

.sectionHead {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 25px;
}

.sectionHead h2 {
  margin: 3px 0 0;
  font-size: clamp(29px, 4vw, 43px);
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.sectionHead > p {
  max-width: 430px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.section.dark .sectionHead > p {
  color: #b9c3d4;
}

.statusLegend {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.chip,
.statusChip {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  border-radius: 999px;
  padding: 5px 9px;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.2;
}

.chip {
  background: var(--blue-soft);
  color: var(--blue-dark);
}

.statusChip.ready {
  background: var(--mint);
  color: var(--green);
}

.statusChip.review {
  background: var(--yellow);
  color: var(--yellow-ink);
}

.statusChip.draft {
  background: var(--blue-soft);
  color: var(--blue-dark);
}

.statusChip.blocked {
  background: var(--red-soft);
  color: var(--red);
}

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

.storyCard {
  display: flex;
  min-width: 0;
  overflow: hidden;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  box-shadow: var(--shadow-small);
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.storyCard:hover {
  transform: translateY(-3px);
  border-color: #b7c8eb;
  box-shadow: var(--shadow);
}

.cardVisual {
  position: relative;
  display: grid;
  min-height: 188px;
  overflow: hidden;
  place-items: center;
  background: #eef2f7;
}

.cardVisual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cardVisual.diagram img {
  object-fit: contain;
  padding: 18px;
}

.visualFallback {
  display: grid;
  width: 100%;
  height: 100%;
  min-height: 188px;
  place-items: center;
  background: var(--blue);
  color: #fff;
}

.visualFallback strong {
  font-size: 56px;
  letter-spacing: -0.06em;
}

.visualFallback.orange {
  background: var(--orange);
}

.cardWave {
  position: absolute;
  top: 12px;
  left: 12px;
  border-radius: 999px;
  background: rgba(17, 30, 57, 0.86);
  padding: 6px 9px;
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.cardBody {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 19px 19px 18px;
}

.cardMeta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: var(--muted);
  font-size: 10px;
}

.cardBody h3 {
  margin: 13px 0 0;
  font-size: 20px;
  letter-spacing: -0.025em;
  line-height: 1.25;
}

.cardBody p {
  margin: 10px 0 0;
  color: var(--ink-soft);
  font-size: 13px;
}

.cardAction {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 17px;
  color: var(--blue-dark);
  font-size: 12px;
  font-weight: 700;
}

.cardAction b {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  background: var(--blue-soft);
  font-size: 16px;
}

.workflowGrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border-radius: var(--radius);
  background: #35425c;
}

.workflowGrid article {
  min-height: 210px;
  background: var(--ink);
  padding: 23px;
}

.workflowGrid span {
  color: #ff9d76;
  font-size: 11px;
  font-weight: 700;
}

.workflowGrid strong {
  display: block;
  margin-top: 35px;
  font-size: 19px;
}

.workflowGrid p {
  margin: 8px 0 0;
  color: #b8c2d2;
  font-size: 12px;
}

.workflowButton {
  margin-top: 24px;
}

.planSummary {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 44px;
}

.planSummary article {
  min-height: 132px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  padding: 20px;
}

.planSummary strong {
  display: block;
  color: var(--blue-dark);
  font-size: 38px;
  letter-spacing: -0.05em;
}

.planSummary span {
  display: block;
  max-width: 180px;
  margin-top: 8px;
  color: var(--muted);
  font-size: 12px;
}

.planHead {
  margin-top: 0;
}

.queueBoard {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
}

.queueRow {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr) 150px;
  gap: 18px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  padding: 16px 18px;
}

.queueRow:last-child {
  border-bottom: 0;
}

.queuePriority small,
.queueRow > div > small {
  color: var(--muted);
  font-size: 9px;
}

.queuePriority strong {
  display: block;
  margin-top: 2px;
  color: var(--blue-dark);
  font-size: 20px;
}

.queueCluster {
  color: var(--orange-dark);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.queueRow h3 {
  margin: 4px 0 2px;
  font-size: 15px;
  letter-spacing: -0.015em;
}

.queueStatus {
  justify-self: end;
  border-radius: 999px;
  padding: 7px 10px;
  font-size: 10px;
  font-weight: 700;
  white-space: nowrap;
}

.queueStatus.sources {
  background: var(--mint);
  color: var(--green);
}

.queueStatus.planned {
  background: var(--blue-soft);
  color: var(--blue-dark);
}

.pageHero {
  padding: 46px 0 34px;
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.pageHero h1 {
  max-width: 920px;
  font-size: clamp(36px, 5vw, 58px);
}

.pageHero p {
  max-width: 760px;
  margin: 17px 0 0;
  color: var(--ink-soft);
  font-size: 16px;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 11px;
}

.breadcrumbs a {
  color: var(--blue-dark);
  text-decoration: none;
}

.catalogTools {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(2, minmax(150px, 0.45fr));
  gap: 10px;
  margin-bottom: 22px;
}

.field {
  display: grid;
  gap: 6px;
}

.field span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.field input,
.field select {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  padding: 0 13px;
  color: var(--ink);
  outline: 0;
}

.field input:focus,
.field select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(53, 105, 212, 0.11);
}

.resultCount {
  margin: 0 0 15px;
  color: var(--muted);
  font-size: 12px;
}

.emptyState {
  border: 1px dashed #aebbd0;
  border-radius: 18px;
  background: #fff;
  padding: 34px;
  text-align: center;
}

.emptyState strong {
  display: block;
  font-size: 20px;
}

.emptyState p {
  margin: 7px 0 0;
  color: var(--muted);
}

.vehicleCard {
  display: flex;
  min-height: 320px;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  box-shadow: var(--shadow-small);
  text-decoration: none;
}

.vehicleCard:hover {
  border-color: #b7c8eb;
  box-shadow: var(--shadow);
}

.vehicleVisual {
  position: relative;
  min-height: 150px;
  overflow: hidden;
  background: var(--blue);
  padding: 19px;
  color: #fff;
}

.vehicleVisual::after {
  position: absolute;
  right: -34px;
  bottom: -65px;
  width: 190px;
  height: 190px;
  border: 30px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
  content: "";
}

.vehicleVisual.orange {
  background: var(--orange);
}

.vehicleVisual.navy {
  background: var(--ink);
}

.vehicleVisual small {
  display: block;
  color: rgba(255, 255, 255, 0.8);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.vehicleVisual strong {
  position: relative;
  z-index: 1;
  display: block;
  max-width: 80%;
  margin-top: 29px;
  font-size: 27px;
  letter-spacing: -0.04em;
  line-height: 1;
}

.vehicleBody {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 18px;
}

.vehicleBody h3 {
  margin: 0;
  font-size: 19px;
}

.vehicleBody > p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 11px;
}

.specRow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
  margin-top: 16px;
}

.specRow div {
  border-radius: 10px;
  background: var(--canvas);
  padding: 9px;
}

.specRow span {
  display: block;
  color: var(--muted);
  font-size: 8px;
  text-transform: uppercase;
}

.specRow strong {
  display: block;
  margin-top: 3px;
  font-size: 11px;
}

.articleHero {
  padding: 34px 0 0;
  background: #fff;
}

.articleHeroGrid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.96fr);
  gap: 38px;
  align-items: center;
}

.articleHero h1 {
  font-size: clamp(36px, 5vw, 60px);
}

.articleDeck {
  margin: 17px 0 0;
  color: var(--ink-soft);
  font-size: 16px;
}

.articleMeta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  align-items: center;
  margin-top: 20px;
  color: var(--muted);
  font-size: 11px;
}

.articleCover {
  min-height: 360px;
  overflow: hidden;
  border-radius: 24px 24px 0 0;
  background: var(--blue);
}

.articleCover img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.articleCover.diagram img {
  background: #eff3f8;
  object-fit: contain;
  padding: 25px;
}

.articleCover .visualFallback {
  min-height: 360px;
}

.articleMain {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 290px;
  gap: 34px;
  align-items: start;
  padding-top: 38px;
  padding-bottom: 68px;
}

.answerBox {
  border-left: 5px solid var(--orange);
  border-radius: 0 18px 18px 0;
  background: var(--orange-soft);
  padding: 23px 25px;
}

.answerBox span {
  color: var(--orange-dark);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.answerBox p {
  margin: 9px 0 0;
  font-size: 19px;
  line-height: 1.5;
}

.articleSection {
  margin-top: 34px;
}

.articleSection h2 {
  margin: 0;
  font-size: 29px;
  letter-spacing: -0.035em;
}

.articleSection > p {
  margin: 11px 0 0;
  color: var(--ink-soft);
}

.reasonList {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.reasonList article {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  gap: 13px;
  align-items: start;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  padding: 14px;
}

.reasonList b {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 11px;
  background: var(--blue-soft);
  color: var(--blue-dark);
}

.reasonList p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 13px;
}

.inlineFigure {
  margin: 30px 0 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
}

.inlineFigure img {
  width: 100%;
}

.inlineFigure figcaption {
  padding: 10px 14px;
  color: var(--muted);
  font-size: 10px;
}

.partnerBox {
  margin-top: 34px;
  overflow: hidden;
  border: 1px solid #b9c9e7;
  border-radius: 18px;
  background: #fff;
}

.partnerBox header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  background: var(--blue-soft);
  padding: 13px 17px;
}

.partnerBox header strong {
  color: var(--blue-dark);
  font-size: 13px;
}

.partnerBox header span {
  border-radius: 999px;
  background: #fff;
  padding: 5px 8px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
}

.partnerBox > div {
  padding: 18px;
}

.partnerBox h3 {
  margin: 0;
  font-size: 19px;
}

.partnerBox p {
  margin: 8px 0 0;
  color: var(--ink-soft);
  font-size: 12px;
}

.sideStack {
  display: grid;
  gap: 13px;
  position: sticky;
  top: 104px;
}

.sideBox {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  padding: 16px;
}

.sideBox h3 {
  margin: 0;
  font-size: 14px;
}

.sideBox p,
.sideBox li {
  color: var(--muted);
  font-size: 11px;
}

.sideBox p {
  margin: 8px 0 0;
}

.sideBox ul {
  display: grid;
  gap: 7px;
  margin: 10px 0 0;
  padding-left: 18px;
}

.reviewNotice {
  border-color: #eedb9a;
  background: #fff9e4;
}

.vehicleHero {
  padding: 44px 0 36px;
  background: var(--ink);
  color: #fff;
}

.vehicleHero .breadcrumbs,
.vehicleHero .breadcrumbs a {
  color: #b8c3d6;
}

.vehicleHeroGrid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
  gap: 34px;
  align-items: end;
}

.vehicleHero h1 {
  font-size: clamp(39px, 6vw, 70px);
}

.vehicleHero p {
  max-width: 670px;
  margin: 15px 0 0;
  color: #c5cedd;
}

.vehicleBadge {
  display: inline-flex;
  margin-bottom: 12px;
  border-radius: 999px;
  background: var(--orange);
  padding: 6px 10px;
  font-size: 10px;
  font-weight: 700;
}

.vehicleHeroPanel {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  overflow: hidden;
  border-radius: 18px;
  background: #4c5870;
}

.vehicleHeroPanel div {
  min-height: 98px;
  background: #202e4a;
  padding: 16px;
}

.vehicleHeroPanel span {
  display: block;
  color: #aeb9cb;
  font-size: 9px;
  text-transform: uppercase;
}

.vehicleHeroPanel strong {
  display: block;
  margin-top: 8px;
  font-size: 18px;
}

.specTable {
  overflow: hidden;
  margin-top: 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
}

.specTable div {
  display: grid;
  grid-template-columns: minmax(160px, 0.7fr) minmax(0, 1.3fr);
  gap: 18px;
  border-bottom: 1px solid var(--line);
  padding: 13px 16px;
}

.specTable div:last-child {
  border-bottom: 0;
}

.specTable span {
  color: var(--muted);
  font-size: 11px;
}

.specTable strong {
  font-size: 12px;
}

.accuracyBox {
  margin-top: 24px;
  border-left: 5px solid var(--blue);
  border-radius: 0 15px 15px 0;
  background: var(--blue-soft);
  padding: 17px 19px;
}

.accuracyBox strong {
  display: block;
  color: var(--blue-dark);
}

.accuracyBox p {
  margin: 7px 0 0;
  color: var(--ink-soft);
  font-size: 12px;
}

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

.aboutGrid article {
  min-height: 210px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  padding: 21px;
}

.aboutGrid span {
  color: var(--orange);
  font-size: 11px;
  font-weight: 700;
}

.aboutGrid h2 {
  margin: 31px 0 0;
  font-size: 21px;
}

.aboutGrid p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.footer {
  background: #0f1a31;
  color: #fff;
}

.footerInner {
  display: grid;
  width: var(--shell);
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: center;
  min-height: 150px;
  margin: 0 auto;
}

.footer strong {
  font-size: 20px;
}

.footer p {
  max-width: 580px;
  margin: 6px 0 0;
  color: #aeb9cb;
  font-size: 11px;
}

.footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer a {
  color: #dbe4f5;
  font-size: 11px;
  text-decoration: none;
}

@media (max-width: 980px) {
  .heroGrid,
  .articleHeroGrid,
  .vehicleHeroGrid {
    grid-template-columns: 1fr;
  }

  .heroBoard {
    max-width: 660px;
  }

  .articleCover {
    border-radius: 22px 22px 0 0;
  }

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

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

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

  .articleMain {
    grid-template-columns: minmax(0, 1fr) 240px;
  }

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

@media (max-width: 760px) {
  :root {
    --shell: min(100% - 24px, 660px);
  }

  .localBarInner {
    min-height: 40px;
    align-items: flex-start;
    flex-direction: column;
    gap: 1px;
    justify-content: center;
    padding: 5px 0;
  }

  .headerInner {
    min-height: 66px;
    gap: 10px;
  }

  .brand img {
    width: 135px;
  }

  .mainNav {
    position: fixed;
    inset: 106px 0 0;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    background: #fff;
    padding: 18px 20px;
  }

  body.menu-open .mainNav {
    display: flex;
  }

  .mainNav a {
    border-bottom: 1px solid var(--line);
    padding: 16px 4px;
    font-size: 17px;
  }

  .mainNav a.active::after {
    display: none;
  }

  .headerSearch {
    margin-left: auto;
  }

  .menuButton {
    display: grid;
  }

  .hero {
    padding: 38px 0 30px;
  }

  h1 {
    font-size: clamp(36px, 11vw, 52px);
  }

  .heroLead {
    font-size: 16px;
  }

  .searchBox {
    grid-template-columns: 20px minmax(0, 1fr);
    padding: 10px 14px;
  }

  .searchBox button {
    grid-column: 1 / -1;
  }

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

  .trustItem {
    min-height: 67px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 12px 2px;
  }

  .trustItem:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 42px 0;
  }

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

  .cardGrid,
  .aboutGrid {
    grid-template-columns: 1fr;
  }

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

  .queueRow {
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 12px;
  }

  .queueStatus {
    grid-column: 2;
    justify-self: start;
  }

  .workflowGrid article {
    min-height: 165px;
  }

  .workflowGrid strong {
    margin-top: 25px;
  }

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

  .articleHero {
    padding-top: 26px;
  }

  .articleHero h1,
  .pageHero h1 {
    font-size: clamp(34px, 10vw, 49px);
  }

  .articleCover,
  .articleCover img,
  .articleCover .visualFallback {
    min-height: 245px;
  }

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

  .sideStack {
    position: static;
  }

  .answerBox p {
    font-size: 16px;
  }

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

  .specTable div {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .footerInner {
    grid-template-columns: 1fr;
    padding: 34px 0;
  }
}

@media (max-width: 430px) {
  .heroMetrics,
  .vehicleHeroPanel,
  .specRow,
  .planSummary {
    grid-template-columns: 1fr;
  }

  .heroMetrics div,
  .heroMetrics div:nth-child(2n) {
    border-right: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
