/* ========================================================================== */
/* Design tokens and global foundations                                       */
/* ========================================================================== */

:root {
  --navy: #031a35;
  --navy2: #062b54;
  --blue: #0877f9;
  --blue2: #20a5ff;
  --ink: #071b39;
  --muted: #506176;
  --line: #dce4ed;
  --white: #fff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, "Helvetica Neue", sans-serif;
  color: var(--ink);
  background: #fff;
}

.container {
  width: min(1180px, calc(100% - 48px));
  margin: auto;
}

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

/* ========================================================================== */
/* Site header and primary navigation                                         */
/* ========================================================================== */

.site-header {
  height: 86px;
  background: rgba(2, 20, 42, .98);
  color: #fff;
  position: relative;
  z-index: 20;
  border-bottom: 1px solid rgba(58, 145, 235, .35);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 220px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50% 46% 55% 44%;
  background: linear-gradient(145deg, #22b6ff, #0065df);
  font-weight: 900;
  font-style: italic;
  font-size: 23px;
  color: #fff;
}

.brand strong {
  display: block;
  font-size: 21px;
  letter-spacing: .025em;
}

.site-header .brand strong {
  color: #ff0000;
}

.brand sup {
  font-size: 8px;
}

.brand small {
  display: block;
  font-size: 8px;
  letter-spacing: .11em;
  text-align: center;
  margin-top: 1px;
}

.site-header nav {
  display: flex;
  align-items: center;
  gap: 29px;
  margin-left: auto;
}

.site-header nav a {
  display: flex;
  gap: 5px;
  align-items: center;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
}

.nav-dropdown-group {
  position: relative;
}

.nav-dropdown-toggle {
  padding: 12px 0;
  display: flex;
  align-items: center;
  gap: 5px;
  color: inherit;
  background: transparent;
  border: 0;
  cursor: pointer;
  font: inherit;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.nav-dropdown-toggle .icon {
  transition: transform .2s;
}

.nav-dropdown-group:hover .nav-dropdown-toggle .icon,
.nav-dropdown-group:focus-within .nav-dropdown-toggle .icon,
.nav-dropdown-group.is-open .nav-dropdown-toggle .icon {
  transform: rotate(180deg);
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 15px);
  left: 50%;
  width: 290px;
  padding: 9px;
  visibility: hidden;
  opacity: 0;
  transform: translate(-50%, 8px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 7px;
  box-shadow: 0 16px 36px rgba(0, 12, 29, .24);
  transition: opacity .18s, transform .18s, visibility .18s;
}

.nav-dropdown::before {
  content: '';
  position: absolute;
  right: 0;
  bottom: 100%;
  left: 0;
  height: 16px;
}

.nav-dropdown-group:hover .nav-dropdown,
.nav-dropdown-group:focus-within .nav-dropdown,
.nav-dropdown-group.is-open .nav-dropdown {
  visibility: visible;
  opacity: 1;
  transform: translate(-50%, 0);
}

.site-header nav .nav-dropdown a {
  padding: 12px 13px;
  color: var(--ink);
  border-radius: 4px;
  font-size: 11px;
  line-height: 1.35;
  text-transform: none;
  white-space: normal;
}

.site-header nav .nav-dropdown a:hover,
.site-header nav .nav-dropdown a:focus {
  color: var(--blue);
  background: #f1f7fe;
  outline: none;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 13px;
}

.search {
  background: transparent;
  border: 0;
  color: #fff;
  cursor: pointer;
  padding: 8px;
}

.header-contact,.header-demo {
  padding: 13px 19px;
  border-radius: 5px;
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 700;
  white-space: nowrap;
}

.header-contact {
  border: 1px solid rgba(255, 255, 255, .7);
}

.header-demo {
  background: var(--blue);
}

.menu-button {
  display: none;
  background: none;
  border: 0;
  color: white;
}

/* ========================================================================== */
/* Hero                                                                       */
/* ========================================================================== */

.hero {
  height: 590px;
  position: relative;
  background: #082a50;
  color: #fff;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  inset: 0;
  background: url('assets/bus-depot-hero.png') center/cover no-repeat;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(2, 21, 45, .98) 0%, rgba(2, 24, 49, .86) 33%, rgba(2, 24, 49, .22) 68%, rgba(1, 12, 29, .2)), linear-gradient(0deg, rgba(2, 22, 44, .55), transparent 45%);
}

.hero-content {
  position: relative;
  padding-top: 76px;
}

.eyebrow {
  text-transform: uppercase;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .055em;
}

.eyebrow.light {
  color: #73caff;
  margin: 0 0 12px;
}

.hero h1 {
  font-size: 53px;
  line-height: 1.07;
  letter-spacing: -.032em;
  margin: 0 0 20px;
  max-width: 670px;
}

.hero-content>p:not(.eyebrow) {
  font-size: 17px;
  line-height: 1.55;
  max-width: 545px;
  margin: 0 0 33px;
}

.hero-actions,.cta-inner>div:last-child {
  display: flex;
  gap: 20px;
}

.button {
  height: 48px;
  background: var(--blue);
  color: #fff;
  border-radius: 5px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  transition: .2s;
}

.button:hover {
  background: #198bff;
  transform: translateY(-1px);
}

.button-outline {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, .75);
}

