@font-face {
  font-family: "Raleway";
  src: url("assets/fonts/raleway-1.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Raleway";
  src: url("assets/fonts/raleway-2.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Raleway";
  src: url("assets/fonts/raleway-3.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Raleway";
  src: url("assets/fonts/raleway-4.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --orange: #fd6710;
  --black: #000000;
  --grey: #b3b3b3;
  --white: #ffffff;
  --ink: #111111;
  --ink-soft: #333333;
  --muted: #666666;
  --surface: #f7f7f7;
  --surface-strong: #eeeeee;
  --line: #dfdfdf;
  --shadow: 0 18px 46px rgba(0, 0, 0, 0.12);
  --shadow-soft: 0 10px 24px rgba(0, 0, 0, 0.08);
  --radius: 8px;
  --container: 1180px;
  --header-height: 78px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Raleway", Arial, Helvetica, sans-serif;
  font-weight: 400;
  line-height: 1.55;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

button {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid rgba(253, 103, 16, 0.42);
  outline-offset: 3px;
}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

svg {
  width: 1.08em;
  height: 1.08em;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  flex: 0 0 auto;
}

.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;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: var(--header-height);
  padding: 12px max(22px, calc((100vw - var(--container)) / 2));
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

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

.site-nav {
  display: flex;
  justify-content: center;
  gap: 4px;
}

.site-nav a {
  padding: 10px 13px;
  color: var(--ink-soft);
  border-radius: 6px;
  font-size: 0.94rem;
  font-weight: 700;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--black);
  background: var(--surface-strong);
}

.site-nav a.nav-login {
  color: var(--white);
  background: var(--black);
}

.site-nav a.nav-login:hover,
.site-nav a.nav-login.is-active {
  color: var(--orange);
  background: var(--black);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 44px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.header-cta {
  color: var(--white);
  background: var(--black);
}

.header-cta:hover {
  color: var(--orange);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  color: var(--black);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-open .menu-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.nav-open .menu-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: min(770px, calc(100svh - 80px));
  overflow: hidden;
  background-color: var(--surface);
  background-image: url("assets/hero-platform.webp");
  background-position: right top;
  background-repeat: no-repeat;
  background-size: clamp(960px, 49vw, 1120px) auto;
  border-bottom: 1px solid var(--line);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(247, 247, 247, 1) 0%, rgba(247, 247, 247, 1) 48%, rgba(247, 247, 247, 0.94) 58%, rgba(247, 247, 247, 0.44) 72%, rgba(247, 247, 247, 0) 88%);
  -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 64%, rgba(0, 0, 0, 0.72) 82%, rgba(0, 0, 0, 0.48) 100%);
  mask-image: linear-gradient(180deg, #000 0%, #000 64%, rgba(0, 0, 0, 0.72) 82%, rgba(0, 0, 0, 0.48) 100%);
}

.hero-inner {
  position: relative;
  width: min(700px, calc(100% - 40px));
  margin-left: max(20px, calc((100vw - var(--container)) / 2));
  padding-block: clamp(64px, 11vw, 118px);
}

.eyebrow,
.mini-kicker,
.card-kicker {
  margin: 0 0 12px;
  color: var(--orange);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0;
}

h1,
h2,
h3 {
  letter-spacing: 0;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: manual;
  text-wrap: balance;
}

p {
  letter-spacing: 0;
  overflow-wrap: break-word;
}

.hero h1,
.section h2,
.outcome-band h2,
.cta-banner h2,
.contact-layout h2 {
  margin: 0;
  color: var(--black);
  font-size: clamp(3.6rem, 8vw, 6.8rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 10ch;
}

.hero-lede {
  max-width: 650px;
  margin: 24px 0 0;
  color: var(--ink-soft);
  font-size: clamp(1.12rem, 2vw, 1.34rem);
  line-height: 1.45;
}

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

.button-primary {
  color: var(--black);
  background: var(--orange);
  border-color: var(--orange);
}

.button-primary:hover {
  color: var(--white);
  background: var(--black);
  border-color: var(--black);
}

.button-secondary {
  color: var(--black);
  background: var(--white);
  border-color: var(--line);
}

.button-secondary:hover {
  border-color: var(--black);
}

.button-light {
  color: var(--black);
  background: var(--white);
  border-color: var(--white);
}

.button-light:hover {
  color: var(--black);
  background: var(--orange);
  border-color: var(--orange);
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(128px, 1fr));
  gap: 12px;
  width: min(920px, 100%);
  margin-top: 46px;
}

.proof-strip div {
  padding: 16px 14px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

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

.proof-strip strong {
  color: var(--black);
  font-size: clamp(1rem, 1.7vw, 1.26rem);
  line-height: 1.1;
}

.proof-strip span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.35;
}

.outcome-band {
  padding-block: clamp(28px, 5vw, 48px);
  background: var(--black);
  color: var(--white);
}

.outcome-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.25fr auto;
  align-items: center;
  gap: clamp(22px, 4vw, 42px);
}

.outcome-band h2 {
  color: var(--white);
  font-size: clamp(2.45rem, 5vw, 4.6rem);
}

.outcome-band p,
.cta-banner p,
.site-footer p {
  color: rgba(255, 255, 255, 0.78);
}

.outcome-band p {
  margin: 0;
  font-size: 1.02rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-weight: 700;
  white-space: nowrap;
}

.text-link:hover {
  color: var(--orange);
}

.section {
  padding-block: clamp(70px, 9vw, 116px);
}

.section-muted {
  background: var(--surface);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  align-items: center;
  gap: clamp(34px, 6vw, 76px);
}

.split > * {
  min-width: 0;
}

.split-platform {
  align-items: start;
  row-gap: clamp(18px, 3vw, 34px);
}

.platform-copy {
  align-self: center;
}

.section h2,
.cta-banner h2,
.contact-layout h2 {
  max-width: 13ch;
  font-size: clamp(2.8rem, 6vw, 5.3rem);
}

.section-lede,
.section-head p,
.contact-layout p {
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.section-lede {
  max-width: 640px;
  margin: 22px 0 0;
}

.capability-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 32px;
}

.platform-capabilities {
  grid-column: 1 / -1;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 0;
}

.capability-list article,
.trust-grid article,
.stat-card,
.solution-card,
.compliance-card,
.product-card,
.enquiry-form,
.platform-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.capability-list article {
  position: relative;
  overflow: hidden;
  min-width: 0;
  padding: 20px;
}

.platform-capabilities article {
  display: grid;
  grid-template-rows: auto auto 1fr;
  min-height: 190px;
  padding: clamp(20px, 2.1vw, 26px);
}

.platform-capabilities article::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, var(--orange), rgba(253, 103, 16, 0.18));
}

.capability-list svg,
.trust-grid svg {
  width: 34px;
  height: 34px;
  color: var(--orange);
}

.capability-list h3,
.trust-grid h3,
.product-feature h3,
.solution-card h3,
.compliance-card h3,
.product-card h3 {
  margin: 14px 0 6px;
  color: var(--black);
  font-size: 1.14rem;
  font-weight: 700;
  line-height: 1.2;
}

.capability-list p,
.trust-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.45;
}

.platform-panel {
  overflow: hidden;
}

.platform-panel img {
  display: block;
  width: 100%;
  aspect-ratio: 2.45 / 1;
  object-fit: contain;
  object-position: center;
  background: var(--white);
}

.platform-operator-image {
  border-top: 1px solid var(--line);
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}

.metric-row span {
  padding: 18px;
  color: var(--muted);
  border-right: 1px solid var(--line);
  font-size: 0.9rem;
}

.metric-row span:last-child {
  border-right: 0;
}

.metric-row strong {
  display: block;
  color: var(--black);
  font-size: 1.55rem;
  line-height: 1;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.58fr);
  align-items: end;
  gap: 28px;
  margin-bottom: 30px;
}

.section-head p {
  margin: 0 0 8px;
}

.guide-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.75fr);
  gap: clamp(22px, 5vw, 54px);
  align-items: start;
}

.guide-form,
.guide-results,
.guide-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.guide-form,
.guide-results {
  padding: clamp(20px, 3vw, 30px);
}

