:root {
  --navy-950: #061522;
  --navy-900: #071b2f;
  --navy-850: #0b243a;
  --navy-800: #0d2d48;
  --navy-700: #163f61;
  --blue-600: #0c72e8;
  --blue-500: #2587f4;
  --blue-100: #e8f2ff;
  --orange-500: #ff865c;
  --orange-100: #fff0e9;
  --mint-500: #32d0a0;
  --mint-100: #e4fbf3;
  --ink: #10253a;
  --ink-soft: #52677a;
  --ink-muted: #768796;
  --line: #dfe7ed;
  --line-dark: rgba(255, 255, 255, 0.14);
  --surface: #ffffff;
  --surface-soft: #f3f7fa;
  --surface-blue: #edf5fb;
  --shadow-sm: 0 8px 30px rgba(6, 28, 48, 0.08);
  --shadow-md: 0 18px 55px rgba(6, 28, 48, 0.13);
  --shadow-lg: 0 30px 80px rgba(3, 18, 34, 0.28);
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --shell: 1180px;
  --header-height: 78px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
  margin: 0;
  background: var(--surface);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

button,
input,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
}

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

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

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
summary:focus-visible {
  outline: 3px solid #64a9ff;
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  border-radius: 8px;
  background: #fff;
  color: var(--navy-900);
  font-weight: 800;
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

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

.section {
  padding: 112px 0;
}

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

.section-dark {
  position: relative;
  overflow: hidden;
  background: var(--navy-900);
  color: #fff;
}

.section-heading {
  max-width: 740px;
  margin-bottom: 54px;
}

.section-heading.centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading h2,
.two-column-heading h2,
.trust-intro h2,
.platform-copy h2,
.scope-heading h2,
.experience-copy h2,
.faq-intro h2,
.contact-copy h2 {
  margin-bottom: 20px;
  color: var(--navy-900);
  font-size: clamp(2.1rem, 4vw, 3.35rem);
  font-weight: 780;
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.section-heading > p:last-child,
.two-column-heading > p,
.trust-intro > p,
.platform-lead,
.scope-heading > p,
.experience-copy > p,
.faq-intro > p,
.contact-copy > p {
  color: var(--ink-soft);
  font-size: 1.075rem;
  line-height: 1.75;
}

.section-heading.light h2,
.contact-copy h2 {
  color: #fff;
}

.section-heading.light > p:last-child,
.contact-copy > p {
  color: #aebdca;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: #8cb8dc;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow span {
  width: 24px;
  height: 2px;
  background: var(--orange-500);
}

.eyebrow-dark {
  color: var(--blue-600);
}

.centered .eyebrow {
  justify-content: center;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 10px;
  font-size: 0.92rem;
  font-weight: 750;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button svg {
  width: 19px;
  fill: currentColor;
}

.button-primary {
  background: var(--orange-500);
  box-shadow: 0 12px 28px rgba(255, 134, 92, 0.22);
  color: #152333;
}

.button-primary:hover {
  background: #ff9873;
  box-shadow: 0 14px 34px rgba(255, 134, 92, 0.32);
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
}

.button-ghost:hover {
  border-color: rgba(255, 255, 255, 0.48);
  background: rgba(255, 255, 255, 0.08);
}

.button-ghost-dark {
  border-color: #becbd5;
  background: transparent;
  color: var(--navy-900);
}

.button-ghost-dark:hover {
  border-color: var(--blue-600);
  color: var(--blue-600);
}

.button-small {
  min-height: 42px;
  padding: 10px 16px;
  border-radius: 9px;
  background: var(--navy-900);
  color: #fff;
  font-size: 0.82rem;
}

.button-small:hover {
  background: var(--navy-700);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--blue-600);
  font-size: 0.95rem;
  font-weight: 780;
  text-decoration: none;
}

.text-link span {
  transition: transform 0.2s ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

/* Header */
.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  transition: background 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.site-header.scrolled {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 8px 28px rgba(9, 28, 45, 0.08);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 10px;
  color: #fff;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 10px;
  background: var(--orange-500);
  box-shadow: 0 8px 22px rgba(255, 134, 92, 0.2);
}

.brand-mark svg {
  width: 31px;
  fill: var(--navy-900);
}

.brand > span:last-child {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand strong {
  font-size: 1.05rem;
  letter-spacing: -0.03em;
}

.brand small {
  margin-top: 4px;
  color: #93acc0;
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.24em;
}

.site-header.scrolled .brand {
  color: var(--navy-900);
}

.site-header.scrolled .brand small {
  color: var(--ink-muted);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-left: auto;
}

.main-nav > a {
  position: relative;
  color: #b7c5d0;
  font-size: 0.82rem;
  font-weight: 650;
  text-decoration: none;
  transition: color 0.2s ease;
}

.main-nav > a:not(.client-link)::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: var(--orange-500);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.main-nav > a:hover,
.main-nav > a.active {
  color: #fff;
}

.main-nav > a:hover::after,
.main-nav > a.active::after {
  transform: scaleX(1);
}

.site-header.scrolled .main-nav > a {
  color: var(--ink-soft);
}

.site-header.scrolled .main-nav > a:hover,
.site-header.scrolled .main-nav > a.active {
  color: var(--navy-900);
}

.main-nav .client-link {
  display: none;
  align-items: center;
  gap: 5px;
}

.client-link svg {
  width: 14px;
  fill: currentColor;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 23px;
  height: 2px;
  margin: 5px auto;
  background: #fff;
  transition: transform 0.2s ease, opacity 0.2s ease, background 0.2s ease;
}

.site-header.scrolled .nav-toggle span {
  background: var(--navy-900);
}

/* Hero */
.hero {
  position: relative;
  min-height: 820px;
  overflow: hidden;
  padding-top: calc(var(--header-height) + 60px);
  background:
    radial-gradient(circle at 75% 36%, rgba(28, 102, 157, 0.25), transparent 32%),
    linear-gradient(125deg, #061522 0%, #071b2f 52%, #0a2740 100%);
  color: #fff;
}

.hero-grid-bg {
  position: absolute;
  inset: 0;
  opacity: 0.15;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(to bottom, black 15%, transparent 88%);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  pointer-events: none;
}

.hero-orb-one {
  top: -260px;
  right: -160px;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(62, 151, 220, 0.18);
  box-shadow: inset 0 0 140px rgba(37, 135, 244, 0.05);
}

.hero-orb-two {
  bottom: -430px;
  left: -290px;
  width: 780px;
  height: 780px;
  border: 1px solid rgba(255, 134, 92, 0.1);
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 0.94fr) minmax(520px, 1.06fr);
  gap: 62px;
}

.hero-copy {
  padding-bottom: 34px;
}

.hero h1 {
  max-width: 620px;
  margin-bottom: 24px;
  color: #fff;
  font-size: clamp(3rem, 5vw, 4.35rem);
  font-weight: 780;
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.hero h1 span {
  display: block;
  color: #9bb6c9;
}

.hero-lead {
  max-width: 615px;
  margin-bottom: 34px;
  color: #b6c6d2;
  font-size: 1.12rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
}

.hero-assurance {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px 10px;
  margin-bottom: 24px;
  color: #9fb2c0;
  font-size: 0.68rem;
  font-weight: 650;
  line-height: 1.45;
}

.hero-assurance > span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-assurance b {
  display: grid;
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: rgba(50, 208, 160, 0.15);
  color: var(--mint-500);
  font-size: 0.55rem;
  font-weight: 900;
}

.hero-assurance > span:not(:last-child)::after {
  width: 3px;
  height: 3px;
  margin-left: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  content: "";
}

.hero-proof {
  display: flex;
  gap: 0;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.hero-proof > div {
  display: flex;
  flex: 1 1 0;
  flex-direction: column;
  padding: 0 18px;
  border-left: 1px solid rgba(255, 255, 255, 0.13);
}

.hero-proof > div:first-child {
  padding-left: 0;
  border-left: 0;
}

.hero-proof strong {
  margin-bottom: 3px;
  color: #fff;
  font-size: 0.92rem;
}

.hero-proof span {
  color: #8299aa;
  font-size: 0.71rem;
  line-height: 1.35;
}

.hero-product {
  position: relative;
  width: 108%;
  min-width: 0;
  transform: perspective(1200px) rotateY(-3deg) rotateX(1deg);
  transform-origin: center left;
}

.product-glow {
  position: absolute;
  z-index: -1;
  inset: 10% 4%;
  border-radius: 50%;
  background: rgba(43, 132, 201, 0.2);
  filter: blur(55px);
}

.dashboard-window {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  background: #f7fafc;
  box-shadow: var(--shadow-lg);
  color: var(--ink);
}

.window-bar {
  display: grid;
  height: 43px;
  align-items: center;
  padding: 0 16px;
  border-bottom: 1px solid #dde6ed;
  background: #fff;
  grid-template-columns: 1fr auto 1fr;
}

.window-dots {
  display: flex;
  gap: 5px;
}

.window-dots i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #dbe3e9;
}

.window-dots i:first-child {
  background: var(--orange-500);
}

.window-title {
  color: #657785;
  font-size: 0.58rem;
  font-weight: 700;
}

.live-pill {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 5px;
  color: #617484;
  font-size: 0.5rem;
  font-weight: 700;
}

.live-pill i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange-500);
  box-shadow: 0 0 0 3px rgba(255, 134, 92, 0.13);
}

.dashboard-body {
  display: grid;
  min-height: 440px;
  grid-template-columns: 50px 1fr;
}

.dashboard-sidebar {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 18px;
  padding-top: 16px;
  background: var(--navy-900);
}

.mini-brand {
  display: grid;
  width: 27px;
  height: 27px;
  margin-bottom: 17px;
  place-items: center;
  border-radius: 7px;
  background: var(--orange-500);
  color: var(--navy-900);
  font-size: 0.58rem;
  font-weight: 900;
}

.dashboard-sidebar > span {
  position: relative;
  width: 15px;
  height: 15px;
  opacity: 0.42;
  border: 2px solid #b9c9d4;
  border-radius: 4px;
}

.dashboard-sidebar > span:nth-of-type(2) {
  border-radius: 50%;
}

.dashboard-sidebar > span:nth-of-type(3) {
  height: 12px;
  border-width: 0 0 2px 2px;
  border-radius: 0;
}

.dashboard-sidebar > span:nth-of-type(4) {
  border: 0;
  background: linear-gradient(to top, #b9c9d4 35%, transparent 35%);
}

.dashboard-sidebar > span.side-active {
  opacity: 1;
  border-color: var(--orange-500);
}

.dashboard-sidebar > span.side-active::before {
  position: absolute;
  top: 50%;
  left: -19px;
  width: 3px;
  height: 24px;
  border-radius: 0 3px 3px 0;
  background: var(--orange-500);
  content: "";
  transform: translateY(-50%);
}

.dashboard-main {
  min-width: 0;
  padding: 23px 22px;
}

.dash-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 18px;
}

.dash-heading div {
  display: flex;
  flex-direction: column;
}

.dash-heading small {
  margin-bottom: 1px;
  color: #7d8f9e;
  font-size: 0.52rem;
}

.dash-heading strong {
  color: var(--navy-900);
  font-size: 0.95rem;
  letter-spacing: -0.02em;
}

.dash-date {
  padding: 5px 8px;
  border: 1px solid #dce5eb;
  border-radius: 6px;
  background: #fff;
  color: #718391;
  font-size: 0.48rem;
  font-weight: 700;
}

.stat-row {
  display: grid;
  margin-bottom: 16px;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.stat-card {
  display: grid;
  padding: 12px 13px;
  border: 1px solid #dde7ee;
  border-radius: 10px;
  background: #fff;
  grid-template-columns: 1fr auto;
}

.stat-card span {
  color: #637686;
  font-size: 0.5rem;
  font-weight: 700;
}

.stat-card strong {
  grid-row: 1 / 3;
  grid-column: 2;
  align-self: center;
  color: var(--navy-900);
  font-size: 1.25rem;
}

.stat-card small {
  color: #92a0aa;
  font-size: 0.43rem;
}

.stat-card::before {
  width: 20px;
  height: 2px;
  margin-bottom: 5px;
  border-radius: 4px;
  background: var(--blue-500);
  content: "";
  grid-column: 1 / -1;
}

.stat-amber::before {
  background: #f3ac54;
}

.stat-mint::before {
  background: var(--mint-500);
}

.dash-panels {
  display: grid;
  grid-template-columns: 1.55fr 0.75fr;
  gap: 10px;
}

.incident-panel,
.availability-panel {
  padding: 13px;
  border: 1px solid #dde7ee;
  border-radius: 10px;
  background: #fff;
}

.panel-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 9px;
}

.panel-heading strong {
  font-size: 0.57rem;
}

.panel-heading span {
  color: var(--blue-600);
  font-size: 0.42rem;
  font-weight: 700;
}

.incident-row {
  display: grid;
  align-items: center;
  padding: 8px 0;
  border-top: 1px solid #edf1f4;
  grid-template-columns: 27px minmax(0, 1fr) auto;
  gap: 7px;
}

.vehicle-icon {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  border-radius: 6px;
  background: var(--orange-100);
  color: var(--orange-500);
  font-size: 0.54rem;
  font-weight: 900;
}

.vehicle-blue {
  background: var(--blue-100);
  color: var(--blue-500);
}

.vehicle-green {
  background: var(--mint-100);
  color: #18a378;
}

.incident-row > div {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.incident-row strong {
  overflow: hidden;
  font-size: 0.48rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.incident-row small {
  overflow: hidden;
  color: #8c9aa5;
  font-size: 0.4rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.status {
  padding: 3px 6px;
  border-radius: 20px;
  font-size: 0.36rem;
  font-weight: 800;
}

.status-amber {
  background: #fff3e1;
  color: #b16916;
}

.status-blue {
  background: var(--blue-100);
  color: var(--blue-600);
}

.status-green {
  background: var(--mint-100);
  color: #168765;
}

.donut {
  display: grid;
  width: 78px;
  height: 78px;
  margin: 17px auto 15px;
  place-items: center;
  border-radius: 50%;
  background: conic-gradient(var(--blue-500) 0 86%, #e5edf2 86% 100%);
}

.donut::before {
  position: absolute;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #fff;
  content: "";
}

.donut span {
  z-index: 1;
  font-size: 0.9rem;
  font-weight: 850;
}

.donut small {
  font-size: 0.45rem;
}

.legend {
  display: grid;
  align-items: center;
  padding: 5px 0;
  border-top: 1px solid #edf1f4;
  color: #748592;
  font-size: 0.42rem;
  grid-template-columns: 7px 1fr auto;
  gap: 4px;
}

.legend i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--blue-500);
}

.legend strong {
  color: var(--navy-900);
}

.legend-muted i {
  background: #d3dee5;
}

.activity-ticker {
  display: grid;
  align-items: center;
  margin-top: 10px;
  padding: 9px 10px;
  border: 1px solid #dbece7;
  border-radius: 8px;
  background: #f3fbf8;
  grid-template-columns: 25px 1fr auto;
  gap: 7px;
}

.tick-check {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 50%;
  background: var(--mint-500);
  color: #fff;
  font-size: 0.58rem;
  font-weight: 900;
}

.activity-ticker p {
  display: flex;
  margin: 0;
  flex-direction: column;
}

.activity-ticker strong {
  font-size: 0.47rem;
}

.activity-ticker small {
  color: #71858a;
  font-size: 0.4rem;
}

.activity-ticker > span:last-child {
  color: #7d918c;
  font-size: 0.4rem;
}

.floating-card {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 16px 40px rgba(3, 20, 35, 0.22);
  color: var(--ink);
  transform: rotateY(3deg);
}

.floating-card-one {
  top: 105px;
  right: -28px;
}

.floating-card-two {
  bottom: 42px;
  left: -31px;
}

.float-icon {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 8px;
  background: var(--mint-100);
  color: #15956f;
  font-size: 0.72rem;
  font-weight: 900;
}

.float-orange {
  background: var(--orange-100);
  color: #d35f36;
}

.floating-card p {
  display: flex;
  margin: 0;
  flex-direction: column;
}

.floating-card strong {
  font-size: 0.58rem;
}

.floating-card small {
  color: #82919c;
  font-size: 0.46rem;
}

.audience-bar {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  margin-top: 62px;
  padding: 22px 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 0;
  border-radius: 14px 14px 0 0;
  background: rgba(255, 255, 255, 0.035);
}

.audience-bar span {
  color: #748c9e;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.audience-bar p {
  margin: 0;
  color: #becbd5;
  font-size: 0.82rem;
  font-weight: 650;
}

.audience-bar i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--orange-500);
}

/* Trust */
.trust-section {
  padding: 100px 0 60px;
  background: #fff;
}

.trust-section + .pain-section {
  padding-top: 80px;
}

.trust-panel {
  display: grid;
  align-items: center;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 72px;
}

.trust-intro h2 {
  max-width: 520px;
  margin-bottom: 19px;
  color: var(--navy-900);
  font-size: clamp(2.1rem, 3.6vw, 3.1rem);
  font-weight: 780;
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.trust-intro > p {
  max-width: 550px;
  margin-bottom: 25px;
}

.trust-promise {
  display: grid;
  max-width: 550px;
  align-items: center;
  padding: 16px 18px;
  border: 1px solid #cfe9df;
  border-radius: 12px;
  background: #f2fbf8;
  grid-template-columns: 34px 1fr;
  gap: 11px;
}

.trust-promise > span {
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  border-radius: 50%;
  background: var(--mint-500);
  color: #08291f;
  font-size: 0.75rem;
  font-weight: 900;
}

.trust-promise p {
  display: flex;
  margin: 0;
  flex-direction: column;
  color: #516f65;
  font-size: 0.73rem;
  line-height: 1.5;
}

.trust-promise strong {
  color: #173e32;
  font-size: 0.79rem;
}

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

.trust-card {
  display: grid;
  min-height: 172px;
  align-content: start;
  padding: 24px 22px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: var(--surface-soft);
  grid-template-columns: 43px 1fr;
  gap: 13px;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.trust-card:hover {
  border-color: #c5d6e1;
  box-shadow: var(--shadow-sm);
  transform: translateY(-3px);
}

.trust-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 11px;
  background: var(--navy-900);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.trust-icon-orange {
  background: var(--orange-100);
  color: #be512d;
}

.trust-icon-mint {
  background: var(--mint-100);
  color: #15825f;
}

.trust-icon-blue {
  background: var(--blue-100);
  color: var(--blue-600);
}

.trust-card h3 {
  margin-bottom: 7px;
  color: var(--navy-900);
  font-size: 0.94rem;
  letter-spacing: -0.02em;
  line-height: 1.35;
}

.trust-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.77rem;
  line-height: 1.58;
}

/* Pain section */
.two-column-heading {
  display: grid;
  align-items: end;
  margin-bottom: 50px;
  grid-template-columns: 1fr 0.75fr;
  gap: 80px;
}

.two-column-heading h2 {
  max-width: 650px;
  margin-bottom: 0;
}

.two-column-heading > p {
  margin-bottom: 5px;
}

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

.pain-card {
  position: relative;
  min-height: 285px;
  padding: 34px 32px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.pain-card:hover {
  border-color: #c8d6df;
  box-shadow: var(--shadow-sm);
  transform: translateY(-5px);
}

.card-number {
  position: absolute;
  top: 26px;
  right: 27px;
  color: #d5dfe6;
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.1em;
}

.card-icon {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 27px;
  place-items: center;
  border-radius: 13px;
}

.card-icon svg {
  width: 23px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.card-icon-orange {
  background: var(--orange-100);
  color: #db6137;
}

.card-icon-blue {
  background: var(--blue-100);
  color: var(--blue-600);
}

.card-icon-green {
  background: var(--mint-100);
  color: #168765;
}

.pain-card h3 {
  margin-bottom: 12px;
  color: var(--navy-900);
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}

.pain-card p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.7;
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-card {
  position: relative;
  padding: 30px;
  overflow: hidden;
  border: 1px solid #dbe5ec;
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: 0 3px 0 rgba(9, 37, 60, 0.02);
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card::after {
  position: absolute;
  right: -55px;
  bottom: -55px;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: var(--blue-100);
  content: "";
  opacity: 0;
  transition: opacity 0.25s ease;
}

.service-card:hover {
  border-color: #bed3e2;
  box-shadow: var(--shadow-sm);
  transform: translateY(-4px);
}

.service-card:hover::after {
  opacity: 0.7;
}

.service-icon {
  display: grid;
  width: 45px;
  height: 45px;
  margin-bottom: 24px;
  place-items: center;
  border-radius: 12px;
  background: var(--navy-900);
  color: #fff;
  box-shadow: 0 8px 18px rgba(7, 27, 47, 0.14);
}

.service-icon svg {
  width: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.service-card h3 {
  margin-bottom: 11px;
  color: var(--navy-900);
  font-size: 1.08rem;
  letter-spacing: -0.02em;
}

.service-card > p {
  min-height: 74px;
  margin-bottom: 18px;
  color: var(--ink-soft);
  font-size: 0.9rem;
  line-height: 1.65;
}

.service-card > span {
  position: relative;
  z-index: 1;
  color: var(--blue-600);
  font-size: 0.74rem;
  font-weight: 750;
}

.service-card > span b {
  display: inline-block;
  margin-left: 3px;
  transition: transform 0.2s ease;
}

.service-card:hover > span b {
  transform: translateX(4px);
}

/* Platform */
.platform-layout {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 0.9fr;
  gap: 100px;
}

.platform-visual {
  position: relative;
  min-height: 570px;
  padding: 35px 48px;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 10% 10%, rgba(74, 150, 208, 0.17), transparent 32%),
    var(--navy-900);
}

.platform-visual::before {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 35px 35px;
  content: "";
}

.visual-demo-label {
  position: absolute;
  z-index: 4;
  top: 14px;
  right: 16px;
  padding: 6px 9px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  background: rgba(7, 27, 47, 0.78);
  color: #c6d5df;
  font-size: 0.5rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.phone-shadow {
  position: absolute;
  right: 12%;
  bottom: 3%;
  width: 62%;
  height: 65%;
  border-radius: 50%;
  background: rgba(17, 86, 139, 0.42);
  filter: blur(40px);
}

.workflow-card {
  position: relative;
  z-index: 1;
  width: min(100%, 390px);
  min-height: 500px;
  margin: 0 auto;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 19px;
  background: #fff;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
  transform: rotate(-1.4deg);
}

.workflow-top {
  display: grid;
  align-items: center;
  margin-bottom: 22px;
  grid-template-columns: 32px 1fr auto;
  gap: 9px;
}

.workflow-top > div {
  display: flex;
  flex-direction: column;
}

.workflow-top small {
  color: var(--blue-600);
  font-size: 0.52rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.workflow-top strong {
  color: var(--navy-900);
  font-size: 0.87rem;
}

.back-arrow,
.more-dots {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 8px;
  background: var(--surface-soft);
  color: var(--ink-soft);
  font-size: 0.75rem;
  font-weight: 800;
}

.more-dots {
  background: transparent;
  letter-spacing: 2px;
}

.vehicle-summary {
  display: grid;
  align-items: center;
  margin-bottom: 22px;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface-soft);
  grid-template-columns: 38px 1fr auto;
  gap: 9px;
}

.vehicle-avatar {
  display: grid;
  width: 35px;
  height: 35px;
  place-items: center;
  border-radius: 9px;
  background: var(--blue-100);
  color: var(--blue-600);
  font-size: 0.75rem;
  font-weight: 900;
}

.vehicle-summary > div {
  display: flex;
  flex-direction: column;
}

.vehicle-summary small {
  color: var(--ink-muted);
  font-size: 0.49rem;
}

.vehicle-summary strong {
  color: var(--navy-900);
  font-size: 0.75rem;
}

.timeline {
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
}

.timeline li {
  position: relative;
  display: grid;
  min-height: 56px;
  grid-template-columns: 30px 1fr;
  gap: 10px;
}

.timeline li:not(:last-child)::after {
  position: absolute;
  top: 24px;
  bottom: -2px;
  left: 10px;
  width: 1px;
  background: #dbe4ea;
  content: "";
}

.timeline li > span {
  position: relative;
  z-index: 1;
  display: grid;
  width: 21px;
  height: 21px;
  place-items: center;
  border: 2px solid #d6e0e7;
  border-radius: 50%;
  background: #fff;
  color: #fff;
  font-size: 0.55rem;
  font-weight: 900;
}

.timeline li.complete > span {
  border-color: var(--mint-500);
  background: var(--mint-500);
}

.timeline li.active > span {
  border: 5px solid #ffe4d9;
  background: var(--orange-500);
}

.timeline li > div {
  display: flex;
  flex-direction: column;
  padding-top: 1px;
}

.timeline strong {
  color: #647785;
  font-size: 0.7rem;
}

.timeline .complete strong,
.timeline .active strong {
  color: var(--navy-900);
}

.timeline small {
  color: #9aa7b0;
  font-size: 0.53rem;
}

.workflow-note {
  display: grid;
  align-items: center;
  padding: 11px;
  border-radius: 9px;
  background: var(--blue-100);
  grid-template-columns: 28px 1fr;
  gap: 8px;
}

.workflow-note > span {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  border-radius: 50%;
  background: var(--blue-500);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 850;
}

.workflow-note p {
  display: flex;
  margin: 0;
  flex-direction: column;
}

.workflow-note strong {
  color: var(--navy-900);
  font-size: 0.62rem;
}

.workflow-note small {
  color: #56738b;
  font-size: 0.52rem;
}

.audit-card {
  position: absolute;
  z-index: 2;
  right: 13px;
  bottom: 48px;
  display: grid;
  width: 245px;
  align-items: center;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: var(--shadow-md);
  grid-template-columns: 65px 1fr;
  gap: 10px;
  transform: rotate(2deg);
}

.audit-thumb {
  display: grid;
  width: 65px;
  height: 52px;
  place-items: center;
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(8, 31, 50, 0.1), rgba(8, 31, 50, 0.65)),
    linear-gradient(45deg, #6d8493, #c8d7df);
}

.audit-thumb span {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: var(--navy-900);
  font-size: 0.47rem;
}

.audit-card > div:last-child {
  display: flex;
  flex-direction: column;
}

.audit-card small {
  color: var(--blue-600);
  font-size: 0.4rem;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.audit-card strong {
  color: var(--navy-900);
  font-size: 0.65rem;
}

.audit-card > div:last-child span {
  color: var(--ink-muted);
  font-size: 0.47rem;
}

.platform-lead {
  margin-bottom: 32px;
}

.check-list {
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: grid;
  padding: 15px 0;
  border-top: 1px solid var(--line);
  grid-template-columns: 28px 1fr;
  gap: 12px;
}

.check-list li > span {
  display: grid;
  width: 24px;
  height: 24px;
  margin-top: 1px;
  place-items: center;
  border-radius: 50%;
  background: var(--mint-100);
  color: #168765;
  font-size: 0.7rem;
  font-weight: 900;
}

.check-list li > div {
  display: flex;
  flex-direction: column;
}

.check-list strong {
  margin-bottom: 3px;
  color: var(--navy-900);
  font-size: 0.92rem;
}

.check-list p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.82rem;
  line-height: 1.55;
}

.platform-data-note {
  display: grid;
  align-items: start;
  margin: -10px 0 24px;
  padding: 14px 15px;
  border: 1px solid #d8e7f2;
  border-radius: 10px;
  background: #f3f8fc;
  grid-template-columns: 26px 1fr;
  gap: 10px;
}

.platform-data-note > span {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 50%;
  background: var(--blue-500);
  color: #fff;
  font-size: 0.63rem;
  font-weight: 850;
}

.platform-data-note > div {
  display: flex;
  flex-direction: column;
}

.platform-data-note strong {
  margin-bottom: 3px;
  color: var(--navy-900);
  font-size: 0.76rem;
}

.platform-data-note p {
  margin: 0;
  color: #587188;
  font-size: 0.68rem;
  line-height: 1.5;
}

/* Process */
.process::before {
  position: absolute;
  top: -220px;
  left: 50%;
  width: 700px;
  height: 500px;
  border-radius: 50%;
  background: rgba(30, 105, 161, 0.16);
  content: "";
  filter: blur(80px);
  transform: translateX(-50%);
}

.process .shell {
  position: relative;
}

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

.process-step {
  position: relative;
  min-height: 235px;
  padding: 0 36px 0 0;
}

.process-step:not(:first-child) {
  padding-left: 30px;
}

.step-number {
  display: grid;
  width: 56px;
  height: 56px;
  margin-bottom: 29px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  color: var(--orange-500);
  font-size: 0.77rem;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.step-line {
  position: absolute;
  top: 28px;
  right: -2px;
  left: 70px;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.06));
}

.step-line::after {
  position: absolute;
  top: -3px;
  right: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  content: "";
}

.process-step h3 {
  margin-bottom: 11px;
  color: #fff;
  font-size: 1.08rem;
  letter-spacing: -0.02em;
}

.process-step p {
  margin: 0;
  color: #98acbb;
  font-size: 0.86rem;
  line-height: 1.7;
}

/* Plans */
.plan-grid {
  display: grid;
  align-items: stretch;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.plan-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: 0 4px 0 rgba(7, 27, 47, 0.025);
}

.plan-featured {
  position: relative;
  border-color: var(--navy-900);
  box-shadow: 0 18px 55px rgba(7, 27, 47, 0.14);
  transform: translateY(-10px);
}

.popular-label {
  padding: 8px 14px;
  background: var(--navy-900);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-align: center;
}

.plan-top {
  min-height: 273px;
  padding: 31px 30px 27px;
  border-bottom: 1px solid var(--line);
}

.plan-label {
  margin-bottom: 9px;
  color: var(--blue-600);
  font-size: 0.62rem;
  font-weight: 850;
  letter-spacing: 0.13em;
}

.plan-top h3 {
  margin-bottom: 10px;
  color: var(--navy-900);
  font-size: 1.6rem;
  letter-spacing: -0.04em;
}

.plan-top > p:not(.plan-label) {
  min-height: 68px;
  margin-bottom: 21px;
  color: var(--ink-soft);
  font-size: 0.84rem;
  line-height: 1.6;
}

.price {
  display: grid;
  align-items: baseline;
  grid-template-columns: auto auto 1fr;
  gap: 7px;
}

.price span {
  color: var(--ink-muted);
  font-size: 0.64rem;
}

.price strong {
  color: var(--navy-900);
  font-size: 2rem;
  letter-spacing: -0.05em;
}

.price small {
  color: var(--ink-muted);
  font-size: 0.64rem;
}

.plan-body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  padding: 25px 30px 30px;
}

.includes {
  margin-bottom: 16px;
  color: var(--navy-900);
  font-size: 0.74rem;
  font-weight: 800;
}

.plan-body ul {
  margin: 0 0 23px;
  padding: 0;
  list-style: none;
}

.plan-body li {
  display: grid;
  padding: 6px 0;
  color: var(--ink-soft);
  font-size: 0.8rem;
  grid-template-columns: 19px 1fr;
  gap: 7px;
}

.plan-body li span {
  color: #168765;
  font-weight: 900;
}

.plan-extra {
  min-height: 38px;
  margin-top: auto;
  margin-bottom: 17px;
  color: var(--ink-muted);
  font-size: 0.68rem;
  line-height: 1.45;
}

.button-plan {
  width: 100%;
  border-color: var(--navy-900);
  color: var(--navy-900);
}

.button-plan:hover {
  background: var(--navy-900);
  color: #fff;
}

.button-plan.button-primary {
  border-color: var(--orange-500);
}

.button-plan.button-primary:hover {
  border-color: #ff9873;
  background: #ff9873;
  color: #152333;
}

.pricing-note {
  display: flex;
  max-width: 900px;
  align-items: flex-start;
  gap: 12px;
  margin-top: 38px;
  padding: 17px 20px;
  border: 1px solid #d7e6f1;
  border-radius: 11px;
  background: #f4f9fd;
}

.pricing-note > span {
  display: grid;
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--blue-500);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 850;
}

.pricing-note p {
  margin: 0;
  color: #536d80;
  font-size: 0.76rem;
  line-height: 1.6;
}

/* Scope */
.scope-layout {
  display: grid;
  align-items: center;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 70px;
}

.scope-start {
  display: grid;
  align-items: start;
  margin-top: 24px;
  padding: 13px 15px;
  border: 1px solid #d5e4ee;
  border-radius: 10px;
  background: #fff;
  color: #536c7d !important;
  font-size: 0.76rem !important;
  line-height: 1.55 !important;
  grid-template-columns: 24px 1fr;
  gap: 9px;
}

.scope-start span {
  display: grid;
  width: 23px;
  height: 23px;
  place-items: center;
  border-radius: 7px;
  background: var(--blue-100);
  color: var(--blue-600);
  font-weight: 850;
}

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

.scope-card {
  min-height: 340px;
  padding: 29px 27px;
  border-radius: var(--radius-md);
}

.scope-us {
  background: var(--navy-900);
  color: #fff;
}

.scope-you {
  border: 1px solid #d7e2e9;
  background: #fff;
}

.scope-label {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 27px;
  color: #94a9b8;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.scope-label span {
  display: grid;
  min-width: 31px;
  height: 31px;
  padding: 0 5px;
  place-items: center;
  border-radius: 8px;
  background: var(--orange-500);
  color: var(--navy-900);
  font-size: 0.62rem;
  font-weight: 900;
}

.scope-you .scope-label {
  color: var(--ink-muted);
}

.scope-you .scope-label span {
  background: var(--blue-100);
  color: var(--blue-600);
}

.scope-card h3 {
  margin-bottom: 20px;
  font-size: 1.24rem;
  letter-spacing: -0.025em;
}

.scope-you h3 {
  color: var(--navy-900);
}

.scope-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.scope-card li {
  display: grid;
  padding: 9px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #afbfca;
  font-size: 0.8rem;
  grid-template-columns: 19px 1fr;
  gap: 7px;
}

.scope-you li {
  border-color: var(--line);
  color: var(--ink-soft);
}

.scope-card li span {
  color: var(--mint-500);
  font-weight: 900;
}

.scope-you li span {
  color: var(--blue-600);
}

/* Experience */
.experience-layout {
  display: grid;
  align-items: center;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 85px;
}

.experience-number {
  position: relative;
  display: flex;
  min-height: 420px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(255, 134, 92, 0.86), rgba(255, 134, 92, 0.34)),
    var(--navy-900);
}

.experience-number::before,
.experience-number::after {
  position: absolute;
  width: 250px;
  height: 250px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  content: "";
}

.experience-number::before {
  top: -90px;
  right: -80px;
}

.experience-number::after {
  bottom: -120px;
  left: -100px;
  width: 340px;
  height: 340px;
}

.experience-number span {
  position: relative;
  z-index: 1;
  color: #fff;
  font-size: 12rem;
  font-weight: 800;
  letter-spacing: -0.1em;
  line-height: 1;
}

.experience-number small {
  position: relative;
  z-index: 1;
  margin-top: 105px;
  color: var(--navy-900);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  writing-mode: vertical-rl;
}

.experience-copy {
  max-width: 610px;
}

.experience-copy blockquote {
  margin: 31px 0;
  padding: 22px 25px;
  border-left: 3px solid var(--orange-500);
  background: var(--surface-soft);
  color: var(--navy-800);
  font-size: 1rem;
  font-weight: 650;
  line-height: 1.65;
}

/* FAQ */
.faq-layout {
  display: grid;
  align-items: start;
  grid-template-columns: 0.65fr 1.35fr;
  gap: 85px;
}

.faq-intro {
  position: sticky;
  top: calc(var(--header-height) + 35px);
}

.faq-intro .button {
  margin-top: 12px;
}

.faq-list {
  border-top: 1px solid #ccd8e0;
}

.faq-list details {
  border-bottom: 1px solid #ccd8e0;
}

.faq-list summary {
  position: relative;
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 19px 3px;
  color: var(--navy-900);
  font-size: 0.98rem;
  font-weight: 750;
  list-style: none;
  cursor: pointer;
}

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

.faq-list summary span {
  position: relative;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 3px 10px rgba(6, 28, 48, 0.07);
}

.faq-list summary span::before,
.faq-list summary span::after {
  position: absolute;
  top: 13px;
  left: 8px;
  width: 12px;
  height: 2px;
  background: var(--blue-600);
  content: "";
  transition: transform 0.2s ease;
}

.faq-list summary span::after {
  transform: rotate(90deg);
}

.faq-list details[open] summary span::after {
  transform: rotate(0);
}

.faq-list details p {
  max-width: 670px;
  margin: -2px 0 24px;
  padding-right: 45px;
  color: var(--ink-soft);
  font-size: 0.88rem;
  line-height: 1.75;
}

/* Contact */
.contact {
  padding-bottom: 125px;
}

.contact-orb {
  position: absolute;
  top: -250px;
  left: -170px;
  width: 600px;
  height: 600px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  box-shadow: inset 0 0 180px rgba(37, 135, 244, 0.07);
}

.contact-layout {
  position: relative;
  display: grid;
  align-items: center;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 90px;
}

.contact-copy ul {
  margin: 30px 0;
  padding: 0;
  list-style: none;
}

.contact-copy li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 11px 0;
  color: #c1ced7;
  font-size: 0.88rem;
}

.contact-copy li span {
  display: grid;
  width: 29px;
  height: 29px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  color: var(--orange-500);
  font-size: 0.65rem;
  font-weight: 800;
}

.contact-copy .contact-note {
  max-width: 460px;
  margin: 30px 0 0;
  padding: 13px 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.04);
  color: #8ea3b3;
  font-size: 0.73rem;
  line-height: 1.55;
}

.contact-email {
  margin: 17px 0 0;
  color: #aebeca;
  font-size: 0.77rem;
  line-height: 1.65;
}

.contact-email a {
  display: block;
  width: fit-content;
  color: #fff;
  font-weight: 750;
  overflow-wrap: anywhere;
  text-underline-offset: 4px;
}

.contact-email a:hover {
  color: var(--orange-400);
}

.form-card {
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: 0 28px 75px rgba(0, 0, 0, 0.28);
  color: var(--ink);
}

.form-heading {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 25px;
}

.form-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 11px;
  background: var(--orange-100);
  color: #d35f36;
  font-size: 1.1rem;
  font-weight: 800;
}

.form-heading h3 {
  margin: 0 0 1px;
  color: var(--navy-900);
  font-size: 1.12rem;
}

.form-heading p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.72rem;
}

