:root {
  --hdt-black: #111111;
  --hdt-true-black: #050505;
  --hdt-charcoal: #2b2b2b;
  --hdt-red: #d71920;
  --hdt-red-dark: #a90008;
  --hdt-white: #ffffff;
  --hdt-gray-50: #f7f7f7;
  --hdt-gray-100: #f1f1f1;
  --hdt-gray-200: #dedede;
  --hdt-gray-300: #c9c9c9;
  --hdt-gray-500: #6b6b6b;
  --hdt-gray-700: #3b3b3b;
  --hdt-shadow: 0 18px 45px rgba(0,0,0,.12);
  --hdt-shadow-soft: 0 8px 24px rgba(0,0,0,.08);
  --hdt-radius: 14px;
  --hdt-radius-lg: 22px;
  --hdt-container: 1380px;
  --font-body: Inter, system-ui, -apple-system, Segoe UI, sans-serif;
  --font-display: 'Roboto Condensed', Impact, 'Arial Black', sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--hdt-black);
  background: var(--hdt-white);
  line-height: 1.45;
  text-rendering: optimizeLegibility;
}
img, svg { max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
a:hover { color: var(--hdt-red); }
button, input, select, textarea { font: inherit; }
.screen-reader-text, .skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link:focus {
  clip: auto;
  width: auto;
  height: auto;
  margin: 0;
  padding: 12px 16px;
  background: var(--hdt-red);
  color: #fff;
  z-index: 9999;
}
.container {
  width: min(calc(100% - 48px), var(--hdt-container));
  margin-inline: auto;
}
.site-main { overflow: hidden; }

h1, h2, h3, h4 {
  margin: 0;
  font-family: var(--font-display);
  line-height: .96;
  letter-spacing: -.02em;
  text-transform: uppercase;
}
h1 { font-size: clamp(3rem, 5.3vw, 6.2rem); }
h2 { font-size: clamp(2.1rem, 3vw, 4rem); }
h3 { font-size: clamp(1.1rem, 1.3vw, 1.55rem); }
p { margin: 0; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--hdt-red);
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .12em;
}
.eyebrow::before {
  content: "";
  width: 24px;
  height: 3px;
  background: var(--hdt-red);
  display: block;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 5px;
  font-weight: 900;
  font-size: .84rem;
  letter-spacing: .02em;
  text-transform: uppercase;
  border: 2px solid transparent;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); box-shadow: var(--hdt-shadow-soft); }