.guide-form label {
  color: var(--black);
  font-size: 1rem;
}

.guide-form textarea {
  min-height: 164px;
  margin-top: 10px;
  resize: vertical;
  font-size: 1rem;
  line-height: 1.45;
}

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

.guide-prompts button {
  min-height: 38px;
  padding: 8px 11px;
  color: var(--ink-soft);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 700;
}

.guide-prompts button:hover {
  color: var(--black);
  border-color: var(--orange);
}

.guide-results {
  display: grid;
  gap: 12px;
}

.guide-results .card-kicker {
  margin: 0;
}

.guide-card {
  padding: 18px;
}

.guide-card h3 {
  margin: 0;
  color: var(--black);
  font-size: 1.24rem;
  line-height: 1.15;
}

.guide-card p {
  margin: 10px 0 0;
  color: var(--ink-soft);
  line-height: 1.45;
}

.guide-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  color: var(--black);
  font-weight: 700;
}

.guide-card a:hover {
  color: var(--orange);
}

.guide-cta {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

.segmented-control {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 26px;
}

.segmented-control button {
  min-height: 40px;
  padding: 9px 14px;
  color: var(--ink-soft);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  font-size: 0.92rem;
  font-weight: 700;
}

.segmented-control button:hover,
.segmented-control button.is-active {
  color: var(--white);
  background: var(--black);
  border-color: var(--black);
}

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

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

.solution-card,
.compliance-card,
.product-card {
  overflow: hidden;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.solution-card:hover,
.compliance-card:hover,
.product-card:hover {
  transform: translateY(-3px);
  border-color: var(--grey);
  box-shadow: var(--shadow);
}

.solution-card.is-hidden,
.product-card.is-hidden {
  display: none;
}

.solution-card img,
.compliance-card img,
.product-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1.5 / 1;
  object-fit: cover;
  background: var(--surface-strong);
}

.solution-card > div,
.compliance-card > div,
.product-card > div {
  position: relative;
  z-index: 1;
  padding: 22px;
  background: var(--white);
}

.card-kicker {
  margin-bottom: 10px;
}

.solution-card h3,
.compliance-card h3,
.product-card h3 {
  margin: 0;
  font-size: clamp(1.22rem, 2vw, 1.45rem);
}

.solution-card p:not(.card-kicker),
.compliance-card p:not(.card-kicker),
.product-card p {
  margin: 12px 0 0;
  color: var(--ink-soft);
}

.solution-card ul,
.compliance-card ul,
.check-list {
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.solution-card li,
.compliance-card li,
.check-list li {
  position: relative;
  padding-left: 25px;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.35;
}

.solution-card li + li,
.compliance-card li + li,
.check-list li + li {
  margin-top: 8px;
}

.solution-card li::before,
.compliance-card li::before,
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.48em;
  width: 10px;
  height: 10px;
  border: 2px solid var(--orange);
  border-radius: 50%;
}

.solution-card a,
.compliance-card a,
.product-card a {
  display: inline-flex;
  margin-top: 20px;
  color: var(--black);
  font-weight: 700;
}

.solution-card a:hover,
.compliance-card a:hover,
.product-card a:hover {
  color: var(--orange);
}

.product-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(24px, 5vw, 54px);
  margin-bottom: 30px;
  padding: clamp(22px, 4vw, 34px);
  color: var(--white);
  background: var(--black);
  border-radius: var(--radius);
  overflow: hidden;
}

.product-feature img {
  width: 100%;
  aspect-ratio: 1.45 / 1;
  object-fit: cover;
  border-radius: var(--radius);
}

.product-feature h3 {
  max-width: 620px;
  margin: 0;
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1.03;
}

.product-feature p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.06rem;
}

.feature-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.feature-chips span {
  padding: 8px 10px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 6px;
  font-size: 0.88rem;
  font-weight: 600;
}

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

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

.product-card img {
  height: 100%;
  min-height: 292px;
  aspect-ratio: auto;
}

.product-card img.product-hero-image {
  object-position: center;
}

.product-card dl {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 6px 12px;
  margin: 18px 0 0;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-size: 0.94rem;
}

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

.product-card dd {
  margin: 0;
  color: var(--black);
  font-weight: 600;
}

.section-roadscan {
  color: var(--white);
  background: var(--black);
}

.section-roadscan h2 {
  color: var(--white);
}

.section-roadscan .section-lede,
.section-roadscan .check-list li {
  color: rgba(255, 255, 255, 0.76);
}

.stat-card {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 20px;
  margin: 28px 0 4px;
  padding: 22px;
  color: var(--black);
}

.stat-card strong {
  color: var(--orange);
  font-size: clamp(3rem, 6vw, 5.2rem);
  line-height: 0.9;
}

.stat-card span {
  color: var(--ink-soft);
  font-weight: 600;
}

.roadscan-visual img {
  width: 100%;
  aspect-ratio: 1.35 / 1;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
}

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

.trust-grid article {
  padding: 24px;
}

.proof-section {
  background:
    linear-gradient(180deg, rgba(253, 103, 16, 0.04), rgba(255, 255, 255, 0) 34%),
    var(--white);
}

.client-logo-panel {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: clamp(24px, 4vw, 34px);
}

.client-logo-panel img {
  width: 100%;
  height: 74px;
  padding: 14px;
  object-fit: contain;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.045);
}

.client-logo-panel img.client-logo-better-living {
  padding: 8px;
  background: linear-gradient(135deg, #ffffff, #f5f5f5);
}

.proof-content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: 20px;
  align-items: stretch;
}

.video-testimonial,
.review-panel,
.review-grid article {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.video-testimonial {
  overflow: hidden;
}

.video-frame {
  aspect-ratio: 16 / 9;
  background: var(--black);
}

.video-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-copy {
  padding: clamp(20px, 3vw, 28px);
}

.video-copy h3 {
  margin: 0;
  color: var(--black);
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  line-height: 1.08;
}

.video-copy p:not(.eyebrow) {
  margin: 14px 0 0;
  color: var(--ink-soft);
}

.review-panel {
  display: grid;
  gap: 14px;
  padding: 14px;
}

.review-summary {
  padding: 20px;
  color: var(--white);
  background: var(--black);
  border-radius: 6px;
}

.review-summary span,
.review-summary strong {
  display: block;
}

.review-summary span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
}

.review-summary strong {
  margin-top: 8px;
  color: var(--orange);
  font-size: clamp(2.8rem, 6vw, 4.4rem);
  line-height: 0.95;
}

.review-summary p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.78);
}

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

.review-grid article {
  padding: 18px;
  box-shadow: none;
}

.review-grid span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 9px;
  color: var(--black);
  background: rgba(253, 103, 16, 0.16);
  border: 1px solid rgba(253, 103, 16, 0.26);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
}

.review-grid p {
  margin: 12px 0 12px;
  color: var(--black);
  font-weight: 600;
  line-height: 1.35;
}

.review-grid strong {
  color: var(--muted);
  font-size: 0.9rem;
}

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

.about-proof-card {
  display: grid;
  align-content: space-between;
  min-height: 210px;
  padding: clamp(22px, 3vw, 30px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.about-proof-card strong {
  color: var(--orange);
  font-size: clamp(3rem, 7vw, 5.6rem);
  font-weight: 700;
  line-height: 0.9;
}

.about-proof-card span {
  max-width: 24ch;
  color: var(--ink-soft);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.35;
}

.cta-banner {
  padding-block: clamp(54px, 8vw, 86px);
  color: var(--white);
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.94), rgba(0, 0, 0, 0.72)), url("assets/why-intellitrac.webp") center / cover no-repeat;
}

.cta-banner h2 {
  color: var(--white);
}

.cta-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 28px;
}

.cta-banner p {
  max-width: 710px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(480px, 1fr);
  gap: clamp(34px, 6vw, 70px);
  align-items: start;
}