.field-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 13px;
}

.field {
  margin-bottom: 15px;
}

.field label {
  display: block;
  margin-bottom: 6px;
  color: var(--navy-900);
  font-size: 0.72rem;
  font-weight: 750;
}

.field label em {
  color: #c8462f;
  font-style: normal;
}

.field input,
.field select {
  width: 100%;
  height: 47px;
  padding: 0 13px;
  border: 1px solid #cbd7df;
  border-radius: 8px;
  outline: 0;
  background: #fff;
  color: var(--navy-900);
  font-size: 0.82rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.field select {
  padding-right: 33px;
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, #6e8190 50%), linear-gradient(135deg, #6e8190 50%, transparent 50%);
  background-position: calc(100% - 17px) 20px, calc(100% - 12px) 20px;
  background-repeat: no-repeat;
  background-size: 5px 5px, 5px 5px;
}

.field input:focus,
.field select:focus {
  border-color: var(--blue-500);
  box-shadow: 0 0 0 3px rgba(37, 135, 244, 0.12);
}

.field.has-error input,
.field.has-error select {
  border-color: #d85c45;
  box-shadow: 0 0 0 3px rgba(216, 92, 69, 0.09);
}

.field-error {
  display: block;
  min-height: 16px;
  padding-top: 3px;
  color: #bd3b28;
  font-size: 0.62rem;
  line-height: 1.3;
}

.privacy-summary {
  margin: 1px 0 18px;
  padding: 11px 13px;
  border-radius: 8px;
  background: var(--surface-soft);
  color: var(--ink-soft);
  font-size: 0.62rem;
  line-height: 1.5;
}

.privacy-summary strong {
  display: block;
  margin-bottom: 2px;
  color: var(--navy-900);
  font-size: 0.65rem;
}

.privacy-summary p {
  margin: 0 0 7px;
}

.privacy-summary p:last-of-type {
  margin-bottom: 0;
}

.privacy-link {
  margin-top: 8px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--blue-600);
  font: inherit;
  font-weight: 750;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}