.button-outline:hover {
  background: rgba(255, 255, 255, .1);
}

/* ========================================================================== */
/* Benefit summary strip                                                      */
/* ========================================================================== */

.benefit-strip {
  background: #041b36;
  color: #fff;
  border-top: 1px solid #087cf8;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  min-height: 116px;
}

.benefit-grid article {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 27px;
  border-right: 1px solid rgba(255, 255, 255, .12);
}

.benefit-grid article:last-child {
  border: 0;
}

.benefit-grid svg {
  color: #6cbcff;
  width: 39px;
  height: 39px;
  flex: 0 0 auto;
}

.benefit-grid h3 {
  font-size: 13px;
  margin: 0 0 8px;
}

.benefit-grid p {
  font-size: 11px;
  line-height: 1.55;
  color: #d8e3ef;
  margin: 0;
}

/* ========================================================================== */
/* Solutions overview                                                         */
/* ========================================================================== */

.solutions-section {
  padding: 70px 0 72px;
}

.solutions-layout {
  display: grid;
  grid-template-columns: 42% 58%;
  align-items: center;
}

.section-copy {
  padding: 0 70px 0 35px;
}

.section-copy h2,.visibility h2,.trust h2,.cta h2 {
  font-size: 30px;
  line-height: 1.15;
  letter-spacing: -.025em;
  margin: 15px 0 20px;
}

.section-copy>p:not(.eyebrow) {
  font-size: 14px;
  line-height: 1.75;
  color: #394a60;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--blue);
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 800;
  margin-top: 18px;
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  border-radius: 7px;
  overflow: hidden;
}

.solution-grid a {
  min-height: 141px;
  display: grid;
  place-content: center;
  text-align: center;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: .2s;
}

.solution-grid a:nth-child(3n) {
  border-right: 0;
}

.solution-grid a:nth-child(n+4) {
  border-bottom: 0;
}

.solution-grid a:hover {
  background: #f3f8ff;
}

.solution-grid svg {
  color: var(--blue);
  width: 42px;
  height: 42px;
  margin: 0 auto 12px;
}

.solution-grid strong {
  font-size: 13px;
  line-height: 1.35;
}

/* ========================================================================== */
/* Visibility feature and dashboard illustration                              */
/* ========================================================================== */