.contact-methods {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.contact-region {
  padding: 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.contact-region h3 {
  margin: 0 0 10px;
  color: var(--black);
  font-size: 1rem;
}

.contact-methods a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  color: var(--black);
  font-size: 1.05rem;
  font-weight: 700;
}

.contact-region a {
  display: flex;
  max-width: 100%;
}

.contact-region a + a {
  margin-top: 8px;
}

.contact-methods a:hover,
.contact-methods svg {
  color: var(--orange);
}

.embedded-contact {
  padding: clamp(18px, 3vw, 28px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.contact-form-intro {
  margin: 0 0 16px;
  color: var(--ink-soft);
  font-weight: 600;
}

.contact-form-switcher {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 16px;
}

.contact-form-toggle {
  display: grid;
  gap: 5px;
  min-height: 74px;
  padding: 14px;
  text-align: left;
  color: var(--ink-soft);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 6px;
  font-weight: 700;
}

.contact-form-toggle span {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 600;
  line-height: 1.35;
}

.contact-form-toggle:hover,
.contact-form-toggle.is-active {
  color: var(--black);
  background: var(--white);
  border-color: var(--orange);
  box-shadow: inset 4px 0 0 var(--orange);
}

.contact-form-panel {
  display: none;
}

.contact-form-panel.is-visible {
  display: block;
}

.contact-form-loading {
  display: none;
  padding: 14px;
  margin-bottom: 12px;
  color: var(--muted);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 6px;
  font-weight: 600;
}

.contact-form-loading.is-visible {
  display: block;
}

.contact-form-embed iframe {
  display: block;
  width: 100%;
  min-height: 1280px;
  border: 0;
  overflow: hidden;
}

.enquiry-form {
  padding: clamp(22px, 4vw, 32px);
}

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

label {
  display: grid;
  gap: 7px;
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 12px;
  color: var(--black);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 6px;
}

textarea {
  min-height: 140px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--orange);
  background: var(--white);
}

.enquiry-form > label {
  margin-top: 16px;
}

.enquiry-form .button {
  margin-top: 18px;
}

.form-note {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.detail-hero {
  padding-block: clamp(54px, 8vw, 96px);
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}

.detail-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(390px, 0.95fr);
  align-items: center;
  gap: clamp(30px, 6vw, 72px);
}

.detail-hero h1 {
  max-width: min(100%, 760px);
  margin: 0;
  color: var(--black);
  font-size: clamp(2.85rem, 5vw, 4.9rem);
  font-weight: 700;
  line-height: 1.06;
}

.detail-hero img {
  width: 100%;
  aspect-ratio: 1.35 / 1;
  object-fit: cover;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.product-detail .detail-hero img {
  object-fit: contain;
  padding: clamp(12px, 2.5vw, 24px);
}

.error-page {
  background: var(--surface);
}

.error-hero {
  padding-block: clamp(56px, 8vw, 102px);
  background:
    radial-gradient(circle at 86% 14%, rgba(253, 103, 16, 0.11), transparent 30%),
    linear-gradient(90deg, var(--surface) 0%, var(--surface) 65%, rgba(255, 255, 255, 0.9) 100%);
  border-bottom: 1px solid var(--line);
}

.error-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.7fr);
  align-items: center;
  gap: clamp(28px, 6vw, 76px);
}

.error-code {
  display: block;
  margin: 22px 0 8px;
  color: var(--orange);
  font-size: clamp(5.4rem, 15vw, 11rem);
  font-weight: 700;
  line-height: 0.82;
  letter-spacing: 0;
}

.error-hero h1 {
  max-width: 11ch;
  margin: 0;
  color: var(--black);
  font-size: clamp(2.9rem, 6vw, 5.8rem);
  line-height: 0.98;
}

.error-card {
  padding: clamp(24px, 4vw, 36px);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.error-card > svg {
  width: 42px;
  height: 42px;
  margin-bottom: 20px;
  color: var(--orange);
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
}

.error-card h2 {
  margin: 0 0 16px;
  color: var(--black);
  font-size: clamp(1.55rem, 3vw, 2.1rem);
  line-height: 1.05;
}

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

.sb-hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(58px, 8vw, 104px);
  background: linear-gradient(90deg, var(--surface) 0%, var(--surface) 62%, rgba(255, 255, 255, 0.86) 100%);
  border-bottom: 1px solid var(--line);
}

.sb-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 0.9fr);
  align-items: center;
  gap: clamp(36px, 6vw, 78px);
}

.sb-hero-copy {
  position: relative;
  z-index: 1;
}

.sb-hero h1 {
  max-width: 11.5ch;
  margin: 0;
  color: var(--black);
  font-size: clamp(3.35rem, 7.6vw, 6.45rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
}

.sb-price-line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
}

.sb-price-line strong,
.sb-price-line span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 10px 13px;
  border-radius: 6px;
  font-weight: 700;
}

.sb-price-line strong {
  color: var(--black);
  background: var(--orange);
}

.sb-price-line span {
  color: var(--black);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.sb-hero-visual {
  position: relative;
  display: grid;
  align-content: start;
}

.sb-software-screen {
  display: block;
  width: 100%;
  aspect-ratio: 1.18 / 1;
  object-fit: cover;
  object-position: center 42%;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.sb-hero-product-row {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1fr);
  gap: 12px;
  width: min(88%, 540px);
  margin: -58px auto 0;
}

.sb-hero-product-card {
  display: grid;
  place-items: center;
  min-height: 136px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.sb-product-device,
.sb-product-camera {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.sb-hero-product-card .sb-product-device {
  max-width: 230px;
}

.sb-hero-product-card .sb-product-camera {
  max-width: 180px;
}

.sb-offer-card span {
  display: block;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 700;
  text-transform: uppercase;
}

img.sb-raw-product-image {
  display: block;
  height: auto !important;
  min-height: 0 !important;
  padding: 0 !important;
  object-fit: contain !important;
  aspect-ratio: auto !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  filter: none !important;
}

.sb-answer-grid,
.sb-benefit-grid {
  display: grid;
  gap: 18px;
}

.sb-answer-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

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

.sb-answer-grid article,
.sb-benefit-grid article {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.sb-answer-grid article {
  padding: clamp(18px, 2vw, 24px);
}

.sb-answer-grid span {
  display: block;
  color: var(--orange);
  font-size: 0.82rem;
  font-weight: 700;
}

.sb-answer-grid strong {
  display: block;
  margin-top: 12px;
  color: var(--black);
  font-size: clamp(1.25rem, 2vw, 1.8rem);
  line-height: 1.05;
}

.sb-answer-grid p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.42;
}

.sb-benefit-grid article {
  padding: clamp(22px, 3vw, 28px);
}

.sb-benefit-grid svg {
  width: 34px;
  height: 34px;
  color: var(--orange);
}

.sb-benefit-grid h3 {
  margin: 14px 0 8px;
  color: var(--black);
  font-size: 1.16rem;
  line-height: 1.16;
}

.sb-benefit-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.45;
}

.sb-example-grid,
.sb-next-grid,
.sb-faq-grid {
  display: grid;
  gap: 18px;
}

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

.sb-example-grid article,
.sb-next-grid article,
.sb-faq-grid details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.sb-example-grid article,
.sb-next-grid article {
  padding: clamp(22px, 3vw, 28px);
}

.sb-example-grid span,
.sb-next-grid span {
  color: var(--orange);
  font-size: 0.82rem;
  font-weight: 700;
}

.sb-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 8px 0 16px;
}

.sb-badge-row span,
.sb-package-grid > article > span,
.sb-week-grid > article > span {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 30px;
  padding: 6px 10px;
  color: var(--black);
  background: rgba(253, 103, 16, 0.12);
  border: 1px solid rgba(253, 103, 16, 0.24);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
}

.sb-example-grid h3,
.sb-next-grid h3 {
  margin: 12px 0 8px;
  color: var(--black);
  font-size: 1.22rem;
  line-height: 1.16;
}

.sb-example-grid p,
.sb-next-grid p {
  margin: 0;
  color: var(--muted);
}

.sb-comparison-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.sb-comparison-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  background: var(--white);
}