.btn-primary { background: var(--hdt-red); color: #fff; border-color: var(--hdt-red); }
.btn-primary:hover { background: var(--hdt-red-dark); color: #fff; }
.btn-outline-light { color: #fff; border-color: rgba(255,255,255,.75); background: transparent; }
.btn-outline-light:hover { background: #fff; color: var(--hdt-black); }
.btn-dark { background: var(--hdt-black); color: #fff; border-color: var(--hdt-black); }
.btn-dark:hover { background: var(--hdt-red); color: #fff; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  box-shadow: 0 1px 0 rgba(0,0,0,.08);
}
.utility-bar {
  background: var(--hdt-true-black);
  color: #fff;
  font-size: .78rem;
  font-weight: 800;
}
.utility-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 32px;
  gap: 18px;
  overflow: hidden;
}
.utility-bar span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
}
.utility-bar svg { width: 16px; height: 16px; fill: var(--hdt-red); }
.utility-bar a { color: #fff; }
.main-header { background: #fff; }
.main-header__inner {
  display: grid;
  grid-template-columns: minmax(220px, 340px) minmax(0, 1fr) auto;
  align-items: center;
  min-height: 120px;
  gap: 28px;
}
.site-logo { display: inline-flex; align-items: center; }
.site-logo img { height: 108px; width: auto; display: block; }
.custom-logo-link img { max-height: 76px; width: auto; }
.primary-nav ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 1.7vw, 34px);
  list-style: none;
  padding: 0;
  margin: 0;
}
.primary-nav a {
  font-size: .86rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .02em;
}
.primary-nav a::after {
  content: "";
  display: block;
  width: 0;
  height: 3px;
  margin-top: 6px;
  background: var(--hdt-red);
  transition: width .2s ease;
}
.primary-nav a:hover::after { width: 100%; }
.header-actions { display: flex; align-items: center; gap: 14px; }
.header-search {
  display: flex;
  align-items: center;
  width: min(310px, 22vw);
  height: 48px;
  border: 1px solid var(--hdt-gray-200);
  border-radius: 9px;
  background: #fff;
  overflow: hidden;
}
.header-search input {
  width: 100%;
  border: 0;
  outline: 0;
  padding: 0 14px;
  font-size: .88rem;
}
.header-search button {
  width: 48px;
  height: 48px;
  border: 0;
  background: #fff;
  cursor: pointer;
}
.header-search svg, .header-icon svg { width: 22px; height: 22px; fill: currentColor; }
.header-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  color: var(--hdt-black);
}
.header-icon:hover { background: var(--hdt-gray-100); }
.header-cart span {
  position: absolute;
  top: 2px;
  right: 1px;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: var(--hdt-red);
  color: #fff;
  font-size: .68rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
}
.nav-toggle { display: none; }

.hero-section {
  position: relative;
  min-height: 610px;
  background: #090909;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.94) 0%, rgba(0,0,0,.78) 28%, rgba(0,0,0,.18) 55%, rgba(0,0,0,0) 75%),
    url('../images/hero-tools.webp') right center / cover no-repeat,
    #060606;
  z-index: -2;
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(90deg, transparent, #000 30%, #000 85%, transparent);
  opacity: .28;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(460px, 1fr);
  gap: 40px;
  min-height: 610px;
  align-items: center;
  padding: 58px 0 95px;
}
.hero-copy { max-width: 760px; }
.hero-copy h1 { margin-top: 16px; max-width: 820px; }
.hero-copy h1::first-line { color: #fff; }
.hero-copy h1 strong, .hero-copy em { color: var(--hdt-red); font-style: normal; }
.hero-copy p:not(.eyebrow) {
  max-width: 640px;
  margin-top: 20px;
  color: rgba(255,255,255,.88);
  font-size: clamp(1.04rem, 1.2vw, 1.25rem);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 32px; }
.hero-brands {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-top: 48px;
}
.hero-brands span {
  color: rgba(255,255,255,.75);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.15rem;
  letter-spacing: .02em;
}
.hero-visual {
  position: relative;
  min-height: 420px;
}
.hero-visual--photo { display: flex; align-items: center; justify-content: center; }
.hero-visual--photo img { width: 100%; height: auto; max-height: 520px; object-fit: contain; display: block; }
.hero-device--laptop {
  position: absolute;
  right: 8%;
  top: 18px;
  width: 470px;
  height: 285px;
  background: linear-gradient(135deg, #181818, #050505);
  border: 10px solid #303030;
  border-radius: 24px;
  box-shadow: 0 24px 90px rgba(0,0,0,.65);
  padding: 18px;
}
.device-screen {
  height: 100%;
  border-radius: 13px;
  background: #131a1f;
  border: 1px solid #34414d;
  padding: 24px;
  display: grid;
  gap: 12px;
  align-content: start;
}
.device-screen span {
  display: block;
  height: 22px;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--hdt-red), #333 45%, #111);
}
.device-screen span:nth-child(2) { width: 78%; opacity: .72; }
.device-screen span:nth-child(3) { width: 88%; opacity: .52; }
.device-screen span:nth-child(4) { width: 68%; opacity: .45; }
.device-screen strong { margin-top: 20px; font-size: 1.4rem; }
.device-screen small { color: #aeb7bd; }
.hero-device--scanner {
  position: absolute;
  right: 0;
  bottom: 78px;
  width: 140px;
  height: 235px;
  background: linear-gradient(135deg, #262626, #050505);
  border: 5px solid var(--hdt-red);
  border-radius: 28px;
  box-shadow: 0 24px 60px rgba(0,0,0,.7);
  padding: 22px;
}
.scanner-screen {
  height: 78px;
  border-radius: 12px;
  background: #dfe7ea;
  color: var(--hdt-black);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
}
.hero-case {
  position: absolute;
  right: 12%;
  bottom: 30px;
  width: 310px;
  height: 145px;
  border-radius: 18px;
  border: 2px solid #383838;
  background: linear-gradient(135deg, #1d1d1d, #060606);
  display: grid;
  place-items: center;
  text-align: center;
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 900;
  color: #fff;
  box-shadow: var(--hdt-shadow);
}
.hero-case::first-letter { color: var(--hdt-red); }
.hero-case span {
  display: block;
  font-family: var(--font-body);
  font-size: .74rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.78);
}
.connector-row {
  position: absolute;
  left: 10%;
  bottom: 16px;
  display: flex;
  gap: 16px;
}
.connector-row i {
  display: block;
  width: 62px;
  height: 62px;
  border-radius: 999px;
  background: radial-gradient(circle at 50% 50%, #333 0 23%, #111 24% 54%, var(--hdt-red) 55% 60%, #050505 61%);
  border: 4px solid #222;
  box-shadow: 0 8px 22px rgba(0,0,0,.6);
}
.pulse-line {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 22px;
  height: 60px;
  background: linear-gradient(90deg, transparent 0 40%, var(--hdt-red) 40% 41%, transparent 41% 45%, var(--hdt-red) 45% 46%, transparent 46% 52%, var(--hdt-red) 52% 53%, transparent 53% 100%);
  opacity: .7;
}

.promo-band {
  position: relative;
  margin-top: -52px;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.25fr 1fr auto;
  align-items: center;
  gap: 30px;
  min-height: 105px;
  padding: 22px 36px 22px 36px;
  border-radius: 15px;
  background:
    linear-gradient(90deg, #080808 0%, #080808 32%, rgba(8,8,8,.86) 52%, rgba(8,8,8,.42) 72%, rgba(8,8,8,0) 92%),
    url('../images/cta-case.webp') right center / auto 130% no-repeat,
    linear-gradient(120deg, rgba(215,25,32,.2), transparent 25%, transparent 70%, rgba(215,25,32,.45)),
    radial-gradient(circle at 15% 0%, rgba(255,255,255,.2), transparent 30%),
    #080808;
  color: #fff;
  box-shadow: var(--hdt-shadow);
  overflow: hidden;
}
.promo-band > * { position: relative; z-index: 1; }
.promo-band__price { padding-right: clamp(60px, 12vw, 200px); }
.promo-band::before, .promo-band::after {
  content: "";
  position: absolute;
  width: 160px;
  height: 160px;
  border: 18px solid rgba(215,25,32,.26);
  transform: rotate(45deg);
}
.promo-band::before { left: -84px; top: -66px; }
.promo-band::after { right: -80px; bottom: -80px; }
.promo-band span, .promo-band small { color: rgba(255,255,255,.75); font-weight: 800; text-transform: uppercase; letter-spacing: .05em; }
.promo-band__main strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.2vw, 4.4rem);
  color: #fff;
  line-height: .9;
  text-transform: uppercase;
}
.promo-band__main strong::first-letter { color: var(--hdt-red); }
.promo-band__feature { border-left: 3px solid var(--hdt-red); padding-left: 28px; }
.promo-band__feature strong, .promo-band__price strong { display: block; font-size: 1.2rem; }
.promo-band__price strong { font-size: 2rem; color: #fff; }

.financing-card {
  display: grid;
  grid-template-columns: 210px 72px 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 134px;
  margin-top: 24px;
  padding: 18px 32px;
  border: 1px solid var(--hdt-gray-200);
  border-radius: var(--hdt-radius-lg);
  background: #fff;
  box-shadow: var(--hdt-shadow-soft);
}
.financing-card__image img { width: 210px; border-radius: 12px; display: block; }
.financing-card__icon {
  width: 64px;
  height: 64px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: var(--hdt-red);
  background: #fff5f5;
}
.financing-card__icon svg { width: 36px; height: 36px; fill: currentColor; }
.financing-card__copy h2 { font-family: var(--font-body); text-transform: none; font-size: clamp(1.45rem, 2vw, 2.25rem); line-height: 1.12; }
.financing-card__copy p { color: var(--hdt-gray-500); margin-top: 8px; }

.card-trio {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 34px;
}
.feature-image-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--hdt-gray-200);
  border-radius: var(--hdt-radius);
  background: #fff;
  box-shadow: var(--hdt-shadow-soft);
}
.feature-image-card img {
  display: block;
  width: 100%;
  height: 230px;
  object-fit: cover;
}
.round-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--hdt-red);
  color: #fff;
  border: 6px solid #fff;
  margin: -38px 0 0 28px;
  position: relative;
  z-index: 1;
}
.round-icon svg { width: 34px; height: 34px; fill: currentColor; }
.feature-image-card h3, .feature-image-card p, .feature-image-card a { margin-left: 28px; margin-right: 28px; }
.feature-image-card h3 { margin-top: 12px; font-family: var(--font-body); text-transform: none; line-height: 1.1; }
.feature-image-card p { margin-top: 10px; color: var(--hdt-gray-500); min-height: 72px; }
.feature-image-card a { display: inline-flex; margin-top: 14px; margin-bottom: 28px; color: var(--hdt-red); font-weight: 900; }

.proof-strip {
  margin-top: 42px;
  border-radius: var(--hdt-radius-lg);
  background: #060606;
  color: #fff;
  padding: 32px;
  display: grid;
  grid-template-columns: .65fr 1fr;
  gap: 32px;
  align-items: center;
}
.proof-strip h2 { font-size: clamp(1.8rem, 2.4vw, 3.4rem); }
.proof-strip p { color: rgba(255,255,255,.74); margin: 14px 0 24px; }
.proof-strip__cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.proof-strip__cards article {
  position: relative;
  aspect-ratio: 16/10;
  background-size: cover;
  background-position: center;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 0 !important;
}
.proof-strip__cards article::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.05) 0%, rgba(0,0,0,.15) 50%, rgba(0,0,0,.85) 100%);
}
.proof-strip__play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 46px; height: 46px;
  border-radius: 50%;
  background: rgba(255,255,255,.92);
  color: var(--hdt-black);
  display: grid; place-items: center;
  font-size: 16px;
  padding-left: 3px;
  box-shadow: 0 6px 18px rgba(0,0,0,.4);
}
.proof-strip__caption { position: relative; padding: 14px 16px; color: #fff; width: 100%; }
.proof-strip__cards strong, .proof-strip__cards span, .proof-strip__cards em { display: block; }
.proof-strip__cards span { color: rgba(255,255,255,.6); margin-top: 3px; }
.proof-strip__cards em { color: #ffcc44; font-style: normal; margin-top: 20px; }

.trust-badges {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  margin-top: 28px;
}
.trust-badges div {
  display: grid;
  grid-template-columns: 50px 1fr;
  align-items: center;
  column-gap: 14px;
  min-height: 92px;
  padding: 16px;
  border: 1px solid var(--hdt-gray-200);
  border-radius: 12px;
  background: #fff;
}
.trust-badges svg {
  grid-row: span 2;
  width: 44px;
  height: 44px;
  fill: var(--hdt-red);
}
.trust-badges strong { font-size: .95rem; }
.trust-badges span { color: var(--hdt-gray-500); font-size: .86rem; }

.split-feature {
  display: grid;
  grid-template-columns: .45fr 1fr;
  gap: 36px;
  align-items: center;
  margin-top: 54px;
}
.split-feature__copy h2 { margin-top: 14px; }
.split-feature__copy p:not(.eyebrow) { color: var(--hdt-gray-500); margin: 18px 0 24px; font-size: 1.06rem; }
.split-feature__image img {
  width: 100%;
  border-radius: var(--hdt-radius);
  box-shadow: var(--hdt-shadow-soft);
  max-height: 330px;
  object-fit: cover;
}
.capability-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  margin-top: 28px;
}
.capability-grid article {
  min-height: 140px;
  padding: 24px;
  border: 1px solid var(--hdt-gray-200);
  border-radius: var(--hdt-radius);
  background: #fff;
}
.capability-grid svg { width: 40px; height: 40px; fill: var(--hdt-black); }
.capability-grid h3 { font-family: var(--font-body); text-transform: none; font-size: 1.05rem; line-height: 1.15; margin-top: 14px; }
.capability-grid p { color: var(--hdt-gray-500); margin-top: 8px; font-size: .9rem; }

.about-band {
  position: relative;
  margin-top: 36px;
  display: grid;
  grid-template-columns: .72fr 1fr;
  min-height: 255px;
  border-radius: var(--hdt-radius-lg);
  overflow: hidden;
  background: var(--hdt-gray-100);
}
.about-band__copy {
  padding: 42px 48px;
  border-left: 6px solid var(--hdt-red);
}
.about-band__copy h2 { font-family: var(--font-body); text-transform: none; font-size: clamp(1.45rem, 2vw, 2.4rem); line-height: 1.12; }
.about-band__copy p { margin: 14px 0 22px; color: var(--hdt-gray-500); }
.about-band__visual {
  position: relative;
  overflow: hidden;
  background: var(--hdt-gray-100);
}
.about-band__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  clip-path: polygon(14% 0, 100% 0, 100% 100%, 0 100%);
}
.building-card {
  position: absolute;
  right: 130px;
  top: 52px;
  width: 250px;
  height: 120px;
  border-radius: 14px;
  background: #fff;
  color: var(--hdt-black);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 4rem;
  box-shadow: var(--hdt-shadow);
}
.building-card::first-letter { color: var(--hdt-red); }
.service-van {
  position: absolute;
  right: 34px;
  bottom: 34px;
  width: 340px;
  height: 76px;
  border-radius: 12px;
  background: #1d1d1d;
  border-left: 8px solid var(--hdt-red);
  color: #fff;
  display: flex;
  align-items: center;
  padding-left: 24px;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: var(--hdt-shadow);
}