.visibility {
  background: radial-gradient(circle at 16% 100%, #075693 0, #043c71 24%, #032748 58%, #031b35 100%);
  color: #fff;
  padding: 20px 0;
}

.visibility-layout {
  display: grid;
  grid-template-columns: 49% 51%;
  align-items: center;
  min-height: 300px;
}

.visibility-copy {
  padding: 30px 50px;
}

.visibility-copy .eyebrow {
  color: #36a9ff;
}

.visibility-copy h2 {
  font-size: 31px;
}

.visibility-copy>p:not(.eyebrow) {
  font-size: 13px;
  line-height: 1.7;
  color: #d8e6f4;
  max-width: 530px;
}

.device-stage {
  height: 285px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.monitor {
  width: 360px;
  position: relative;
}

.monitor-screen {
  height: 213px;
  background: #07131f;
  border: 8px solid #101820;
  border-radius: 10px 10px 2px 2px;
  padding: 13px;
  color: #dcecff;
}

.dash-head {
  display: flex;
  justify-content: space-between;
  font-size: 8px;
  color: #71bfff;
}

.dash-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px;
  margin-top: 12px;
}

.chart-card {
  background: #102434;
  border: 1px solid #1b3c52;
  height: 67px;
  border-radius: 3px;
  padding: 6px;
  font-size: 7px;
}

.chart-card.wide {
  grid-column: 1/3;
}

.donut {
  width: 39px;
  height: 39px;
  border-radius: 50%;
  margin: 5px auto;
  background: conic-gradient(#16a6e9 0 30%, #79d6ff 30% 50%, #2b5877 50% 80%, #f59f6c 80%);
  position: relative;
}

.donut:after {
  content: '';
  position: absolute;
  inset: 10px;
  border-radius: 50%;
  background: #102434;
}

.bars {
  display: flex;
  align-items: flex-end;
  gap: 8px;
}

.bars small {
  position: absolute;
}

.bars i,.mini-bars i {
  display: block;
  background: #11a2e9;
  width: 9px;
}

.bars i:nth-of-type(1) {
  height: 20px;
}

.bars i:nth-of-type(2) {
  height: 36px;
}

.bars i:nth-of-type(3) {
  height: 28px;
}

.bars i:nth-of-type(4) {
  height: 43px;
}

.bars i:nth-of-type(5) {
  height: 31px;
}

.line-chart {
  height: 38px;
  margin-top: 8px;
  background: linear-gradient(165deg, transparent 42%, #30afff 43% 46%, transparent 47%) center/45px 45px;
}

.monitor-stand {
  width: 130px;
  height: 48px;
  margin: auto;
  background: linear-gradient(100deg, #b8c2c8, #fff, #9eaab3);
  clip-path: polygon(34% 0, 66% 0, 76% 83%, 100% 90%, 100% 100%, 0 100%, 0 90%, 24% 83%);
}

.phone {
  position: absolute;
  width: 80px;
  height: 170px;
  right: 64px;
  bottom: 10px;
  border-radius: 14px;
  border: 3px solid #111;
  background: #071521;
  color: #fff;
  padding: 18px 7px 8px;
  text-align: center;
  box-shadow: 0 8px 15px #001025;
}

.phone small {
  font-size: 6px;
}

.phone strong {
  display: block;
  font-size: 15px;
  margin-top: 22px;
}

.phone span {
  font-size: 5px;
  color: #91abc0;
}

.mini-bars {
  height: 47px;
  display: flex;
  align-items: end;
  gap: 4px;
  margin: 8px 4px;
}

.mini-bars i {
  width: 6px;
}

.mini-bars i:nth-child(1) {
  height: 16px;
}

.mini-bars i:nth-child(2) {
  height: 25px;
}

.mini-bars i:nth-child(3) {
  height: 32px;
}

.mini-bars i:nth-child(4) {
  height: 20px;
}

.mini-bars i:nth-child(5) {
  height: 39px;
}

.mini-bars i:nth-child(6) {
  height: 28px;
}

/* ========================================================================== */
/* Trust statistics                                                           */
/* ========================================================================== */

.trust {
  padding: 32px 0 39px;
}

.trust h2 {
  text-align: center;
  margin: 0;
  font-size: 27px;
}

.title-rule {
  display: block;
  width: 35px;
  height: 3px;
  background: var(--blue);
  margin: 18px auto 26px;
}

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

.stat-grid article {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 19px;
  min-height: 91px;
  border-right: 1px solid #e5ebf1;
}

.stat-grid article:last-child {
  border: 0;
}

.stat-grid svg {
  width: 45px;
  height: 45px;
  color: var(--blue);
}

.stat-grid strong {
  color: var(--blue);
  font-size: 30px;
}

.stat-grid p {
  font-size: 12px;
  line-height: 1.45;
  margin: 5px 0 0;
}

/* ========================================================================== */
/* Call to action                                                              */
/* ========================================================================== */

.cta {
  background: linear-gradient(90deg, rgba(2, 27, 52, .98), rgba(4, 59, 102, .89)), url('assets/bus-depot-hero.png') center 63%/cover;
  color: #fff;
  border-bottom: 1px solid #0b78e6;
}

.cta-inner {
  min-height: 146px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.cta h2 {
  font-size: 23px;
  margin: 0 0 12px;
}

.cta p {
  font-size: 13px;
  margin: 0;
  color: #e0ebf6;
}

.cta .button {
  min-width: 186px;
}

/* ========================================================================== */
/* Contact page                                                               */
/* ========================================================================== */

.contact-hero {
  color: #fff;
  background:
    linear-gradient(90deg, rgba(2, 21, 45, .98), rgba(3, 44, 81, .78)),
    url('assets/bus-depot-hero.png') center 48%/cover;
  border-bottom: 1px solid #087cf8;
}

.contact-hero-inner {
  min-height: 310px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-hero .eyebrow {
  margin: 0 0 12px;
}

.contact-hero h1 {
  margin: 0 0 18px;
  font-size: 48px;
  line-height: 1.05;
  letter-spacing: -.03em;
}

.contact-hero-inner > p:last-child {
  max-width: 620px;
  margin: 0;
  color: #dce9f6;
  font-size: 16px;
  line-height: 1.65;
}

.contact-section {
  padding: 70px 0 80px;
  background: #f6f9fc;
}

.contact-heading {
  margin-bottom: 34px;
  text-align: center;
}

.contact-heading .eyebrow {
  margin: 0 0 12px;
}

.contact-heading h2 {
  margin: 0 0 12px;
  font-size: 32px;
  letter-spacing: -.025em;
}

.contact-phone {
  color: var(--blue);
  font-size: 19px;
  font-weight: 800;
}

.contact-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.contact-card {
  min-height: 315px;
  padding: 38px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(4, 31, 61, .07);
}

.contact-card-icon {
  width: 62px;
  height: 62px;
  margin-bottom: 22px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(145deg, var(--blue2), var(--blue));
  border-radius: 50%;
}

.contact-card-icon .icon {
  width: 30px;
  height: 30px;
}

.contact-card h3 {
  margin: 0 0 14px;
  font-size: 18px;
}

.contact-card p,
.contact-card address {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-style: normal;
  line-height: 1.75;
}

.contact-card .button {
  margin-top: auto;
}

/* ========================================================================== */
/* Email contact form                                                         */
/* ========================================================================== */

.email-hero .contact-hero-inner {
  min-height: 270px;
}

.email-section {
  padding: 70px 0 80px;
  background: #f6f9fc;
}

.email-layout {
  display: grid;
  grid-template-columns: minmax(260px, .75fr) minmax(0, 1.65fr);
  gap: 42px;
  align-items: start;
}

.email-intro {
  padding: 30px 8px 0 0;
}

.email-intro > .eyebrow {
  margin: 0 0 12px;
}

.email-intro > h2,
.email-form-heading h2 {
  margin: 0 0 16px;
  font-size: 30px;
  letter-spacing: -.025em;
}

.email-intro > p:not(.eyebrow) {
  margin: 0 0 30px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.email-contact-detail {
  display: flex;
  gap: 15px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
}

.email-contact-detail > .icon {
  width: 24px;
  height: 24px;
  color: var(--blue);
  flex: 0 0 auto;
}

.email-contact-detail small {
  display: block;
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.email-contact-detail a,
.email-contact-detail address {
  color: var(--ink);
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.55;
}

.email-form-card {
  padding: 40px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(4, 31, 61, .07);
}

.email-form-heading {
  padding-bottom: 25px;
  margin-bottom: 27px;
  border-bottom: 1px solid var(--line);
}

.email-form-heading h2 {
  margin-bottom: 8px;
}

.email-form-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.form-grid {
  padding: 27px 0 0;
  margin: 27px 0 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  border: 0;
  border-top: 1px solid var(--line);
}

.form-grid legend {
  padding: 0 12px 0 0;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-field-full {
  grid-column: 1 / -1;
}

.form-field label {
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 0 14px;
  color: var(--ink);
  background: #fff;
  border: 1px solid #cbd7e3;
  border-radius: 5px;
  font: inherit;
  font-size: 14px;
  outline: none;
  transition: border-color .2s, box-shadow .2s, background-color .2s;
}

.form-field input,
.form-field select {
  height: 48px;
}

.form-field textarea {
  min-height: 150px;
  padding-top: 13px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(8, 119, 249, .12);
}

.form-field .field-error {
  background: #fff9dc;
  border-color: #df9f17;
}

.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.email-submit {
  margin-top: 26px;
  border: 0;
  cursor: pointer;
}

/* Request information form */
.request-layout {
  grid-template-columns: minmax(250px, .68fr) minmax(0, 1.75fr);
}

.request-intro {
  position: sticky;
  top: 28px;
}

.request-benefits {
  padding: 22px 0;
  margin: 0 0 24px;
  display: grid;
  gap: 13px;
  list-style: none;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.request-benefits li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
}

.request-benefits .icon {
  width: 19px;
  height: 19px;
  padding: 3px;
  color: #fff;
  background: var(--blue);
  border-radius: 50%;
  stroke-width: 2.6;
}

.request-form-card form > :first-child {
  padding-top: 0;
  margin-top: 0;
  border-top: 0;
}

.request-form-group,
.request-choice-group {
  padding: 30px 0 0;
  margin: 30px 0 0;
  border: 0;
  border-top: 1px solid var(--line);
}

.request-choice-group legend {
  padding-right: 12px;
  font-size: 14px;
  font-weight: 800;
}

.form-help {
  margin: 4px 0 17px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.form-help a {
  color: var(--blue);
  font-weight: 700;
}

.request-choice-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.request-choice {
  min-height: 0;
  padding: 17px 18px;
  display: flex;
  align-items: flex-start;
  gap: 11px;
  color: var(--muted);
  background: #f7faff;
  border: 1px solid var(--line);
  border-radius: 6px;
  cursor: pointer;
  font-size: 12px;
  line-height: 1.45;
}

.request-choice:has(input:checked) {
  background: #eef6ff;
  border-color: var(--blue);
  box-shadow: 0 0 0 2px rgba(8, 119, 249, .08);
}

.request-choice input,
.request-radio-row input {
  accent-color: var(--blue);
}

.request-choice input {
  margin-top: 3px;
}

.request-choice strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 13px;
}

.request-demo-choice {
  width: 100%;
}

.request-reveal {
  margin-top: 18px;
}

.request-reveal[hidden] {
  display: none;
}

.request-optional-section {
  padding: 18px 20px 20px;
  margin-top: 28px;
  background: #f7faff;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.request-optional-section summary {
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

.request-optional-section[open] summary {
  margin-bottom: 2px;
}

.request-optional-section .form-grid {
  margin-top: 20px;
}

.request-radio-row {
  display: flex;
  gap: 28px;
}

.request-radio-row label {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

.request-comments {
  padding-top: 30px;
  margin-top: 30px;
  border-top: 1px solid var(--line);
}

/* ========================================================================== */
/* Email confirmation page                                                    */
/* ========================================================================== */

.thanks-main {
  background:
    linear-gradient(90deg, rgba(2, 21, 45, .96), rgba(3, 44, 81, .82)),
    url('assets/bus-depot-hero.png') center/cover fixed;
}

.thanks-section {
  padding: 74px 0 82px;
}

.thanks-container {
  display: flex;
  justify-content: center;
}

.thanks-card {
  width: min(720px, 100%);
  padding: 50px 58px;
  text-align: center;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, .5);
  border-radius: 10px;
  box-shadow: 0 24px 60px rgba(0, 12, 29, .28);
}

.thanks-icon {
  width: 76px;
  height: 76px;
  margin: 0 auto 24px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(145deg, var(--blue2), var(--blue));
  border-radius: 50%;
}

.thanks-icon .icon {
  width: 39px;
  height: 39px;
  stroke-width: 2.3;
}

.thanks-card > .eyebrow {
  margin: 0 0 10px;
}

.thanks-card h1 {
  margin: 0 0 16px;
  color: var(--ink);
  font-size: 43px;
  letter-spacing: -.03em;
}

.thanks-lead {
  max-width: 540px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.thanks-help {
  margin: 34px 0 30px;
  padding: 28px;
  background: #f4f8fc;
  border: 1px solid var(--line);
  border-radius: 7px;
}

.thanks-help h2 {
  margin: 0 0 8px;
  font-size: 20px;
}

.thanks-help > p:not(.thanks-hours) {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 13px;
}

.thanks-phone {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--blue);
  font-size: 25px;
  font-weight: 800;
}

.thanks-phone .icon {
  width: 22px;
  height: 22px;
}

.thanks-hours {
  margin: 14px 0 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 7px;
  color: var(--muted);
  font-size: 12px;
}

.thanks-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 17px;
}

.thanks-link {
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

/* ========================================================================== */
/* Vehicle information products                                               */
/* ========================================================================== */

.product-hero {
  color: #fff;
  background:
    radial-gradient(circle at 78% 42%, rgba(24, 133, 230, .32), transparent 28%),
    linear-gradient(110deg, #02162e, #063b6b);
  border-bottom: 1px solid #087cf8;
}

.product-hero-inner {
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.product-hero-inner > div:first-child {
  max-width: 700px;
}

.product-hero .eyebrow {
  margin: 0 0 14px;
}

.product-hero h1 {
  margin: 0 0 20px;
  font-size: 48px;
  line-height: 1.06;
  letter-spacing: -.035em;
}

.product-hero-inner > div:first-child > p:last-child {
  max-width: 650px;
  margin: 0;
  color: #d9e8f6;
  font-size: 16px;
  line-height: 1.7;
}

.product-hero-icon {
  width: 170px;
  height: 170px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: #72c5ff;
  background: rgba(7, 119, 249, .12);
  border: 1px solid rgba(114, 197, 255, .3);
  border-radius: 50%;
}

.product-hero-icon .icon {
  width: 94px;
  height: 94px;
  stroke-width: 1.3;
}

.product-section {
  padding: 78px 0;
  background: #f6f9fc;
}

.product-detail {
  display: grid;
  grid-template-columns: minmax(280px, .78fr) minmax(0, 1.4fr);
  gap: 62px;
  align-items: start;
}

.product-detail + .product-detail {
  margin-top: 78px;
  padding-top: 78px;
  border-top: 1px solid var(--line);
}

.product-detail-reverse .product-image-panel {
  order: 2;
}

.product-image-panel {
  min-height: 410px;
  padding: 42px;
  display: grid;
  place-items: center;
  position: sticky;
  top: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 9px;
  box-shadow: 0 14px 35px rgba(4, 31, 61, .08);
}

.product-image-panel img {
  display: block;
  max-width: 100%;
  max-height: 330px;
  object-fit: contain;
}

.product-copy > .eyebrow {
  margin: 3px 0 10px;
}

.product-copy > h2 {
  margin: 0 0 29px;
  font-size: 32px;
  line-height: 1.16;
  letter-spacing: -.025em;
}

.product-feature {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 17px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
}

.product-feature > .icon {
  width: 28px;
  height: 28px;
  margin-top: 1px;
  color: var(--blue);
}

.product-feature h3 {
  margin: 0 0 9px;
  font-size: 14px;
  letter-spacing: .01em;
  text-transform: uppercase;
}

.product-feature p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.72;
}

.product-cta {
  color: #fff;
  background: linear-gradient(100deg, #031b35, #064777);
  border-bottom: 1px solid #087cf8;
}

.product-cta-inner {
  min-height: 160px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
}

.product-cta h2 {
  margin: 0 0 10px;
  font-size: 25px;
}

.product-cta p {
  margin: 0;
  color: #d9e8f6;
  font-size: 14px;
}

/* ========================================================================== */
/* Footer                                                                      */
/* ========================================================================== */

footer {
  background: #031b35;
  color: #dce7f3;
  padding: 43px 0 17px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr repeat(4, 1fr);
  gap: 38px;
}

.footer-brand {
  min-width: 0;
  margin-bottom: 17px;
}

.footer-brand strong {
  color: #ff0000;
}

.footer-grid>div:first-child>p {
  font-size: 11px;
  line-height: 1.65;
}

.social {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.social a {
  display: grid;
  place-items: center;
  width: 27px;
  height: 27px;
  border: 1px solid #8296aa;
  border-radius: 50%;
}

.social svg {
  width: 13px;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-column h3 {
  color: #45b0ff;
  text-transform: uppercase;
  font-size: 11px;
  margin: 7px 0 7px;
}

.footer-column a,.footer-column p {
  font-size: 11px;
  margin: 0;
  line-height: 1.55;
}

.footer-column.contact p {
  display: flex;
  gap: 10px;
}

.footer-column.contact svg {
  width: 14px;
  flex: 0 0 auto;
}

.copyright {
  border-top: 1px solid rgba(255, 255, 255, .1);
  margin-top: 32px;
  padding-top: 16px;
  font-size: 9px;
  color: #8fa2b5;
}

/* ========================================================================== */
/* Responsive layout: tablets and compact desktops                            */
/* ========================================================================== */

@media (max-width: 1000px) {
  .site-header nav,.header-contact,.search {
    display: none;
  }

  .header-actions {
    margin-left: auto;
  }

  .menu-button {
    display: block;
    order: 3;
  }

  .site-header nav.open {
    display: flex;
    position: absolute;
    top: 86px;
    left: 0;
    right: 0;
    background: #031b35;
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
  }

  .nav-dropdown-group {
    width: 100%;
  }

  .nav-dropdown-toggle {
    width: 100%;
    justify-content: space-between;
  }

  .nav-dropdown {
    position: static;
    width: 100%;
    max-height: 0;
    padding: 0;
    visibility: visible;
    opacity: 1;
    overflow: hidden;
    transform: none;
    background: rgba(255, 255, 255, .06);
    border: 0;
    box-shadow: none;
    transition: max-height .25s, padding .25s, margin .25s;
  }

  .nav-dropdown::before {
    display: none;
  }

  .nav-dropdown-group:hover .nav-dropdown,
  .nav-dropdown-group:focus-within .nav-dropdown {
    max-height: 0;
    padding: 0;
    transform: none;
  }

  .nav-dropdown-group.is-open .nav-dropdown {
    max-height: 260px;
    padding: 7px;
    margin-top: 6px;
  }

  .site-header nav .nav-dropdown a {
    color: #dce7f3;
    padding: 11px 12px;
  }

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

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

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

  .section-copy {
    padding: 0 0 35px;
  }

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

  .footer-column.contact {
    grid-column: 2;
  }

  .phone {
    right: 15px;
  }

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

  .contact-card:last-child {
    grid-column: 1 / -1;
  }

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

  .request-intro {
    position: static;
  }

  .email-intro {
    padding: 0;
  }

  .product-detail,
  .product-detail-reverse {
    grid-template-columns: 1fr;
  }

  .product-detail-reverse .product-image-panel {
    order: 0;
  }

  .product-image-panel {
    min-height: 330px;
    position: static;
  }

}

/* ========================================================================== */
/* Responsive layout: mobile                                                  */
/* ========================================================================== */

@media (max-width: 700px) {
  .container {
    width: min(100% - 32px, 1180px);
  }

  .site-header {
    height: 72px;
  }

  .brand {
    min-width: 0;
  }

  .brand strong {
    font-size: 17px;
  }

  .brand-mark {
    width: 33px;
    height: 33px;
  }

  .header-demo {
    display: none;
  }

  .site-header nav.open {
    top: 72px;
  }

  .hero {
    height: 565px;
  }

  .contact-hero-inner {
    min-height: 265px;
  }

  .contact-hero h1 {
    font-size: 39px;
  }

  .contact-section {
    padding: 50px 0 60px;
  }

  .contact-heading h2 {
    font-size: 27px;
  }

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

  .contact-card:last-child {
    grid-column: auto;
  }

  .email-section {
    padding: 50px 0 60px;
  }

  .email-form-card {
    padding: 28px 22px;
  }

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

  .form-field-full {
    grid-column: auto;
  }

  .request-choice-grid {
    grid-template-columns: 1fr;
  }

  .thanks-section {
    padding: 48px 0 55px;
  }

  .thanks-card {
    padding: 38px 22px;
  }

  .thanks-card h1 {
    font-size: 36px;
  }

  .thanks-help {
    padding: 24px 16px;
  }

  .thanks-phone {
    font-size: 22px;
  }

  .thanks-hours {
    align-items: flex-start;
  }

  .product-hero-inner {
    min-height: 325px;
  }

  .product-hero h1 {
    font-size: 38px;
  }

  .product-hero-icon {
    display: none;
  }

  .product-section {
    padding: 52px 0;
  }

  .product-detail {
    gap: 35px;
  }

  .product-detail + .product-detail {
    margin-top: 55px;
    padding-top: 55px;
  }

  .product-image-panel {
    min-height: 270px;
    padding: 28px;
  }

  .product-copy > h2 {
    font-size: 27px;
  }

  .product-feature {
    grid-template-columns: 30px 1fr;
    gap: 12px;
  }

  .product-cta-inner {
    padding: 34px 0;
    align-items: flex-start;
    flex-direction: column;
    gap: 24px;
  }

  .hero-image {
    background-position: 65% center;
  }

  .hero-shade {
    background: linear-gradient(90deg, rgba(2, 21, 45, .95), rgba(2, 24, 49, .7)), linear-gradient(0deg, rgba(2, 22, 44, .7), transparent);
  }

  .hero-content {
    padding-top: 64px;
  }

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

  .hero-content>p:not(.eyebrow) {
    font-size: 15px;
  }

  .hero-actions {
    flex-wrap: wrap;
    gap: 11px;
  }

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

  .benefit-grid article {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
  }

  .solutions-section {
    padding: 50px 0;
  }

  .section-copy h2,.visibility h2 {
    font-size: 27px;
  }

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

  .solution-grid a:nth-child(3n) {
    border-right: 1px solid var(--line);
  }

  .solution-grid a:nth-child(2n) {
    border-right: 0;
  }

  .solution-grid a:nth-child(n+4) {
    border-bottom: 1px solid var(--line);
  }

  .solution-grid a:nth-child(n+5) {
    border-bottom: 0;
  }

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

  .device-stage {
    transform: scale(.82);
    margin: -10px -30px;
  }

  .visibility-copy {
    padding: 15px 0 50px;
  }

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

  .stat-grid article {
    border-bottom: 1px solid #e5ebf1;
  }

  .stat-grid article:nth-child(2) {
    border-right: 0;
  }

  .cta-inner {
    padding: 32px 0;
    display: block;
  }

  .cta-inner>div:last-child {
    margin-top: 24px;
    flex-wrap: wrap;
  }

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

  .footer-grid>div:first-child {
    grid-column: 1/-1;
  }

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

  .trust h2 {
    font-size: 23px;
  }

  .stat-grid strong {
    font-size: 25px;
  }

}

/* ========================================================================== */
/* Shared SVG icons and mobile-menu state                                      */
/* ========================================================================== */

.icon {
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.menu-button {
  cursor: pointer;
}

.menu-button .icon {
  width: 26px;
  height: 26px;
}

.menu-button .icon-close {
  display: none;
}

.menu-button[aria-expanded="true"] .icon-menu {
  display: none;
}

.menu-button[aria-expanded="true"] .icon-close {
  display: block;
}

.social b {
  font-size: 12px;
}

.no-js .menu-button {
  display: none;
}