.sb-comparison-table th,
.sb-comparison-table td {
  padding: 18px 20px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

.sb-comparison-table thead th {
  color: var(--black);
  background: rgba(253, 103, 16, 0.1);
  font-size: 0.86rem;
  text-transform: uppercase;
}

.sb-comparison-table tbody th {
  color: var(--black);
  font-size: 1.08rem;
}

.sb-comparison-table tbody tr:last-child th,
.sb-comparison-table tbody tr:last-child td {
  border-bottom: 0;
}

.sb-comparison-table td {
  color: var(--ink-soft);
}

.sb-next-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.sb-package-grid,
.sb-software-grid,
.sb-week-grid,
.sb-compare-cards {
  display: grid;
  gap: 18px;
}

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

.sb-package-grid article,
.sb-week-grid article,
.sb-compare-cards article,
.sb-software-grid article,
.sb-split-grid {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.sb-package-grid article,
.sb-week-grid article,
.sb-compare-cards article {
  padding: clamp(22px, 3vw, 30px);
}

.sb-package-grid h3,
.sb-week-grid h3,
.sb-compare-cards h3,
.sb-software-grid h3 {
  margin: 14px 0 10px;
  color: var(--black);
  font-size: 1.26rem;
  line-height: 1.15;
}

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

.sb-software-grid article {
  overflow: hidden;
}

.sb-software-grid img {
  display: block;
  width: 100%;
  aspect-ratio: 1.35 / 1;
  object-fit: cover;
  background: var(--surface-strong);
  border-bottom: 1px solid var(--line);
}

.sb-software-grid img.sb-replay-image {
  object-fit: contain;
  background: #f4f4f4;
}

.sb-software-grid article > div {
  padding: clamp(20px, 3vw, 26px);
}

.sb-software-grid p,
.sb-week-grid p,
.sb-compare-cards p {
  margin: 0;
  color: var(--muted);
  line-height: 1.46;
}

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

.sb-split-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.75fr);
  gap: clamp(24px, 5vw, 56px);
  align-items: center;
  padding: clamp(24px, 4vw, 38px);
}

.sb-split-grid h2 {
  max-width: 12ch;
}

.sb-split-grid p {
  max-width: 760px;
  color: var(--ink-soft);
  font-size: 1.08rem;
  line-height: 1.62;
}

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

.sb-compare-cards article:nth-child(2) {
  border-color: rgba(253, 103, 16, 0.32);
}

.sb-seo-copy {
  max-width: 980px;
}

.sb-seo-copy h2 {
  max-width: 16ch;
}

.sb-seo-copy p:not(.eyebrow) {
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.7;
}

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

.sb-faq-grid details {
  padding: 0;
}

.sb-faq-grid summary {
  cursor: pointer;
  padding: 18px 20px;
  color: var(--black);
  font-weight: 700;
  list-style: none;
}

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

.sb-faq-grid summary::after {
  content: "+";
  float: right;
  color: var(--orange);
  font-weight: 700;
}

.sb-faq-grid details[open] summary::after {
  content: "-";
}

.sb-faq-grid p {
  margin: 0;
  padding: 0 20px 18px;
  color: var(--muted);
}

.common-faq-actions {
  margin-top: 24px;
}

.sb-product-grid,
.sb-product-pair,
.sb-outcome-grid {
  display: grid;
  gap: 18px;
}

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

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

.sb-product-grid article,
.sb-product-pair article,
.sb-outcome-grid article,
.sb-offer-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.sb-product-grid article {
  display: grid;
  grid-template-rows: 280px 1fr;
  overflow: hidden;
}

.sb-product-media {
  display: grid;
  place-items: center;
  min-height: 280px;
  padding: 22px;
  overflow: hidden;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.sb-product-media img {
  width: 100%;
  height: 100% !important;
  min-height: 0 !important;
  padding: 0 !important;
  aspect-ratio: auto !important;
  object-fit: contain !important;
  background: transparent !important;
}

.sb-product-media:not(.sb-product-media-combo) img[src*="onsite-installation"] {
  object-fit: cover !important;
  border-radius: 6px;
}

.sb-product-media-combo {
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1fr);
  gap: 14px;
}

.sb-product-media-combo img {
  max-height: 210px;
}

.sb-product-media-combo img[src*="obd-stealth-cable"] {
  max-height: 185px;
}

.sb-product-pair article {
  display: grid;
  grid-template-columns: minmax(180px, 0.6fr) minmax(0, 1fr);
  overflow: hidden;
}

.sb-product-grid img,
.sb-product-pair img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 22px;
  background: var(--white);
}

.sb-product-pair img {
  min-height: 330px;
  object-fit: cover;
  background: var(--surface-strong);
}

.sb-product-pair article:first-child img {
  object-fit: contain;
  padding: 22px;
  background: var(--white);
}

.sb-product-grid article > div,
.sb-product-pair article > div {
  padding: clamp(22px, 3vw, 30px);
}

.sb-product-grid h3,
.sb-product-pair h3 {
  margin: 0;
  color: var(--black);
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  line-height: 1.05;
}

.sb-product-grid p:not(.card-kicker),
.sb-product-pair p:not(.card-kicker) {
  color: var(--ink-soft);
}

.sb-accessory-note {
  margin-top: 18px;
  padding: 14px;
  background: rgba(253, 103, 16, 0.09);
  border: 1px solid rgba(253, 103, 16, 0.22);
  border-radius: 6px;
}

.sb-accessory-note strong {
  display: block;
  color: var(--black);
  font-size: 0.92rem;
}

.sb-accessory-note p {
  margin: 6px 0 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
  line-height: 1.4;
}

.sb-offer-band {
  padding-block: clamp(56px, 8vw, 86px);
  color: var(--white);
  background: var(--black);
}

.sb-offer-band h2 {
  max-width: 16ch;
  margin: 0;
  color: var(--white);
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  line-height: 1;
}

.sb-offer-band p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.08rem;
}

.sb-offer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 340px);
  align-items: center;
  gap: clamp(28px, 6vw, 78px);
}

.sb-offer-card {
  padding: clamp(24px, 4vw, 34px);
  color: var(--black);
}

.sb-offer-card strong {
  display: block;
  margin-top: 8px;
  color: var(--orange);
  font-size: clamp(4.8rem, 9vw, 7.8rem);
  line-height: 0.85;
}

.sb-offer-card small {
  display: block;
  margin: 8px 0 24px;
  color: var(--ink-soft);
  font-size: 1.12rem;
  font-weight: 700;
}

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

.sb-outcome-grid article {
  padding: clamp(22px, 3vw, 28px);
}

.sb-outcome-grid span {
  color: var(--orange);
  font-weight: 700;
}

.sb-outcome-grid h3 {
  margin: 18px 0 10px;
  color: var(--black);
  font-size: 1.22rem;
  line-height: 1.18;
}

.sb-outcome-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.nfp-hero {
  overflow: hidden;
  padding-block: clamp(58px, 8vw, 102px);
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}

.nfp-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(430px, 0.95fr);
  align-items: center;
  gap: clamp(36px, 6vw, 78px);
}

.nfp-hero h1 {
  max-width: 11ch;
  margin: 0;
  color: var(--black);
  font-size: clamp(3.1rem, 7vw, 6rem);
  font-weight: 700;
  line-height: 1;
}

.nfp-proof-line {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.nfp-proof-line span {
  min-height: 38px;
  padding: 9px 12px;
  color: var(--black);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: var(--shadow-soft);
  font-weight: 700;
}

.nfp-hero-visual {
  display: grid;
  gap: 12px;
}

.nfp-hero-main,
.nfp-hero-strip img,
.nfp-pool-grid img {
  display: block;
  width: 100%;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.nfp-hero-main {
  aspect-ratio: 1.35 / 1;
  object-fit: cover;
}

.nfp-hero-strip {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: 12px;
}

.nfp-hero-strip img {
  height: 170px;
  object-fit: cover;
}

.nfp-priority-grid,
.nfp-product-grid,
.nfp-workflow {
  display: grid;
  gap: 18px;
}

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

.nfp-priority-grid article,
.nfp-product-grid article,
.nfp-workflow article {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.nfp-priority-grid article {
  padding: 24px;
}

.nfp-priority-grid svg {
  width: 34px;
  height: 34px;
  color: var(--orange);
}

.nfp-priority-grid h3,
.nfp-workflow h3 {
  margin: 16px 0 8px;
  color: var(--black);
  font-size: 1.18rem;
  line-height: 1.18;
}

.nfp-priority-grid p,
.nfp-workflow p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.nfp-pool-band {
  padding-block: clamp(58px, 8vw, 92px);
  color: var(--white);
  background: var(--black);
}

.nfp-pool-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.56fr);
  align-items: center;
  gap: clamp(28px, 6vw, 72px);
}

.nfp-pool-band h2 {
  max-width: 13ch;
  margin: 0;
  color: var(--white);
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  line-height: 1;
}

.nfp-pool-band p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.08rem;
}