.shop-grid-section, .product-sections, .why-grid-section, .brand-wall-section, .dealer-capabilities, .testimonials-section, .resources-section, .faq-service-grid {
  margin-top: 54px;
}
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 22px;
}
.section-head h2 { margin-top: 8px; }
.section-head a { color: var(--hdt-red); font-weight: 900; text-transform: uppercase; font-size: .86rem; }
.finder-layout {
  display: grid;
  grid-template-columns: .86fr 1.25fr;
  gap: 28px;
  align-items: stretch;
}
.mini-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.mini-feature-grid article {
  padding: 18px;
  border: 1px solid var(--hdt-gray-200);
  border-radius: 12px;
  background: #fff;
}
.mini-feature-grid svg { width: 32px; height: 32px; fill: var(--hdt-black); }
.mini-feature-grid h3 { font-family: var(--font-body); text-transform: none; font-size: .98rem; margin-top: 10px; line-height: 1.15; }
.mini-feature-grid p { color: var(--hdt-gray-500); font-size: .86rem; margin-top: 6px; }
.tool-finder {
  border-radius: var(--hdt-radius);
  background: linear-gradient(135deg, #070707, #1e1e1e);
  color: #fff;
  padding: 30px;
  display: grid;
  grid-template-columns: repeat(3, 1fr) auto;
  align-items: end;
  gap: 16px;
  min-height: 220px;
  overflow: hidden;
  position: relative;
}
.tool-finder::after {
  content: "";
  position: absolute;
  right: -60px;
  bottom: -110px;
  width: 400px;
  height: 240px;
  background: url('../images/truck-placeholder.svg') center/cover no-repeat;
  opacity: .22;
}
.tool-finder > * { position: relative; z-index: 1; }
.tool-finder div { grid-column: 1 / -1; }
.tool-finder h3 { font-size: 2rem; }
.tool-finder p { color: rgba(255,255,255,.72); margin-top: 8px; }
.tool-finder label { display: grid; gap: 7px; color: rgba(255,255,255,.85); font-weight: 800; font-size: .82rem; }
.tool-finder select {
  height: 46px;
  border: 0;
  border-radius: 6px;
  padding: 0 12px;
  color: var(--hdt-black);
}
.tool-finder small { grid-column: 1 / -1; color: rgba(255,255,255,.62); }
.category-tabs { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 26px; }
.category-tabs button {
  height: 34px;
  border-radius: 999px;
  border: 1px solid var(--hdt-gray-200);
  background: #fff;
  padding: 0 18px;
  font-size: .82rem;
  font-weight: 900;
  cursor: pointer;
}
.category-tabs .active { background: var(--hdt-red); border-color: var(--hdt-red); color: #fff; }
.category-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 16px;
}
.category-cards article {
  overflow: hidden;
  border: 1px solid var(--hdt-gray-200);
  border-radius: 12px;
  background: #fff;
  box-shadow: var(--hdt-shadow-soft);
}
.category-cards img { width: 100%; height: 145px; object-fit: cover; display: block; }
.category-cards strong { display: block; padding: 12px 16px; text-align: center; }

.category-tile-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.category-tile {
  min-height: 174px;
  padding: 20px;
  border: 1px solid var(--hdt-gray-200);
  border-radius: 12px;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.category-tile:hover { transform: translateY(-3px); box-shadow: var(--hdt-shadow-soft); border-color: var(--hdt-red); }
.category-tile svg { width: 48px; height: 48px; fill: var(--hdt-black); }
.category-tile strong { font-weight: 900; text-transform: uppercase; line-height: 1.1; }
.category-tile span { color: var(--hdt-red); font-weight: 900; font-size: .84rem; }
.product-head { margin-top: 42px; }
.product-carousel {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}
.product-card {
  border: 1px solid var(--hdt-gray-200);
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--hdt-shadow-soft);
  display: flex;
  flex-direction: column;
}
.product-card__image-wrap {
  display: block;
  background: var(--hdt-gray-100);
  min-height: 185px;
}
.product-card img { width: 100%; height: 185px; object-fit: cover; display: block; }
.product-card__content { padding: 18px; display: flex; flex-direction: column; flex: 1; }
.product-card h3 {
  font-family: var(--font-body);
  text-transform: none;
  font-size: 1rem;
  line-height: 1.14;
}
.product-card p { color: var(--hdt-gray-500); margin-top: 8px; font-size: .88rem; flex: 1; }
.product-card__price { margin-top: 14px; font-size: 1.12rem; }
.product-card__ship { color: var(--hdt-red); font-weight: 800; font-size: .82rem; margin-top: 4px; }
.product-card__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  margin-top: 14px;
  border-radius: 5px;
  background: var(--hdt-red);
  color: #fff;
  font-size: .82rem;
  font-weight: 900;
  text-transform: uppercase;
}
.product-card__cta:hover { color: #fff; background: var(--hdt-red-dark); }

.why-grid-section h2, .dealer-capabilities h2 { margin-bottom: 20px; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border: 1px solid var(--hdt-gray-200);
  border-radius: var(--hdt-radius);
  overflow: hidden;
  background: #fff;
}
.why-grid article {
  padding: 24px;
  border-right: 1px solid var(--hdt-gray-200);
}
.why-grid article:last-child { border-right: 0; }
.why-grid svg { width: 38px; height: 38px; fill: var(--hdt-black); }
.why-grid h3 { font-family: var(--font-body); text-transform: none; line-height: 1.15; font-size: 1rem; margin-top: 14px; }
.why-grid p { color: var(--hdt-gray-500); font-size: .88rem; margin-top: 8px; }
.brand-wall {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
}
.brand-wall a {
  height: 78px;
  display: grid;
  place-items: center;
  border: 1px solid var(--hdt-gray-200);
  border-radius: 8px;
  background: #fff;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.35rem;
  color: #111;
}
.brand-wall a:nth-child(3n + 1) { color: #1a4ca3; }
.brand-wall a:nth-child(3n + 2) { color: #0070aa; }
.brand-wall a:nth-child(3n + 3) { color: var(--hdt-red); }
.brand-wall a:hover { color: var(--hdt-red); border-color: var(--hdt-red); }
.dealer-capabilities {
  text-align: center;
  border-top: 1px solid var(--hdt-gray-200);
  border-bottom: 1px solid var(--hdt-gray-200);
  padding-top: 36px;
  padding-bottom: 30px;
}
.dealer-capabilities > div {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 14px;
  margin-top: 20px;
}
.dealer-capabilities article { padding: 14px; }
.dealer-capabilities svg { width: 42px; height: 42px; fill: var(--hdt-red); }
.dealer-capabilities strong { display: block; font-size: .9rem; margin-top: 10px; }
.dealer-capabilities p { color: var(--hdt-gray-500); font-size: .84rem; margin-top: 22px; }
.support-banner {
  display: grid;
  grid-template-columns: 240px 1fr auto;
  gap: 28px;
  align-items: center;
  margin-top: 38px;
  padding: 24px;
  border-radius: var(--hdt-radius);
  background: linear-gradient(135deg, #080808, #1d1d1d);
  color: #fff;
}
.support-banner img { width: 240px; height: 150px; object-fit: cover; border-radius: 10px; }
.support-banner h2 { font-size: clamp(1.6rem, 2.5vw, 3rem); }
.support-banner p { color: rgba(255,255,255,.72); margin-top: 8px; }
.support-banner > div:last-child { display: grid; gap: 12px; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.testimonials-grid article {
  padding: 24px;
  border: 1px solid var(--hdt-gray-200);
  border-radius: 12px;
  background: #fff;
}
.testimonials-grid span { color: var(--hdt-red); letter-spacing: .08em; }
.testimonials-grid p { margin-top: 12px; color: var(--hdt-gray-700); }
.testimonials-grid strong { display: block; margin-top: 16px; font-size: .88rem; }
.resource-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
.resource-grid article {
  border: 1px solid var(--hdt-gray-200);
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
}
.resource-grid img { width: 100%; height: 120px; object-fit: cover; display: block; }
.resource-grid h3 {
  font-family: var(--font-body);
  text-transform: none;
  line-height: 1.12;
  font-size: 1rem;
  padding: 16px 16px 0;
}
.resource-grid p { color: var(--hdt-gray-500); font-size: .86rem; padding: 8px 16px 0; }
.resource-grid a { display: inline-flex; color: var(--hdt-red); font-weight: 900; font-size: .84rem; padding: 14px 16px 18px; }
.faq-service-grid {
  display: grid;
  grid-template-columns: 1fr .85fr;
  gap: 28px;
  align-items: stretch;
  margin-bottom: 54px;
}
.faq-block h2 { margin-bottom: 16px; }
details {
  border: 1px solid var(--hdt-gray-200);
  border-radius: 8px;
  margin-bottom: 8px;
  background: #fff;
}
summary {
  cursor: pointer;
  padding: 14px 18px;
  font-weight: 900;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
summary::after { content: "+"; color: var(--hdt-red); }
details[open] summary::after { content: "–"; }
details p { padding: 0 18px 16px; color: var(--hdt-gray-500); }
.service-card {
  padding: 24px;
  border-radius: var(--hdt-radius);
  background: var(--hdt-gray-100);
}
.service-card img { width: 100%; height: 210px; object-fit: cover; border-radius: 12px; }
.service-card h3 { margin-top: 18px; font-size: 2rem; }
.service-card p { margin-top: 10px; color: var(--hdt-gray-500); }
.service-card__tiles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 20px; }
.service-card__tiles span { min-height: 58px; display: grid; place-items: center; text-align: center; padding: 8px; border-radius: 8px; background: #fff; font-weight: 900; font-size: .82rem; }

.footer-cta {
  background: #101010 url('../images/cta-case.webp') right center / auto 105% no-repeat;
  color: #fff;
  border-top: 5px solid var(--hdt-red);
  position: relative;
}
.footer-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #101010 0%, #101010 38%, rgba(16,16,16,.78) 56%, rgba(16,16,16,.45) 72%, rgba(16,16,16,0) 88%);
  pointer-events: none;
}
.footer-cta__inner { position: relative; z-index: 1; }
.footer-cta__inner > div:last-child { padding-right: clamp(0px, 16vw, 260px); }
.footer-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 116px;
  padding: 38px 0;
}
.footer-cta h2 { font-size: clamp(1.7rem, 2.8vw, 3rem); }
.footer-cta p { color: rgba(255,255,255,.72); margin-top: 6px; }
.footer-cta__actions { display: flex; gap: 14px; }
.footer-main { background: #090909; color: #fff; padding: 42px 0 20px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.55fr repeat(4, 1fr);
  gap: 34px;
}
.footer-brand .site-logo { display: none; }
.footer-brand .footer-logo { display: inline-block; }
.footer-brand .footer-logo img { display: block; height: auto; width: 260px; max-width: 100%; }
.footer-brand p { color: rgba(255,255,255,.68); margin-top: 16px; max-width: 320px; }
.social-row { display: flex; gap: 10px; margin-top: 22px; }
.social-row a { width: 32px; height: 32px; border-radius: 999px; background: rgba(255,255,255,.12); display: grid; place-items: center; font-weight: 900; }
.footer-grid h3 { font-family: var(--font-body); text-transform: uppercase; font-size: .9rem; letter-spacing: .08em; margin-bottom: 15px; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.footer-grid a, .footer-grid li { color: rgba(255,255,255,.72); font-size: .92rem; }
.footer-grid a:hover { color: #fff; }
.footer-grid .btn { margin-top: 18px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.14);
  margin-top: 34px;
  padding-top: 20px;
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 28px;
  color: rgba(255,255,255,.55);
  font-size: .8rem;
}
.footer-bottom p:last-child { max-width: 620px; text-align: right; }

/* WooCommerce basic alignment */
.woocommerce .site-main, .woocommerce-page .site-main { width: min(calc(100% - 48px), var(--hdt-container)); margin-inline: auto; padding: 44px 0; }
.woocommerce ul.products li.product, .woocommerce-page ul.products li.product {
  border: 1px solid var(--hdt-gray-200);
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--hdt-shadow-soft);
  padding-bottom: 16px;
}
.woocommerce ul.products li.product .button { background: var(--hdt-red); color: #fff; border-radius: 5px; text-transform: uppercase; font-weight: 900; }
.woocommerce div.product .button { background: var(--hdt-red); color: #fff; border-radius: 5px; text-transform: uppercase; font-weight: 900; }

@media (max-width: 1220px) {
  .main-header__inner { grid-template-columns: 240px auto; }
  .primary-nav { grid-column: 1 / -1; order: 3; }
  .primary-nav ul { justify-content: flex-start; padding-bottom: 14px; overflow-x: auto; }
  .header-actions { justify-self: end; }
  .hero-grid { grid-template-columns: 1fr; min-height: auto; }
  .hero-visual { min-height: 330px; }
  .hero-device--laptop { left: 0; right: auto; width: min(560px, 68vw); }
  .hero-case { right: 8%; }
  .category-tile-grid, .brand-wall { grid-template-columns: repeat(3, 1fr); }
  .product-carousel { grid-template-columns: repeat(3, 1fr); }
  .trust-badges, .capability-grid, .why-grid, .dealer-capabilities > div, .resource-grid { grid-template-columns: repeat(3, 1fr); }
  .card-trio, .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .container { width: min(calc(100% - 28px), var(--hdt-container)); }
  .utility-bar__inner { justify-content: flex-start; overflow-x: auto; }
  .main-header__inner { grid-template-columns: 1fr auto; min-height: 72px; gap: 14px; }
  .site-logo img { height: 56px; width: auto; }
  .nav-toggle {
    display: inline-grid;
    gap: 5px;
    width: 44px;
    height: 44px;
    place-content: center;
    border: 1px solid var(--hdt-gray-200);
    background: #fff;
    border-radius: 8px;
  }
  .nav-toggle span:not(.screen-reader-text) { display: block; width: 22px; height: 2px; background: var(--hdt-black); }
  .primary-nav, .header-actions { display: none; grid-column: 1 / -1; }
  .primary-nav.is-open, .header-actions.is-open { display: flex; }
  .primary-nav ul { flex-direction: column; align-items: flex-start; width: 100%; padding: 12px 0; }
  .header-actions.is-open { flex-wrap: wrap; padding-bottom: 16px; }
  .header-search { width: 100%; }
  .hero-section { min-height: auto; }
  .hero-grid { padding: 40px 0 80px; gap: 25px; }
  .hero-visual { min-height: 260px; }
  .hero-device--laptop { width: 74vw; height: 220px; padding: 12px; }
  .hero-device--scanner { transform: scale(.78); transform-origin: bottom right; }
  .hero-case { width: 230px; height: 110px; font-size: 3.4rem; right: 2%; }
  .connector-row { display: none; }
  .promo-band, .financing-card, .proof-strip, .split-feature, .about-band, .finder-layout, .support-banner, .faq-service-grid, .footer-cta__inner { grid-template-columns: 1fr; }
  .promo-band { margin-top: -34px; padding: 24px; }
  .promo-band__feature { border-left: 0; border-top: 3px solid var(--hdt-red); padding-left: 0; padding-top: 18px; }
  .financing-card { padding: 20px; }
  .financing-card__image img { width: 100%; }
  .card-trio, .category-cards, .category-tile-grid, .product-carousel, .trust-badges, .capability-grid, .why-grid, .brand-wall, .dealer-capabilities > div, .testimonials-grid, .resource-grid, .mini-feature-grid, .footer-grid { grid-template-columns: 1fr; }
  .why-grid article { border-right: 0; border-bottom: 1px solid var(--hdt-gray-200); }
  .split-feature__image img { max-height: none; }
  .about-band__visual { min-height: 220px; }
  .building-card { left: 24px; right: auto; }
  .service-van { left: 24px; right: 24px; width: auto; }
  .tool-finder { grid-template-columns: 1fr; }
  .support-banner img { width: 100%; }
  .footer-cta__inner { align-items: start; padding: 30px 0; }
  .footer-cta__actions { flex-wrap: wrap; }
  .footer-bottom { flex-direction: column; }
  .footer-bottom p:last-child { text-align: left; }
}

@media (max-width: 520px) {
  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }
  .hero-actions, .footer-cta__actions { flex-direction: column; align-items: stretch; }
  .btn { width: 100%; }
  .hero-visual { min-height: 210px; }
  .hero-device--laptop { width: 88vw; height: 190px; }
  .hero-device--scanner { display: none; }
  .hero-case { width: 180px; height: 90px; font-size: 2.8rem; }
}