.privacy-link:hover {
  color: var(--navy-900);
}

.form-submit {
  width: 100%;
}

.form-status {
  min-height: 18px;
  margin: 9px 0 0;
  color: var(--ink-soft);
  font-size: 0.67rem;
  text-align: center;
}

/* Footer */
.site-footer {
  padding-top: 65px;
  background: var(--navy-950);
  color: #fff;
}

.footer-top {
  display: grid;
  align-items: start;
  padding-bottom: 50px;
  grid-template-columns: 0.7fr 1fr 1.6fr;
  gap: 45px;
}

.brand-footer {
  color: #fff;
}

.footer-top > p {
  color: #8fa4b4;
  font-size: 0.82rem;
  line-height: 1.7;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.footer-links > div {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.footer-links strong {
  margin-bottom: 5px;
  color: #fff;
  font-size: 0.68rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.footer-links a {
  color: #8fa4b4;
  font-size: 0.75rem;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
  margin: 0;
  color: #6f8798;
  font-size: 0.67rem;
}

.footer-bottom > div {
  display: flex;
  gap: 18px;
}

.footer-legal {
  padding: 0;
  border: 0;
  background: transparent;
  color: #8299aa;
  font-size: 0.67rem;
  cursor: pointer;
}

.footer-legal:hover {
  color: #fff;
  text-decoration: underline;
}

.prototype-flag {
  position: fixed;
  z-index: 900;
  right: 16px;
  bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 11px;
  border: 1px solid #f2cf7b;
  border-radius: 8px;
  background: #fff9e9;
  box-shadow: var(--shadow-sm);
  color: #725718;
  font-size: 0.63rem;
  font-weight: 650;
}

.prototype-flag span {
  padding: 2px 5px;
  border-radius: 4px;
  background: #f0b83e;
  color: #332606;
  font-size: 0.52rem;
  font-weight: 900;
  letter-spacing: 0.07em;
}

/* Dialogs */
dialog {
  width: min(calc(100% - 32px), 560px);
  padding: 38px;
  border: 0;
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: 0 40px 100px rgba(4, 18, 31, 0.38);
  color: var(--ink);
}

dialog::backdrop {
  background: rgba(4, 18, 31, 0.72);
  backdrop-filter: blur(5px);
}

.dialog-close {
  position: absolute;
  top: 12px;
  right: 14px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: var(--surface-soft);
  color: var(--ink-soft);
  font-size: 1.4rem;
  cursor: pointer;
}

.dialog-icon {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  place-items: center;
  border-radius: 50%;
  background: var(--mint-100);
  color: #168765;
  font-size: 1.1rem;
  font-weight: 900;
}

dialog h2 {
  margin-bottom: 10px;
  color: var(--navy-900);
  font-size: 1.65rem;
  letter-spacing: -0.035em;
}

dialog > p {
  color: var(--ink-soft);
  font-size: 0.87rem;
  line-height: 1.65;
}

.request-summary {
  margin: 20px 0;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface-soft);
  white-space: pre-line;
  color: var(--navy-900);
  font-size: 0.78rem;
  line-height: 1.7;
}

.dialog-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.copy-status {
  min-height: 18px;
  margin: 8px 0 0;
  color: #168765;
  font-size: 0.7rem;
}

/* Progressive reveal */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-short {
  transition-delay: 0.08s;
}

.reveal-delay,
.reveal-delay-long {
  transition-delay: 0.16s;
}

/* Responsive */
@media (max-width: 1120px) {
  .main-nav {
    gap: 18px;
  }

  .main-nav > a {
    font-size: 0.76rem;
  }

  .hero-layout {
    grid-template-columns: minmax(0, 0.9fr) minmax(470px, 1.1fr);
    gap: 38px;
  }

  .hero-product {
    width: 105%;
  }

  .platform-layout {
    gap: 60px;
  }

  .scope-layout,
  .experience-layout,
  .faq-layout,
  .contact-layout {
    gap: 55px;
  }

  .plan-top,
  .plan-body {
    padding-right: 24px;
    padding-left: 24px;
  }
}

@media (max-width: 980px) {
  :root {
    --header-height: 70px;
  }

  .section {
    padding: 90px 0;
  }

  .header-cta {
    display: none;
  }

  .nav-toggle {
    position: relative;
    z-index: 2;
    display: block;
    margin-left: auto;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .main-nav {
    position: fixed;
    z-index: 1;
    inset: 0;
    display: flex;
    align-items: stretch;
    justify-content: center;
    flex-direction: column;
    gap: 0;
    padding: 105px max(25px, calc((100vw - 660px) / 2)) 40px;
    background: var(--navy-900);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .main-nav.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-nav > a,
  .site-header.scrolled .main-nav > a {
    padding: 14px 2px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 1.25rem;
  }

  .main-nav > a::after {
    display: none;
  }

  .main-nav .client-link {
    display: flex;
    margin-top: 20px;
    border-bottom: 0;
    color: var(--orange-500);
    font-size: 0.93rem;
  }

  .site-header.nav-active,
  .site-header.nav-active.scrolled {
    border-color: transparent;
    background: var(--navy-900);
    box-shadow: none;
  }

  .site-header.nav-active .brand {
    color: #fff;
  }

  .site-header.nav-active .brand small {
    color: #93acc0;
  }

  .site-header.nav-active .nav-toggle span {
    background: #fff;
  }

  .hero {
    padding-top: calc(var(--header-height) + 70px);
  }

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

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

  .hero h1 {
    max-width: 780px;
  }

  .hero-product {
    width: min(100%, 750px);
    margin: 5px auto 0;
    transform: none;
  }

  .floating-card {
    transform: none;
  }

  .audience-bar {
    margin-top: 50px;
  }

  .two-column-heading {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .two-column-heading > p {
    max-width: 700px;
  }

  .trust-panel {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .trust-intro {
    max-width: 740px;
  }

  .platform-layout {
    grid-template-columns: 1fr;
    gap: 58px;
  }

  .platform-visual {
    width: min(100%, 690px);
    margin: 0 auto;
  }

  .platform-copy {
    max-width: 730px;
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 45px 0;
  }

  .process-step:nth-child(2) .step-line {
    display: none;
  }

  .process-step:nth-child(3) {
    padding-left: 0;
  }

  .plan-grid {
    max-width: 720px;
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .plan-featured {
    transform: none;
  }

  .plan-top {
    min-height: 0;
  }

  .plan-top > p:not(.plan-label) {
    min-height: 0;
  }

  .plan-body ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 20px;
  }

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

  .scope-heading {
    max-width: 720px;
  }

  .experience-layout {
    grid-template-columns: 0.78fr 1.22fr;
    gap: 45px;
  }

  .faq-layout {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .faq-intro {
    position: static;
    max-width: 680px;
  }

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

  .contact-copy {
    max-width: 730px;
  }

  .form-card {
    max-width: 730px;
  }

  .footer-top {
    grid-template-columns: 0.65fr 1fr;
  }

  .footer-links {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  .shell {
    width: min(calc(100% - 30px), var(--shell));
  }

  .section {
    padding: 74px 0;
  }

  .section-heading {
    margin-bottom: 38px;
  }

  .section-heading h2,
  .two-column-heading h2,
  .trust-intro h2,
  .platform-copy h2,
  .scope-heading h2,
  .experience-copy h2,
  .faq-intro h2,
  .contact-copy h2 {
    font-size: clamp(2rem, 9vw, 2.65rem);
  }

  .hero {
    padding-top: calc(var(--header-height) + 52px);
  }

  .hero h1 {
    font-size: clamp(2.7rem, 13vw, 4rem);
  }

  .hero-lead {
    font-size: 1rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-assurance {
    margin-bottom: 26px;
  }

  .trust-section {
    padding: 74px 0 48px;
  }

  .trust-section + .pain-section {
    padding-top: 64px;
  }

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

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

  .hero-proof {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }

  .hero-proof > div {
    padding: 0 11px;
  }

  .hero-proof strong {
    font-size: 0.78rem;
  }

  .hero-proof span {
    font-size: 0.62rem;
  }

  .dashboard-body {
    min-height: 370px;
    grid-template-columns: 40px 1fr;
  }

  .dashboard-main {
    padding: 17px 13px;
  }

  .stat-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
  }

  .stat-card {
    display: flex;
    min-width: 0;
    flex-direction: column;
    padding: 8px;
  }

  .stat-card strong {
    order: -1;
    font-size: 1rem;
  }

  .stat-card::before {
    display: none;
  }

  .stat-card small {
    display: none;
  }

  .dash-panels {
    grid-template-columns: 1fr;
  }

  .availability-panel {
    display: none;
  }

  .floating-card-one {
    top: 78px;
    right: -8px;
  }

  .floating-card-two {
    bottom: 35px;
    left: -8px;
  }

  .audience-bar {
    flex-wrap: wrap;
    gap: 10px 16px;
    padding: 19px 15px;
  }

  .audience-bar span {
    width: 100%;
    text-align: center;
  }

  .audience-bar p {
    font-size: 0.72rem;
  }

  .pain-grid,
  .services-grid {
    grid-template-columns: 1fr;
  }

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

  .service-card > p {
    min-height: 0;
  }

  .platform-visual {
    min-height: 530px;
    padding: 25px 20px;
  }

  .workflow-card {
    min-height: 480px;
    padding: 18px;
  }

  .audit-card {
    right: 5px;
    bottom: 28px;
  }

  .process-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .process-step,
  .process-step:not(:first-child),
  .process-step:nth-child(3) {
    min-height: 0;
    padding: 0 0 0 75px;
  }

  .step-number {
    position: absolute;
    top: 0;
    left: 0;
  }

  .step-line {
    display: none;
  }

  .plan-body ul {
    display: block;
  }

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

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

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

  .experience-number {
    min-height: 300px;
  }

  .experience-number span {
    font-size: 9rem;
  }

  .field-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .form-card {
    padding: 26px 20px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .footer-links {
    grid-column: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
    padding-bottom: 70px;
  }

  .footer-bottom > div {
    flex-wrap: wrap;
  }

  .prototype-flag {
    right: 8px;
    bottom: 8px;
    left: 8px;
    justify-content: center;
    text-align: center;
  }

  dialog {
    padding: 31px 22px;
  }
}

@media (max-width: 420px) {
  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand > span:last-child {
    display: none;
  }

  .hero h1 {
    font-size: 2.65rem;
  }

  .hero-actions .button {
    padding-right: 15px;
    padding-left: 15px;
    font-size: 0.84rem;
  }

  .hero-assurance {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .hero-assurance > span:not(:last-child)::after {
    display: none;
  }

  .hero-proof {
    gap: 14px 0;
    grid-template-columns: 1fr;
  }

  .hero-proof > div {
    padding: 0;
    border-left: 0;
  }

  .dashboard-sidebar {
    display: none;
  }

  .dashboard-body {
    grid-template-columns: 1fr;
  }

  .floating-card {
    display: none;
  }

  .audience-bar i {
    display: none;
  }

  .platform-visual {
    min-height: 505px;
    padding: 17px 10px;
  }

  .workflow-card {
    padding: 16px;
  }

  .audit-card {
    display: none;
  }

  .vehicle-summary {
    grid-template-columns: 34px 1fr;
  }

  .vehicle-summary .status {
    grid-column: 2;
    justify-self: start;
  }

  .footer-links {
    grid-template-columns: 1fr 1fr;
    gap: 28px 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media print {
  .site-header,
  .prototype-flag,
  .hero-actions,
  .contact,
  .site-footer,
  dialog {
    display: none !important;
  }

  .hero,
  .section-dark {
    background: #fff;
    color: #000;
  }

  .hero h1,
  .section-heading.light h2,
  .process-step h3 {
    color: #000;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