.nfp-pool-band .check-list li {
  color: rgba(255, 255, 255, 0.78);
}

.nfp-pool-grid img {
  aspect-ratio: 1.08 / 1;
  object-fit: cover;
}

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

.nfp-product-grid article {
  overflow: hidden;
}

.nfp-product-grid img {
  display: block;
  width: 100%;
  aspect-ratio: 1.45 / 1;
  object-fit: cover;
  background: var(--white);
}

.nfp-product-grid img.nfp-product-contain {
  object-fit: contain;
  padding: 22px;
}

.nfp-product-grid img.nfp-vt5-image {
  aspect-ratio: 3 / 2;
  object-position: center;
}

.nfp-product-grid article > div {
  padding: clamp(22px, 3vw, 28px);
}

.nfp-product-grid h3 {
  margin: 0;
  color: var(--black);
  font-size: clamp(1.55rem, 2.8vw, 2.3rem);
  line-height: 1.06;
}

.nfp-product-grid p:not(.card-kicker) {
  color: var(--ink-soft);
}

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

.nfp-workflow article {
  padding: clamp(22px, 3vw, 28px);
}

.nfp-workflow span {
  color: var(--orange);
  font-weight: 700;
}

.plant-hero {
  overflow: hidden;
  padding-block: clamp(58px, 8vw, 104px);
  background:
    radial-gradient(circle at 82% 18%, rgba(253, 103, 16, 0.1), transparent 28%),
    linear-gradient(90deg, var(--surface) 0%, var(--surface) 64%, rgba(255, 255, 255, 0.9) 100%);
  border-bottom: 1px solid var(--line);
}

.plant-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 0.95fr);
  align-items: center;
  gap: clamp(36px, 6vw, 78px);
}

.plant-hero-copy {
  position: relative;
  z-index: 1;
}

.plant-hero h1 {
  max-width: 11ch;
  margin: 0;
  color: var(--black);
  font-size: clamp(3.1rem, 7vw, 6rem);
  font-weight: 700;
  line-height: 1;
}

.plant-price-line {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.plant-price-line strong,
.plant-price-line span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 10px 13px;
  border-radius: 6px;
  font-weight: 700;
}

.plant-price-line strong {
  color: var(--black);
  background: var(--orange);
}

.plant-price-line span {
  color: var(--black);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.plant-hero-visual {
  display: grid;
  gap: 14px;
}

.plant-device-stage {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 440px;
  padding: clamp(30px, 5vw, 54px);
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.78)),
    url("assets/asset-visibility.webp") center / cover no-repeat;
  border: 1px solid rgba(0, 0, 0, 0.18);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.plant-device-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.48));
}

.plant-device-stage img {
  position: relative;
  z-index: 1;
  width: min(100%, 500px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
}

.plant-stage-badge {
  position: absolute;
  z-index: 2;
  display: grid;
  gap: 4px;
  min-width: 172px;
  padding: 14px 16px;
  color: var(--black);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.plant-stage-badge span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.plant-stage-badge strong {
  color: var(--black);
  font-size: 1.08rem;
  line-height: 1.1;
}

.plant-stage-badge-primary {
  top: 22px;
  right: 22px;
  border-left: 5px solid var(--orange);
}

.plant-stage-badge-secondary {
  left: 22px;
  bottom: 22px;
  border-left: 5px solid var(--black);
}

.plant-hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.plant-hero-metrics div,
.plant-feature-grid article,
.plant-process article,
.plant-product-grid article,
.plant-offer-card,
.plant-battery-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.plant-hero-metrics div {
  padding: 18px;
}

.plant-hero-metrics strong,
.plant-hero-metrics span {
  display: block;
}

.plant-hero-metrics strong {
  color: var(--orange);
  font-size: clamp(1.5rem, 3vw, 2rem);
  line-height: 1;
}

.plant-hero-metrics span {
  margin-top: 6px;
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.35;
}

.plant-process,
.plant-feature-grid,
.plant-product-grid {
  display: grid;
  gap: 18px;
}

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

.plant-process article,
.plant-feature-grid article {
  padding: clamp(22px, 3vw, 28px);
}

.plant-process span {
  color: var(--orange);
  font-weight: 700;
}

.plant-process h3,
.plant-feature-grid h3 {
  margin: 16px 0 8px;
  color: var(--black);
  font-size: 1.18rem;
  line-height: 1.18;
}

.plant-process p,
.plant-feature-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

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

.plant-feature-grid svg {
  width: 34px;
  height: 34px;
  color: var(--orange);
}

.plant-battery-band,
.plant-offer-band {
  padding-block: clamp(56px, 8vw, 88px);
  color: var(--white);
  background: var(--black);
}

.plant-battery-grid,
.plant-offer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 340px);
  align-items: center;
  gap: clamp(28px, 6vw, 78px);
}

.plant-battery-band h2,
.plant-offer-band h2 {
  max-width: 13ch;
  margin: 0;
  color: var(--white);
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  line-height: 1;
}

.plant-battery-band p,
.plant-offer-band p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.08rem;
}

.plant-battery-card {
  display: grid;
  gap: 10px;
  padding: clamp(24px, 4vw, 34px);
  color: var(--black);
}

.plant-battery-card svg {
  width: 46px;
  height: 46px;
  color: var(--orange);
}

.plant-battery-card strong {
  color: var(--orange);
  font-size: clamp(3.4rem, 7vw, 5.6rem);
  line-height: 0.9;
}

.plant-battery-card span {
  color: var(--ink-soft);
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.35;
}

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

.plant-product-grid article {
  display: grid;
  grid-template-columns: minmax(180px, 0.62fr) minmax(0, 1fr);
  overflow: hidden;
}

.plant-product-grid img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  background: var(--surface-strong);
}

.plant-product-grid article:first-child img {
  object-fit: contain;
  object-position: center;
  padding: 22px;
  background: var(--white);
}

.plant-product-grid article > div:not(.plant-rfid-card) {
  padding: clamp(22px, 3vw, 30px);
}

.plant-product-grid h3 {
  margin: 0;
  color: var(--black);
  font-size: clamp(1.55rem, 2.8vw, 2.4rem);
  line-height: 1.06;
}

.plant-product-grid p:not(.card-kicker) {
  color: var(--ink-soft);
}

.plant-product-grid a {
  display: inline-flex;
  margin-top: 20px;
  color: var(--black);
  font-weight: 700;
}

.plant-product-grid a:hover {
  color: var(--orange);
}

.plant-rfid-card {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 12px;
  min-height: 360px;
  padding: 30px;
  color: var(--white);
  background:
    radial-gradient(circle at 50% 35%, rgba(253, 103, 16, 0.32), transparent 34%),
    linear-gradient(135deg, #111, #000);
}

.plant-rfid-card svg {
  width: 56px;
  height: 56px;
  color: var(--orange);
}

.plant-rfid-card strong {
  color: var(--white);
  font-size: clamp(3.2rem, 6vw, 5.2rem);
  line-height: 0.9;
}

.plant-rfid-card span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.04rem;
  font-weight: 700;
}

.plant-offer-card {
  padding: clamp(24px, 4vw, 34px);
  color: var(--black);
}

.plant-offer-card span {
  display: block;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 700;
  text-transform: uppercase;
}

.plant-offer-card strong {
  display: block;
  margin-top: 8px;
  color: var(--orange);
  font-size: clamp(4.8rem, 9vw, 7.8rem);
  line-height: 0.85;
}

.plant-offer-card small {
  display: block;
  margin: 8px 0 24px;
  color: var(--ink-soft);
  font-size: 1.12rem;
  font-weight: 700;
}

.rental-hero {
  overflow: hidden;
  padding-block: clamp(58px, 8vw, 104px);
  background: linear-gradient(90deg, var(--surface) 0%, var(--surface) 64%, rgba(255, 255, 255, 0.9) 100%);
  border-bottom: 1px solid var(--line);
}

.rental-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(440px, 1fr);
  align-items: center;
  gap: clamp(36px, 6vw, 78px);
}

.rental-hero h1 {
  max-width: 12ch;
  margin: 0;
  color: var(--black);
  font-size: clamp(3rem, 6.7vw, 5.8rem);
  font-weight: 700;
  line-height: 1;
}

.rental-proof-line {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.rental-proof-line span {
  min-height: 38px;
  padding: 9px 12px;
  color: var(--black);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: var(--shadow-soft);
  font-weight: 700;
}

.rental-hero-visual {
  display: grid;
  gap: 12px;
}

.rental-hero-visual img {
  width: 100%;
  aspect-ratio: 1.42 / 1;
  object-fit: cover;
  object-position: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

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

.rental-hero-strip div,
.rental-feature-grid article,
.rental-product-grid article,
.rental-outcome-grid article,
.rental-steps article {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.rental-hero-strip div {
  padding: 18px;
}

.rental-hero-strip strong,
.rental-hero-strip span {
  display: block;
}

.rental-hero-strip strong {
  color: var(--orange);
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  line-height: 1;
}

.rental-hero-strip span {
  margin-top: 6px;
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.35;
}

.rental-feature-grid,
.rental-product-grid,
.rental-outcome-grid,
.rental-steps {
  display: grid;
  gap: 18px;
}

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

.rental-feature-grid article,
.rental-outcome-grid article,
.rental-steps article {
  padding: clamp(22px, 3vw, 28px);
}

.rental-feature-grid svg {
  width: 34px;
  height: 34px;
  color: var(--orange);
}

.rental-feature-grid h3,
.rental-outcome-grid h3,
.rental-steps h3 {
  margin: 16px 0 8px;
  color: var(--black);
  font-size: 1.18rem;
  line-height: 1.18;
}

.rental-feature-grid p,
.rental-outcome-grid p,
.rental-steps p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.rental-workflow-band {
  padding-block: clamp(56px, 8vw, 88px);
  color: var(--white);
  background: var(--black);
}

.rental-workflow-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(460px, 1fr);
  align-items: start;
  gap: clamp(28px, 6vw, 78px);
}

.rental-workflow-band h2 {
  max-width: 12ch;
  margin: 0;
  color: var(--white);
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  line-height: 1;
}

.rental-workflow-band p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.08rem;
}

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

.rental-steps article {
  color: var(--black);
}

.rental-workflow-band .rental-steps p {
  color: var(--muted);
  font-size: 1rem;
}

.rental-steps span,
.rental-outcome-grid span {
  color: var(--orange);
  font-weight: 700;
}

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

.rental-product-grid article {
  display: grid;
  grid-template-columns: minmax(180px, 0.58fr) minmax(0, 1fr);
  overflow: hidden;
}

.rental-product-grid img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  padding: 24px;
  object-fit: contain;
  background: var(--white);
}

.rental-product-grid article > div:not(.rental-app-card) {
  padding: clamp(22px, 3vw, 30px);
}

.rental-product-grid h3 {
  margin: 0;
  color: var(--black);
  font-size: clamp(1.55rem, 2.8vw, 2.4rem);
  line-height: 1.06;
}

.rental-product-grid p:not(.card-kicker) {
  color: var(--ink-soft);
}

.rental-product-grid a {
  display: inline-flex;
  margin-top: 20px;
  color: var(--black);
  font-weight: 700;
}

.rental-product-grid a:hover {
  color: var(--orange);
}

.rental-app-card {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 14px;
  min-height: 340px;
  padding: 30px;
  color: var(--white);
  text-align: center;
  background:
    radial-gradient(circle at 50% 34%, rgba(253, 103, 16, 0.34), transparent 34%),
    linear-gradient(135deg, #111, #000);
}

.rental-app-card svg {
  width: 56px;
  height: 56px;
  color: var(--orange);
}

.rental-app-card strong {
  color: var(--white);
  font-size: clamp(2.2rem, 4vw, 3.7rem);
  line-height: 0.95;
}

.rental-app-card span {
  max-width: 22ch;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.35;
}

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

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.breadcrumb a {
  color: var(--black);
}

.breadcrumb a:hover {
  color: var(--orange);
}

.breadcrumb span::before {
  content: "/";
  margin-right: 8px;
  color: var(--grey);
}

.detail-section {
  padding-block: clamp(58px, 8vw, 92px);
}

.detail-content-grid,
.detail-columns {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.55fr);
  gap: clamp(24px, 5vw, 56px);
  align-items: start;
}

.detail-copy,
.detail-panel,
.detail-columns article,
.related-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.detail-copy,
.detail-panel,
.detail-columns article {
  padding: clamp(22px, 4vw, 34px);
}

.detail-copy h2 {
  max-width: 13ch;
  font-size: clamp(2rem, 3.6vw, 3.6rem);
  line-height: 1.04;
}

.detail-copy p:not(.eyebrow) {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.detail-copy p + p {
  margin-top: 16px;
}

.privacy-page .privacy-hero .hero-lede {
  max-width: 840px;
}

.privacy-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.privacy-meta span {
  display: inline-flex;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  padding: 8px 14px;
  color: var(--ink-soft);
  font-weight: 700;
}

.privacy-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.34fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: start;
}

.privacy-article {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: clamp(24px, 4vw, 44px);
}

.privacy-article h2 {
  display: block;
  width: 100%;
  max-width: none;
  margin-top: clamp(36px, 5vw, 54px);
  font-size: clamp(1.55rem, 2.4vw, 2.25rem);
  line-height: 1.1;
  text-wrap: wrap;
}

.privacy-article h2:first-child {
  margin-top: 0;
}

.privacy-article h3 {
  display: block;
  width: 100%;
  max-width: none;
  margin-top: 28px;
  font-size: 1.18rem;
  line-height: 1.25;
  text-wrap: wrap;
}

.privacy-article p,
.privacy-article li {
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.72;
}

.privacy-article ul {
  margin: 14px 0 0;
  padding-left: 22px;
}

.privacy-article li + li {
  margin-top: 8px;
}

.privacy-article strong {
  color: var(--black);
}

.privacy-contact-card {
  position: sticky;
  top: 110px;
  background: var(--black);
  border-radius: var(--radius);
  padding: clamp(22px, 3vw, 30px);
  color: var(--white);
}

.privacy-contact-card h2 {
  margin: 0 0 12px;
  color: var(--white);
  font-size: 1.45rem;
}

.privacy-contact-card p,
.privacy-contact-card li {
  color: rgba(255, 255, 255, 0.78);
}

.privacy-contact-card .button {
  margin-top: 18px;
}

.transport-media-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 18px;
}

.transport-media-card {
  display: grid;
  grid-template-rows: minmax(220px, 1fr) auto;
  margin: 0;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.transport-media-card-large {
  grid-row: span 2;
}

.transport-media-card img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 250px;
  object-fit: cover;
  background: var(--surface-strong);
}

.transport-media-card-large img {
  min-height: 540px;
  object-position: 24% center;
}

.transport-media-card figcaption {
  display: grid;
  gap: 6px;
  padding: clamp(18px, 3vw, 26px);
  border-top: 1px solid var(--line);
}

.transport-media-card strong {
  color: var(--black);
  font-size: 1.12rem;
  line-height: 1.18;
}

.transport-media-card span,
.transport-note p {
  color: var(--muted);
  line-height: 1.5;
}

.transport-note {
  margin-top: 22px;
  background: #fff7f2;
  border: 1px solid rgba(253, 103, 16, 0.24);
  border-radius: var(--radius);
  padding: clamp(18px, 3vw, 26px);
}

.transport-note p {
  margin: 0;
}

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

.founder-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(28px, 5vw, 64px);
}

.founder-photo {
  margin: 0;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.founder-photo img {
  display: block;
  width: 100%;
  height: min(70vh, 620px);
  object-fit: cover;
  object-position: center top;
}

.founder-copy {
  max-width: 780px;
}

.founder-copy h2 {
  margin: 0;
  color: var(--black);
  font-size: clamp(2.25rem, 4vw, 4rem);
  line-height: 1;
}

.founder-copy p:not(.eyebrow) {
  margin: 18px 0 0;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 1.4vw, 1.22rem);
  line-height: 1.65;
}

.detail-panel h2,
.detail-columns h2 {
  margin: 0;
  color: var(--black);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.05;
}

.dashcam-usecase-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  gap: clamp(22px, 4vw, 48px);
  align-items: start;
}

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

.dashcam-usecase-cards article,
.dashcam-software-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.dashcam-usecase-cards article {
  padding: clamp(20px, 3vw, 28px);
}

.dashcam-usecase-cards svg {
  width: 30px;
  height: 30px;
  color: var(--orange);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.dashcam-usecase-cards h3 {
  margin: 16px 0 10px;
  color: var(--black);
  font-size: 1.12rem;
  line-height: 1.18;
}

.dashcam-usecase-cards p {
  margin: 0;
  color: var(--muted);
  line-height: 1.48;
}

.dashcam-software-panel {
  display: grid;
  grid-template-rows: auto auto;
  margin: 0;
  overflow: hidden;
}

.dashcam-software-panel img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
  background: #f3f3f3;
}

.dashcam-software-panel-eagle img {
  background: #2b2b2b;
}

.dashcam-software-panel figcaption {
  display: grid;
  gap: 6px;
  padding: clamp(20px, 3vw, 28px);
  background: linear-gradient(135deg, var(--white), #f7f7f7);
  border-top: 1px solid var(--line);
}

.dashcam-software-panel strong {
  color: var(--black);
  font-size: 1.16rem;
  line-height: 1.18;
}

.dashcam-software-panel span {
  color: var(--muted);
  line-height: 1.45;
}

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

.related-card {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  overflow: hidden;
}

.related-card img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  background: var(--surface-strong);
}

.related-card > div {
  position: relative;
  z-index: 1;
  padding: 20px;
  background: var(--white);
}

.related-card h3 {
  margin: 0;
  color: var(--black);
  font-size: 1.28rem;
  line-height: 1.15;
}

.related-card p {
  margin: 10px 0 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.related-card a,
.compact-link-grid a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  color: var(--black);
  font-weight: 700;
}

.related-card a:hover,
.compact-link-grid a:hover {
  color: var(--orange);
}

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

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

.portal-link-grid article {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 260px;
  padding: clamp(22px, 3vw, 30px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.portal-link-grid span {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 30px;
  padding: 6px 10px;
  color: var(--black);
  background: rgba(253, 103, 16, 0.12);
  border: 1px solid rgba(253, 103, 16, 0.24);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
}

.portal-link-grid h3 {
  margin: 0;
  color: var(--black);
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  line-height: 1.1;
}

.portal-link-grid p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.5;
}

.portal-link-grid .button {
  align-self: end;
  justify-self: start;
  margin-top: 8px;
}

.customer-form-section {
  scroll-margin-top: calc(var(--header-height) + 24px);
}

.customer-form-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.customer-form-copy {
  padding: clamp(22px, 4vw, 34px);
  border-bottom: 1px solid var(--line);
}

.customer-form-copy h2 {
  max-width: 13ch;
  margin: 0;
  color: var(--black);
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.02;
}

.customer-form-copy p:not(.eyebrow) {
  max-width: 760px;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.customer-form-copy a {
  display: inline-flex;
  margin-top: 8px;
  color: var(--black);
  font-weight: 700;
}

.customer-form-copy a:hover {
  color: var(--orange);
}

.customer-form-card iframe {
  display: block;
  width: 100%;
  min-height: 1280px;
  background: var(--white);
  border: 0;
}

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

.compact-link-grid a {
  justify-content: space-between;
  min-height: 58px;
  margin: 0;
  padding: 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.button-on-dark {
  color: var(--black);
  background: var(--white);
  border-color: rgba(255, 255, 255, 0.28);
}

.button-on-dark:hover {
  color: var(--black);
  background: var(--orange);
  border-color: var(--orange);
}

.site-footer {
  color: rgba(255, 255, 255, 0.76);
  background: var(--black);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(220px, 1.15fr) repeat(3, minmax(130px, 0.52fr)) minmax(230px, 0.85fr);
  gap: 28px;
  padding-block: 46px;
}

.brand-footer img {
  width: 186px;
}

.site-footer h2 {
  margin: 0 0 12px;
  color: var(--white);
  font-size: 0.94rem;
}

.site-footer a {
  display: block;
  margin-top: 8px;
}

.site-footer a:hover {
  color: var(--orange);
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.site-footer .footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  margin-top: 0;
  padding: 7px 11px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 700;
}

.site-footer .footer-socials a:hover {
  color: var(--black);
  background: var(--orange);
  border-color: var(--orange);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-block: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 0.9rem;
}

@media (max-width: 1100px) {
  .site-header {
    grid-template-columns: auto auto 1fr;
  }

  .site-nav {
    justify-content: flex-end;
  }

  .header-cta {
    display: none;
  }

  .solution-grid,
  .compliance-grid,
  .trust-grid,
  .about-proof-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .product-card {
    grid-template-columns: 210px minmax(0, 1fr);
  }

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

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

  .sb-product-grid,
  .sb-product-pair {
    grid-template-columns: 1fr;
  }

  .sb-outcome-grid,
  .sb-answer-grid,
  .sb-benefit-grid,
  .sb-example-grid,
  .sb-package-grid,
  .sb-software-grid,
  .sb-week-grid,
  .sb-next-grid,
  .nfp-priority-grid,
  .nfp-product-grid,
  .nfp-workflow,
  .plant-process,
  .plant-feature-grid,
  .rental-feature-grid,
  .rental-outcome-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .plant-product-grid,
  .rental-product-grid {
    grid-template-columns: 1fr;
  }

  .dashcam-usecase-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 68px;
  }

  .site-header {
    grid-template-columns: auto 1fr auto;
    gap: 16px;
  }

  .brand img {
    width: 150px;
  }

  .menu-toggle {
    display: inline-grid;
    place-content: center;
    justify-self: end;
    grid-column: 3;
  }

  .site-nav {
    position: fixed;
    inset: var(--header-height) 0 auto 0;
    display: grid;
    justify-content: stretch;
    gap: 0;
    padding: 14px 20px 22px;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    transform: translateY(-130%);
    transition: transform 0.22s ease;
  }

  .nav-open .site-nav {
    transform: translateY(0);
  }

  .site-nav a {
    padding: 15px 10px;
    border-radius: 0;
    border-bottom: 1px solid var(--line);
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

  .hero {
    min-height: auto;
    background-position: 66% center;
    background-size: auto 100%;
  }

  .hero::before {
    background: linear-gradient(90deg, rgba(247, 247, 247, 0.96) 0%, rgba(247, 247, 247, 0.9) 58%, rgba(247, 247, 247, 0.42) 100%);
    -webkit-mask-image: none;
    mask-image: none;
  }

  .hero-inner {
    width: min(700px, calc(100% - 32px));
    margin-inline: auto;
    padding-block: 54px;
  }

  .proof-strip {
    grid-template-columns: 1fr;
    margin-top: 32px;
  }

  .outcome-grid,
  .split,
  .section-head,
  .product-feature,
  .cta-content,
  .contact-layout,
  .footer-grid,
  .detail-hero-grid,
  .error-hero-grid,
  .detail-content-grid,
  .detail-columns,
  .privacy-layout,
  .transport-media-grid,
  .founder-grid,
  .guide-grid,
  .sb-hero-grid,
  .sb-offer-grid,
  .nfp-hero-grid,
  .nfp-pool-grid,
  .proof-content-grid,
  .plant-hero-grid,
  .plant-battery-grid,
  .plant-offer-grid,
  .rental-hero-grid,
  .rental-workflow-grid {
    grid-template-columns: 1fr;
  }

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

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

  .sb-hero,
  .plant-hero {
    background: var(--surface);
  }

  .sb-hero h1 {
    max-width: 11ch;
  }

  .sb-hero-visual {
    min-height: auto;
  }

  .section-head {
    align-items: start;
  }

  .capability-list,
  .form-grid,
  .compliance-grid,
  .product-grid {
    grid-template-columns: 1fr;
  }

  .platform-capabilities article {
    min-height: auto;
  }

  .product-card {
    grid-template-columns: 230px minmax(0, 1fr);
  }

  .cta-content .button {
    justify-self: start;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .privacy-contact-card {
    position: static;
    order: -1;
  }

  .transport-media-card-large {
    grid-row: auto;
  }

  .transport-media-card-large img,
  .transport-media-card img {
    min-height: 260px;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .site-header {
    padding-inline: 14px;
  }

  .brand img {
    width: 136px;
  }

  .hero h1,
  .detail-hero h1,
  .section h2,
  .outcome-band h2,
  .cta-banner h2,
  .contact-layout h2 {
    font-size: clamp(2.25rem, 9.6vw, 3rem);
    line-height: 1.05;
    overflow-wrap: break-word;
    text-wrap: pretty;
  }

  .detail-hero h1 {
    max-width: 10.5ch;
  }

  .hero h1 {
    font-size: clamp(2.55rem, 10.8vw, 3.1rem);
  }

  .error-hero h1 {
    max-width: 10ch;
    font-size: clamp(2.4rem, 10vw, 3.2rem);
    line-height: 1.02;
  }

  .error-code {
    font-size: clamp(4.4rem, 20vw, 6.6rem);
  }

  .hero-inner {
    width: min(340px, calc(100% - 32px));
  }

  .hero-lede {
    max-width: 33ch;
  }

  .hero-lede {
    font-size: 1.04rem;
  }

  .button,
  .segmented-control button,
  .guide-prompts button {
    width: 100%;
  }

  .solution-grid,
  .compliance-grid,
  .trust-grid,
  .about-proof-grid {
    grid-template-columns: 1fr;
  }

  .solution-card > div,
  .compliance-card > div,
  .product-card > div,
  .trust-grid article {
    padding: 18px;
  }

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

  .product-card img {
    grid-row: 1;
    height: auto;
    min-height: 0;
    aspect-ratio: 1.5 / 1;
  }

  .product-card > div {
    grid-row: 2;
  }

  .product-card img.product-hero-image {
    aspect-ratio: 4 / 5;
  }

  .dashcam-usecase-cards {
    grid-template-columns: 1fr;
  }

  .dashcam-software-panel img {
    width: 100%;
  }

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

  .metric-row span {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .metric-row span:last-child {
    border-bottom: 0;
  }

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

  .contact-form-switcher,
  .related-grid,
  .compact-link-grid,
  .portal-link-grid,
  .portal-link-grid-wide,
  .error-link-grid,
  .review-grid,
  .sb-outcome-grid,
  .sb-answer-grid,
  .sb-benefit-grid,
  .sb-example-grid,
  .sb-package-grid,
  .sb-software-grid,
  .sb-week-grid,
  .sb-split-grid,
  .sb-compare-cards,
  .sb-next-grid,
  .sb-faq-grid,
  .nfp-priority-grid,
  .nfp-product-grid,
  .nfp-workflow,
  .nfp-hero-strip,
  .plant-hero-metrics,
  .plant-process,
  .plant-feature-grid,
  .plant-product-grid,
  .rental-hero-strip,
  .rental-feature-grid,
  .rental-product-grid,
  .rental-steps,
  .rental-outcome-grid {
    grid-template-columns: 1fr;
  }

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

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

  .client-logo-panel img {
    height: 64px;
    padding: 10px;
  }

  .related-card img {
    grid-row: 1;
    height: auto;
    min-height: 0;
    aspect-ratio: 1.5 / 1;
  }

  .related-card > div {
    grid-row: 2;
  }

  .sb-hero {
    padding-block: 48px;
    background: var(--surface);
  }

  .sb-hero h1 {
    max-width: 9.5ch;
    font-size: clamp(2.75rem, 11vw, 3.55rem);
    line-height: 1.03;
  }

  .sb-price-line strong,
  .sb-price-line span {
    width: 100%;
    justify-content: center;
  }

  .sb-hero-visual {
    display: grid;
    gap: 12px;
    min-height: auto;
  }

  .sb-software-screen {
    width: 100%;
    aspect-ratio: 1 / 1.08;
    object-position: center 38%;
  }

  .sb-hero-product-row {
    grid-template-columns: 1fr 1fr;
    width: 100%;
    margin-top: -22px;
  }

  .sb-hero-product-card {
    min-height: 108px;
    padding: 12px;
  }

  .sb-hero-product-card .sb-product-device {
    max-width: 160px;
  }

  .sb-hero-product-card .sb-product-camera {
    max-width: 124px;
  }

  .sb-product-grid article,
  .sb-product-pair article {
    grid-template-columns: 1fr;
  }

  .sb-product-grid article {
    grid-template-rows: auto 1fr;
  }

  .sb-product-media {
    min-height: 240px;
  }

  .sb-product-media-combo {
    grid-template-columns: 1fr;
  }

  .sb-product-grid img,
  .sb-product-pair img {
    height: auto;
    min-height: 0;
    aspect-ratio: 1.45 / 1;
  }

  .sb-offer-band h2 {
    font-size: clamp(2.35rem, 10.5vw, 3.25rem);
  }

  .nfp-hero {
    padding-block: 48px;
  }

  .nfp-hero h1,
  .nfp-pool-band h2 {
    font-size: clamp(2.5rem, 10.5vw, 3.35rem);
    line-height: 1.04;
  }

  .nfp-proof-line span {
    width: 100%;
    text-align: center;
  }

  .nfp-hero-strip img {
    height: auto;
    aspect-ratio: 1.45 / 1;
  }

  .nfp-pool-grid img {
    aspect-ratio: 1.35 / 1;
  }

  .plant-hero {
    padding-block: 48px;
  }

  .plant-hero h1,
  .plant-battery-band h2,
  .plant-offer-band h2 {
    font-size: clamp(2.45rem, 10.5vw, 3.35rem);
    line-height: 1.04;
  }

  .plant-price-line strong,
  .plant-price-line span {
    width: 100%;
    justify-content: center;
  }

  .plant-device-stage {
    min-height: auto;
    padding: 16px;
    gap: 10px;
  }

  .plant-device-stage img {
    width: 100%;
  }

  .plant-stage-badge {
    position: relative;
    inset: auto;
    width: 100%;
  }

  .plant-product-grid article {
    grid-template-columns: 1fr;
  }

  .plant-product-grid img,
  .plant-rfid-card {
    height: auto;
    min-height: 220px;
    aspect-ratio: 1.35 / 1;
  }

  .plant-product-grid article > div:not(.plant-rfid-card) {
    padding: 20px;
  }

  .plant-battery-card strong,
  .plant-offer-card strong {
    font-size: clamp(4rem, 16vw, 5.7rem);
  }

  .rental-hero {
    padding-block: 48px;
  }

  .rental-hero h1,
  .rental-workflow-band h2 {
    font-size: clamp(2.45rem, 10.5vw, 3.35rem);
    line-height: 1.04;
  }

  .rental-proof-line span {
    width: 100%;
    text-align: center;
  }

  .rental-hero-visual img {
    aspect-ratio: 1 / 1.03;
    object-position: center;
  }

  .rental-product-grid article {
    grid-template-columns: 1fr;
  }

  .rental-product-grid img,
  .rental-app-card {
    height: auto;
    min-height: 220px;
    aspect-ratio: 1.35 / 1;
  }

  .rental-product-grid article > div:not(.rental-app-card) {
    padding: 20px;
  }
}

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