@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Sora:wght@500;600;700;800&display=swap");

:root {
  color-scheme: dark;
  --apex-blue: #009cff;
  --apex-blue-deep: #0066cc;
  --apex-orange: #ff6b00;
  --ink: #05070c;
  --panel: #0c1015;
  --panel-2: #11151b;
  --line: rgba(255, 255, 255, 0.14);
  --line-strong: rgba(0, 156, 255, 0.42);
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.68);
  --soft: rgba(255, 255, 255, 0.46);
  --paper: #f7f8fa;
  --paper-text: #141821;
  --radius: 8px;
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  margin: 0;
  overflow-x: hidden;
  overscroll-behavior-x: none;
  background: var(--ink);
  color: var(--text);
  font-family: Manrope, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.5), transparent 70%);
  opacity: 0.22;
  z-index: -1;
}

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

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

button {
  border: 0;
}

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

.page-shell {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  min-height: 100vh;
  overflow-x: hidden;
}

@supports (overflow: clip) {
  html,
  body,
  .page-shell {
    overflow-x: clip;
  }
}

.site-header {
  position: relative;
  z-index: 20;
  background: rgba(5, 7, 12, 0.9);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(1180px, calc(100% - 32px));
  min-height: 76px;
  margin: 0 auto;
}

.site-subbar {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(9, 13, 19, 0.82);
}

.site-subbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(1180px, calc(100% - 32px));
  min-height: 38px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  font-weight: 700;
}

.site-subbar a {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  gap: 7px;
  color: inherit;
  line-height: 1.35;
}

.site-subbar a:hover {
  color: #ffffff;
}

.site-subbar span {
  color: rgba(255, 255, 255, 0.86);
  font-weight: 900;
}

.site-subbar [data-lucide] {
  flex: 0 0 auto;
  width: 15px;
  height: 15px;
  color: var(--apex-blue);
}

.logo-link {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  min-height: 44px;
}

.logo-link img {
  width: min(260px, 54vw);
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 10px 12px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 700;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.nav-links a:hover,
.nav-links a.is-active {
  border-color: rgba(0, 156, 255, 0.34);
  background: rgba(0, 156, 255, 0.1);
  color: #ffffff;
  transform: translateY(-1px);
}

.mobile-anchor-nav {
  display: none;
}

.mobile-menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(0, 156, 255, 0.42);
  border-radius: 6px;
  background: rgba(0, 156, 255, 0.1);
  color: #ffffff;
  cursor: pointer;
  transition: border-color 160ms ease, background 160ms ease;
}

.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus-visible,
.mobile-menu-toggle[aria-expanded="true"] {
  border-color: var(--apex-blue);
  background: rgba(0, 156, 255, 0.18);
}

.mobile-menu-toggle [data-lucide] {
  width: 21px;
  height: 21px;
}

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

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

.mobile-menu-toggle[aria-expanded="true"] .mobile-menu-close-icon {
  display: inline-flex;
}

.mobile-anchor-nav a {
  display: flex;
  align-items: center;
  min-height: 44px;
  border-left: 2px solid transparent;
  padding: 11px 13px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
  font-weight: 800;
}

.mobile-anchor-nav a:hover,
.mobile-anchor-nav a.is-active {
  border-left-color: var(--apex-blue);
  background: rgba(0, 156, 255, 0.1);
  color: #ffffff;
}

#how-it-works,
#real-wraps,
#service-examples,
#process,
#local-shop,
#faq {
  scroll-margin-top: 18px;
}

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.header-cta {
  display: inline-flex;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  border-radius: 999px;
  padding: 13px 18px;
  cursor: pointer;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.button svg,
.button [data-lucide] {
  width: 18px;
  height: 18px;
}

.button-primary {
  background: linear-gradient(135deg, var(--apex-blue), var(--apex-blue-deep));
  color: #ffffff;
  box-shadow: 0 14px 34px rgba(0, 156, 255, 0.24);
}

.button-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 46px rgba(0, 156, 255, 0.34);
}

.button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.button-secondary:hover {
  border-color: rgba(0, 156, 255, 0.42);
  background: rgba(0, 156, 255, 0.12);
  transform: translateY(-2px);
}

.hero {
  position: relative;
  min-height: 730px;
  display: grid;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.08) brightness(0.72);
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 7, 12, 0.96) 0%, rgba(5, 7, 12, 0.78) 44%, rgba(5, 7, 12, 0.58) 100%),
    linear-gradient(180deg, rgba(5, 7, 12, 0.22) 0%, #05070c 100%);
}

.hero-wrap .hero-media {
  background: #05070c;
}

.hero-wrap .hero-media img {
  position: absolute;
  top: 50%;
  right: 0;
  width: min(60vw, 1040px);
  height: auto;
  max-width: none;
  object-fit: contain;
  object-position: right bottom;
  transform: translateY(-50%);
  filter: saturate(1.1) contrast(1.06) brightness(1.18);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.08) 8%, rgba(0, 0, 0, 0.75) 26%, #000000 46%);
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.08) 8%, rgba(0, 0, 0, 0.75) 26%, #000000 46%);
}

.hero-wrap .hero-media::after {
  background:
    linear-gradient(90deg, #05070c 0%, rgba(5, 7, 12, 0.98) 30%, rgba(5, 7, 12, 0.72) 50%, rgba(5, 7, 12, 0.24) 68%, rgba(5, 7, 12, 0.06) 100%),
    linear-gradient(180deg, rgba(5, 7, 12, 0.04) 0%, rgba(5, 7, 12, 0.14) 58%, rgba(5, 7, 12, 0.5) 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 440px);
  gap: 40px;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 76px 0 54px;
}

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

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(0, 156, 255, 0.34);
  border-radius: 999px;
  background: rgba(0, 156, 255, 0.13);
  color: #d8f1ff;
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 800;
}

.kicker [data-lucide] {
  width: 16px;
  height: 16px;
  color: var(--apex-blue);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: Sora, Manrope, system-ui, sans-serif;
  letter-spacing: 0;
}

h1 {
  margin-top: 22px;
  font-size: clamp(44px, 6vw, 78px);
  line-height: 1.04;
  font-weight: 800;
  max-width: 780px;
}

.accent-text {
  color: var(--apex-blue);
  text-shadow: 0 0 28px rgba(0, 156, 255, 0.24);
}

.hero-subhead {
  max-width: 650px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 28px;
}

.hero-actions .button {
  min-height: 54px;
  padding: 15px 20px;
}

.micro-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 26px;
  padding: 0;
  list-style: none;
}

.micro-proof li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  font-weight: 800;
}

.micro-proof [data-lucide] {
  width: 13px;
  height: 13px;
  color: var(--apex-blue);
}

.lead-panel {
  align-self: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(12, 16, 21, 0.9);
  box-shadow: var(--shadow);
  overflow: visible;
  backdrop-filter: blur(18px);
}

.hero .lead-panel {
  border-color: rgba(0, 156, 255, 0.28);
  box-shadow:
    0 26px 90px rgba(0, 0, 0, 0.48),
    0 0 0 1px rgba(0, 156, 255, 0.1),
    0 0 48px rgba(0, 156, 255, 0.1);
}

.lead-panel-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 22px;
  background:
    linear-gradient(135deg, rgba(0, 156, 255, 0.16), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.02);
}

.lead-panel-header p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.5;
}

.lead-panel-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 800;
}

.lead-panel-title [data-lucide] {
  width: 20px;
  height: 20px;
  color: var(--apex-blue);
}

.lead-form {
  padding: 22px;
}

.quote-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 180ms ease, visibility 180ms ease;
}

.quote-modal.is-open {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

.quote-modal-backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 72% 18%, rgba(0, 156, 255, 0.18), transparent 34%),
    rgba(2, 5, 10, 0.82);
  backdrop-filter: blur(10px);
}

.quote-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(680px, calc(100vw - 32px));
  max-height: calc(100vh - 40px);
  overflow-x: visible;
  overflow-y: auto;
  border-radius: var(--radius);
  outline: none;
}

.quote-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(5, 7, 12, 0.68);
  color: #ffffff;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.quote-modal-close:hover {
  transform: translateY(-1px);
  border-color: rgba(0, 156, 255, 0.42);
  background: rgba(0, 156, 255, 0.18);
}

.quote-modal-close [data-lucide] {
  width: 18px;
  height: 18px;
}

.quote-modal .lead-panel {
  width: 100%;
  align-self: auto;
  border-color: rgba(0, 156, 255, 0.34);
  box-shadow:
    0 34px 120px rgba(0, 0, 0, 0.62),
    0 0 0 1px rgba(0, 156, 255, 0.12),
    0 0 70px rgba(0, 156, 255, 0.13);
}

.quote-modal .lead-panel-header {
  padding-right: 64px;
}

body.quote-modal-open {
  overflow: hidden;
}

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

.vehicle-detail-step {
  margin-top: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
  padding: 14px;
}

.detail-step-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.detail-step-header strong {
  color: #ffffff;
  font-size: 14px;
}

.detail-step-header span {
  color: rgba(255, 255, 255, 0.48);
  font-size: 12px;
  font-weight: 800;
}

.form-grid-details {
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.field {
  position: relative;
  display: grid;
  gap: 7px;
  overflow: visible;
}

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

.field label,
.option-label {
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  font-weight: 800;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
  color: #ffffff;
  padding: 11px 12px;
  outline: none;
  transition: border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.field select option {
  color: #0b1018;
}

.field select.is-native-select {
  position: absolute;
  width: 1px;
  height: 1px;
  min-height: 0;
  padding: 0;
  opacity: 0;
  pointer-events: none;
}

.custom-select {
  position: relative;
  z-index: 2;
}

.custom-select.is-open {
  z-index: 80;
}

.custom-select-button {
  width: 100%;
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
  color: #ffffff;
  padding: 11px 12px;
  cursor: pointer;
  font: inherit;
  text-align: left;
  transition: border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.custom-select-button:focus-visible,
.custom-select.is-open .custom-select-button {
  border-color: rgba(0, 156, 255, 0.7);
  background: rgba(0, 156, 255, 0.08);
  box-shadow: 0 0 0 4px rgba(0, 156, 255, 0.14);
  outline: none;
}

.custom-select-button:disabled {
  cursor: not-allowed;
  opacity: 0.58;
}

.custom-select-value {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.custom-select-chevron {
  flex: 0 0 auto;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  line-height: 1;
  transition: transform 160ms ease;
}

.custom-select.is-open .custom-select-chevron {
  transform: rotate(180deg);
}

.custom-select-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  z-index: 90;
  display: flex;
  flex-direction: column;
  max-height: min(260px, 38vh);
  overflow: hidden;
  overscroll-behavior: contain;
  padding: 6px;
  border: 1px solid rgba(0, 156, 255, 0.34);
  border-radius: 12px;
  background: rgba(10, 15, 22, 0.98);
  box-shadow:
    0 18px 52px rgba(0, 0, 0, 0.44),
    0 0 0 1px rgba(255, 255, 255, 0.06);
}

.custom-select-menu[hidden] {
  display: none;
}

.custom-select-search {
  padding: 4px 4px 6px;
}

.custom-select-search input {
  width: 100%;
  min-height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  padding: 9px 10px;
  font: inherit;
  outline: none;
}

.custom-select-search input:focus {
  border-color: rgba(0, 156, 255, 0.72);
  box-shadow: 0 0 0 3px rgba(0, 156, 255, 0.14);
}

.custom-select-search input::placeholder {
  color: rgba(255, 255, 255, 0.48);
}

.custom-select-options {
  flex: 1 1 auto;
  min-height: 0;
  max-height: min(204px, 30vh);
  overflow-y: auto;
  overscroll-behavior: contain;
}

.custom-select-group {
  padding: 8px 10px 5px;
  color: var(--apex-blue);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.custom-select-option {
  width: 100%;
  min-height: 36px;
  display: flex;
  align-items: center;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: rgba(255, 255, 255, 0.88);
  padding: 8px 10px;
  cursor: pointer;
  font: inherit;
  line-height: 1.2;
  text-align: left;
}

.custom-select-option:hover,
.custom-select-option:focus-visible,
.custom-select-option[aria-selected="true"] {
  background: rgba(0, 156, 255, 0.16);
  color: #ffffff;
  outline: none;
}

.custom-select-option.is-placeholder {
  color: rgba(255, 255, 255, 0.58);
}

.custom-select-option:disabled {
  cursor: not-allowed;
  opacity: 0.48;
}

.custom-select-empty {
  padding: 12px 10px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  line-height: 1.35;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(0, 156, 255, 0.7);
  background: rgba(0, 156, 255, 0.08);
  box-shadow: 0 0 0 4px rgba(0, 156, 255, 0.14);
}

.field-help {
  min-height: 18px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 12px;
  line-height: 1.45;
}

.form-actions {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

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

.optional-save {
  min-height: 54px;
  font-size: 16px;
  box-shadow: 0 14px 34px rgba(0, 156, 255, 0.24);
}

.optional-save:hover {
  box-shadow: 0 18px 46px rgba(0, 156, 255, 0.34);
}

.optional-save.is-saved {
  background: linear-gradient(135deg, #13b981, #0f8f6f);
  box-shadow: 0 14px 34px rgba(19, 185, 129, 0.24);
}

.privacy-note {
  margin: 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 12px;
  line-height: 1.5;
}

.confirmation {
  display: grid;
  gap: 16px;
}

.confirmation-card {
  border: 1px solid rgba(0, 156, 255, 0.34);
  border-radius: var(--radius);
  background: rgba(0, 156, 255, 0.12);
  padding: 16px;
}

.confirmation-card strong {
  display: block;
  margin-bottom: 6px;
  color: #ffffff;
}

.confirmation-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.55;
}

.optional-grid {
  display: grid;
  gap: 14px;
}

.lead-panel.is-thank-you .lead-panel-header {
  background:
    linear-gradient(135deg, rgba(19, 185, 129, 0.16), rgba(0, 156, 255, 0.08)),
    rgba(255, 255, 255, 0.02);
}

.thank-you-page {
  display: grid;
  gap: 18px;
  outline: none;
}

.thank-you-hero {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
}

.thank-you-icon {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(19, 185, 129, 0.42);
  border-radius: 999px;
  background: rgba(19, 185, 129, 0.14);
  color: #18d59a;
}

.thank-you-icon [data-lucide] {
  width: 21px;
  height: 21px;
}

.thank-you-hero h2 {
  margin: 3px 0 8px;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.08;
}

.thank-you-hero p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.thank-you-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.thank-you-detail {
  display: grid;
  gap: 4px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 11px 12px;
  background: rgba(255, 255, 255, 0.055);
}

.thank-you-detail span {
  color: rgba(255, 255, 255, 0.48);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.thank-you-detail strong {
  color: #ffffff;
  font-size: 13px;
  line-height: 1.35;
}

.next-steps {
  border: 1px solid rgba(0, 156, 255, 0.22);
  border-radius: var(--radius);
  padding: 16px;
  background: rgba(0, 156, 255, 0.08);
}

.next-steps-timeline {
  display: grid;
  gap: 12px;
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.next-steps-timeline li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
}

.next-steps-timeline li > span {
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: var(--apex-blue);
  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
}

.next-steps-timeline strong {
  display: block;
  color: #ffffff;
  font-size: 14px;
}

.next-steps-timeline p {
  margin: 3px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
  line-height: 1.45;
}

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

.file-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.file-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.file-action:hover {
  transform: translateY(-1px);
  border-color: rgba(0, 156, 255, 0.4);
  background: rgba(0, 156, 255, 0.12);
}

.file-action input {
  display: none;
}

.file-name {
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  line-height: 1.45;
}

.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  line-height: 1.45;
}

.checkbox-row input {
  margin-top: 3px;
}

.section {
  position: relative;
  padding: 92px 0;
}

.section-dark {
  background: #070b11;
}

.section-mid {
  background: #0c1015;
}

.section-light {
  background:
    linear-gradient(180deg, #ffffff 0%, #f4f7fb 100%);
  color: var(--paper-text);
}

.section-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.section-heading {
  display: grid;
  gap: 14px;
  max-width: 760px;
  margin-bottom: 38px;
}

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

.section-kicker {
  color: var(--apex-blue);
  font-size: 13px;
  font-weight: 900;
}

.section-heading h2 {
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.1;
}

.section-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.section-light .section-heading p,
.section-light .copy-muted {
  color: rgba(20, 24, 33, 0.68);
}

.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 6px;
}

.section-actions.center {
  justify-content: center;
  margin-top: 30px;
}

.section-trust {
  background:
    radial-gradient(circle at 18% 20%, rgba(0, 156, 255, 0.22), transparent 34%),
    radial-gradient(circle at 78% 42%, rgba(20, 185, 129, 0.12), transparent 28%),
    linear-gradient(180deg, #08121f 0%, #070b11 100%);
}

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

.section-trust.trust-three-up .trust-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.trust-item {
  position: relative;
  min-height: 132px;
  overflow: hidden;
  border: 1px solid rgba(0, 156, 255, 0.16);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(0, 156, 255, 0.16), rgba(255, 255, 255, 0.055) 42%, rgba(255, 255, 255, 0.035)),
    rgba(14, 22, 31, 0.84);
  padding: 22px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.2);
}

.trust-item::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--apex-blue), #14b981);
}

.trust-item:nth-child(2)::before {
  background: linear-gradient(90deg, #14b981, var(--apex-blue));
}

.trust-item:nth-child(3)::before {
  background: linear-gradient(90deg, var(--apex-blue), #f6c445);
}

.trust-item:nth-child(4)::before {
  background: linear-gradient(90deg, #f6c445, var(--apex-blue));
}

.trust-icon {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  border: 1px solid rgba(0, 156, 255, 0.34);
  border-radius: 10px;
  background: rgba(0, 156, 255, 0.13);
  color: var(--apex-blue);
}

.trust-icon [data-lucide] {
  width: 17px;
  height: 17px;
}

.trust-item strong {
  display: block;
  color: #ffffff;
  font-family: Sora, Manrope, sans-serif;
  font-size: 28px;
  line-height: 1.1;
}

.trust-item > span:not(.trust-icon) {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.45;
}

.section-local-proof {
  background:
    radial-gradient(circle at 12% 12%, rgba(0, 156, 255, 0.16), transparent 28%),
    #0c1015;
}

.local-proof-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: 22px;
  align-items: stretch;
}

.local-proof-grid > * {
  min-width: 0;
}

.local-map-panel,
.local-map-frame,
.review-panel {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025)),
    #11151b;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
}

.local-map-panel {
  padding: 28px;
}

.local-map-panel .section-heading {
  margin-bottom: 26px;
}

.local-contact-list {
  display: grid;
  gap: 10px;
}

.local-contact-list a {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
  padding: 13px;
  color: rgba(255, 255, 255, 0.76);
  font-weight: 800;
  line-height: 1.35;
}

.local-contact-list [data-lucide] {
  width: 18px;
  height: 18px;
  color: var(--apex-blue);
}

.local-map-frame {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(0, 156, 255, 0.18), rgba(255, 255, 255, 0.04)),
    #11151b;
}

.local-map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
  filter: saturate(0.9) contrast(1.05);
}

.map-fallback-link {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(5, 7, 12, 0.78);
  color: #ffffff;
  font-size: 13px;
  font-weight: 900;
  backdrop-filter: blur(10px);
}

.map-fallback-link [data-lucide] {
  width: 16px;
  height: 16px;
  color: var(--apex-blue);
}

.review-panel {
  grid-column: 1 / -1;
  padding: 0;
}

.google-proof-panel {
  overflow: visible;
  border: 0;
  background: transparent;
  box-shadow: none;
  color: #151a21;
}

.custom-reviews-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: var(--radius);
  background: #f4f6f8;
  padding: 20px 22px;
}

.custom-reviews-header h3 {
  margin: 5px 0 8px;
  color: #151a21;
  font-size: 26px;
  line-height: 1.1;
}

.custom-review-summary {
  display: flex;
  align-items: center;
  gap: 9px;
}

.custom-review-summary strong {
  color: #151a21;
  font-size: 24px;
}

.custom-review-summary span,
.custom-review-stars {
  color: #f9ad00;
  letter-spacing: 0;
}

.custom-review-summary small {
  color: #6b7280;
  font-weight: 700;
}

.button-google {
  min-height: 44px;
  border: 1px solid rgba(0, 156, 255, 0.46);
  background: var(--apex-blue);
  color: #ffffff;
  white-space: nowrap;
}

.button-google:hover {
  background: var(--apex-blue-deep);
}

.custom-review-carousel {
  position: relative;
  max-width: 100%;
  margin-top: 16px;
}

.custom-review-rail {
  display: flex;
  align-items: stretch;
  gap: 16px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  max-width: 100%;
  padding: 2px 52px 12px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  touch-action: pan-x pan-y;
  -webkit-overflow-scrolling: touch;
}

.custom-review-rail::-webkit-scrollbar {
  display: none;
}

.custom-google-review-card {
  display: flex;
  flex: 0 0 clamp(270px, 30vw, 330px);
  flex-direction: column;
  min-width: 0;
  min-height: 500px;
  scroll-snap-align: start;
  border: 1px solid rgba(17, 24, 39, 0.09);
  border-radius: var(--radius);
  background: #f4f6f8;
  color: #151a21;
  padding: 18px;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.18);
}

.custom-review-author {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 10px;
}

.custom-review-avatar {
  display: grid;
  grid-row: 1 / 3;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #118c9b;
  color: #ffffff;
  font-size: 18px;
  font-weight: 900;
}

.custom-google-review-card:nth-child(2n) .custom-review-avatar {
  background: #db5b00;
}

.custom-google-review-card:nth-child(3n) .custom-review-avatar {
  background: #725247;
}

.custom-review-author strong,
.custom-review-author small {
  display: block;
}

.custom-review-author strong {
  color: #151a21;
  font-size: 15px;
}

.custom-review-author small {
  margin-top: 3px;
  color: #7a8089;
  font-size: 12px;
}

.review-source-label {
  grid-column: 2;
  color: #1478d4;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.custom-review-stars {
  margin-top: 17px;
  font-size: 17px;
}

.custom-google-review-card > p {
  margin: 12px 0 0;
  color: #252b34;
  font-size: 15px;
  line-height: 1.55;
}

.client-review-photo {
  position: relative;
  min-height: 220px;
  margin-top: 16px;
  overflow: hidden;
  border-radius: 6px;
  background-color: #dde3e9;
  background-image: url("assets/images/reviews/google-photo-reviews-source.png");
  background-repeat: no-repeat;
  background-size: 2388px 1334px;
}

.review-photo-kevin {
  background-position: -673px -896px;
}

.review-photo-justin {
  background-position: -1852px -896px;
}

.client-review-gallery-preview {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 3px;
  width: 100%;
  min-height: 220px;
  margin-top: 16px;
  overflow: hidden;
  border: 0;
  border-radius: 6px;
  background: #dde3e9;
  padding: 0;
  cursor: zoom-in;
  touch-action: pan-x pan-y;
}

.review-gallery-preview-tile {
  position: relative;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
}

.client-review-gallery-preview.is-single .review-gallery-preview-tile {
  grid-column: 1 / -1;
}

.client-review-gallery-preview.is-single {
  height: 220px;
}

.review-gallery-preview-tile img {
  width: 100%;
  height: 100%;
  min-height: 108px;
  object-fit: cover;
  transition: transform 180ms ease;
}

.client-review-gallery-preview.is-single img {
  min-height: 220px;
}

.client-review-gallery-preview:hover img {
  transform: scale(1.035);
}

.review-gallery-more {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(5, 7, 12, 0.62);
  color: #ffffff;
  font-size: 20px;
  font-weight: 900;
}

body.is-review-gallery-open {
  overflow: hidden;
}

.review-gallery-modal[hidden] {
  display: none;
}

.review-gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 150;
  display: grid;
  place-items: center;
  padding: 18px;
}

.review-gallery-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(1, 4, 8, 0.86);
  backdrop-filter: blur(12px);
}

.review-gallery-dialog {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  width: min(1040px, 100%);
  max-height: calc(100dvh - 36px);
  overflow: hidden;
  border: 1px solid rgba(0, 157, 255, 0.45);
  border-radius: var(--radius);
  background: #091019;
  color: #ffffff;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.62);
}

.review-gallery-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.review-gallery-header span {
  color: var(--apex-blue);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.review-gallery-header h3 {
  margin: 3px 0 0;
  font-size: 24px;
}

.review-gallery-close,
.review-gallery-control {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  cursor: pointer;
}

.review-gallery-close:hover,
.review-gallery-control:hover {
  border-color: var(--apex-blue);
  background: rgba(0, 157, 255, 0.16);
}

.review-gallery-stage {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) 52px;
  align-items: center;
  gap: 12px;
  min-height: 0;
  padding: 18px;
  background: #020509;
}

.review-gallery-stage.is-single {
  grid-template-columns: minmax(0, 1fr);
}

.review-gallery-stage.is-single figure {
  width: min(820px, 100%);
  margin-right: auto;
  margin-left: auto;
}

.review-gallery-stage figure {
  min-width: 0;
  margin: 0;
}

.review-gallery-stage figure > img {
  display: block;
  width: 100%;
  height: min(48vh, 610px);
  object-fit: contain;
}

.review-gallery-stage figcaption {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 12px;
  color: #aeb8c5;
  font-size: 13px;
}

.review-gallery-stage figcaption span:first-child {
  flex: 0 0 auto;
  color: #ffffff;
  font-weight: 900;
}

.review-gallery-thumbnails {
  display: grid;
  grid-auto-columns: 108px;
  grid-auto-flow: column;
  gap: 9px;
  overflow-x: auto;
  padding: 12px 20px 8px;
  scrollbar-width: thin;
}

.review-gallery-thumbnails button {
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border: 2px solid transparent;
  border-radius: 5px;
  background: #151d27;
  padding: 0;
  cursor: pointer;
  opacity: 0.58;
}

.review-gallery-thumbnails button:hover,
.review-gallery-thumbnails button.is-active {
  border-color: var(--apex-blue);
  opacity: 1;
}

.review-gallery-thumbnails img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-gallery-google-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  width: fit-content;
  margin: 3px 20px 16px auto;
  color: #8ecfff;
  font-size: 13px;
  font-weight: 900;
}

.review-gallery-google-link [data-lucide] {
  width: 15px;
  height: 15px;
}

.custom-review-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: fit-content;
  min-height: 44px;
  margin-top: auto;
  padding-top: 10px;
  color: #1478d4;
  font-size: 13px;
  font-weight: 900;
}

.custom-review-link [data-lucide] {
  width: 14px;
  height: 14px;
}

.review-carousel-control {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  background: rgba(5, 7, 12, 0.9);
  color: #ffffff;
  cursor: pointer;
  transform: translateY(-50%);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
}

.review-carousel-control:hover {
  background: var(--apex-blue-deep);
}

.review-carousel-control.is-prev {
  left: 6px;
}

.review-carousel-control.is-next {
  right: 6px;
}

.review-carousel-control [data-lucide] {
  width: 20px;
  height: 20px;
}

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

.bento-card,
.process-card,
.quote-card,
.proof-card,
.hub-card {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025)),
    #11151b;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
}

.bento-card {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  padding: 24px;
}

.bento-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.bento-card-top em {
  color: rgba(255, 255, 255, 0.32);
  font-size: 13px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.bento-card.featured {
  grid-column: span 2;
  background:
    linear-gradient(135deg, rgba(0, 156, 255, 0.18), rgba(255, 255, 255, 0.05)),
    #101721;
}

.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(0, 156, 255, 0.32);
  border-radius: var(--radius);
  background: rgba(0, 156, 255, 0.12);
  color: var(--apex-blue);
}

.card-icon [data-lucide] {
  width: 21px;
  height: 21px;
}

.bento-card h3,
.process-card h3,
.proof-card h3 {
  margin-top: 18px;
  font-size: 22px;
  line-height: 1.2;
}

.bento-card p,
.process-card p,
.proof-card p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.66);
  line-height: 1.62;
}

.section-benefits {
  overflow: hidden;
  background:
    linear-gradient(rgba(255, 255, 255, 0.032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.032) 1px, transparent 1px),
    linear-gradient(135deg, #05070c 0%, #0b1420 52%, #070b11 100%);
  background-size: 42px 42px, 42px 42px, auto;
}

.section-benefits .section-heading {
  max-width: 840px;
}

.section-benefits .section-heading h2 {
  color: #ffffff;
}

.section-benefits .section-heading p {
  color: rgba(238, 246, 255, 0.72);
}

.benefits-matrix {
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 14px;
}

.benefits-matrix .bento-card {
  min-height: 180px;
  border-color: rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025)),
    #10151d;
}

.benefits-matrix .bento-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--apex-blue), rgba(255, 107, 0, 0.75));
  opacity: 0.68;
}

.benefits-matrix .bento-card.featured {
  grid-column: 1 / -1;
  min-height: 520px;
  padding: 30px;
  background:
    linear-gradient(145deg, rgba(0, 156, 255, 0.22), rgba(255, 255, 255, 0.055) 44%, rgba(255, 107, 0, 0.1)),
    #0c1520;
}

.benefits-matrix .bento-card.featured.has-media {
  display: grid;
  grid-template-rows: auto auto auto;
  align-items: stretch;
  min-height: 0;
  padding: 0;
  isolation: isolate;
  background: #0c1520;
}

.benefits-matrix .bento-card.featured.has-media::after {
  display: none;
}

.vehicle-zone-picker {
  position: relative;
  z-index: 5;
  display: grid;
  grid-row: 1;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  padding: 10px;
  border-bottom: 1px solid rgba(0, 156, 255, 0.22);
  background: #050b12;
}

.vehicle-zone-tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  min-height: 46px;
  gap: 8px;
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.035);
  color: rgba(238, 246, 255, 0.68);
  font: inherit;
  font-size: 13px;
  font-weight: 850;
  cursor: pointer;
  transition: border-color 160ms ease, background-color 160ms ease, color 160ms ease, box-shadow 160ms ease;
}

.vehicle-zone-tab [data-lucide] {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.vehicle-zone-tab:hover,
.vehicle-zone-tab:focus-visible {
  border-color: rgba(0, 156, 255, 0.66);
  color: #ffffff;
}

.vehicle-zone-tab.is-active {
  border-color: rgba(0, 156, 255, 0.86);
  background: linear-gradient(180deg, rgba(0, 156, 255, 0.24), rgba(0, 156, 255, 0.1));
  box-shadow: inset 0 -2px 0 var(--apex-blue), 0 8px 22px rgba(0, 111, 214, 0.16);
  color: #ffffff;
}

.benefit-card-media {
  position: relative;
  grid-row: 2;
  width: 100%;
  overflow: hidden;
  background: #02060b;
}

.vehicle-zone-panel[hidden] {
  display: none;
}

.vehicle-zone-panel {
  position: relative;
  width: 100%;
}

.vehicle-zone-panel.is-active {
  animation: vehicle-zone-reveal 220ms ease both;
}

.vehicle-zone-visual {
  position: relative;
  display: grid;
  width: 100%;
  aspect-ratio: 16 / 9;
  place-items: center;
  overflow: hidden;
  background: #02060b;
}

.benefit-card-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  filter: saturate(1) contrast(1.02) brightness(0.96);
}

@keyframes vehicle-zone-reveal {
  from {
    opacity: 0.3;
  }
  to {
    opacity: 1;
  }
}

.mobile-zone-explorer {
  display: none;
}

.benefit-hotspots {
  position: absolute;
  z-index: 3;
  inset: 0;
  pointer-events: none;
}

.benefit-hotspot {
  position: absolute;
  left: var(--hotspot-x);
  top: var(--hotspot-y);
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #ffffff;
  cursor: pointer;
  margin-top: -22px;
  margin-left: -22px;
  pointer-events: auto;
}

.hotspot-dot {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 14px;
  height: 14px;
  border: 3px solid #ffffff;
  border-radius: 50%;
  background: var(--apex-blue);
  box-shadow: 0 0 0 5px rgba(0, 156, 255, 0.26), 0 0 24px rgba(0, 156, 255, 0.9);
  transform: translate(-50%, -50%);
}

.benefit-hotspot::before {
  content: "";
  position: absolute;
  inset: 6px;
  border: 1px solid rgba(0, 156, 255, 0.76);
  border-radius: 50%;
  animation: hotspot-pulse 2s ease-out infinite;
}

.hotspot-popover {
  position: absolute;
  left: calc(100% + 10px);
  top: 50%;
  width: 230px;
  padding: 12px 14px;
  border: 1px solid rgba(0, 156, 255, 0.46);
  border-radius: 6px;
  background: rgba(4, 10, 17, 0.94);
  box-shadow: 0 16px 46px rgba(0, 0, 0, 0.45);
  color: #ffffff;
  opacity: 0;
  pointer-events: none;
  text-align: left;
  transform: translate(8px, -50%);
  transition: opacity 160ms ease, transform 160ms ease;
  backdrop-filter: blur(12px);
}

.benefit-hotspot.opens-left .hotspot-popover {
  right: calc(100% + 10px);
  left: auto;
  transform: translate(-8px, -50%);
}

.hotspot-popover strong,
.hotspot-popover span {
  display: block;
}

.hotspot-popover strong {
  color: #ffffff;
  font-size: 14px;
  line-height: 1.2;
}

.hotspot-popover span {
  margin-top: 5px;
  color: rgba(238, 246, 255, 0.72);
  font-size: 12px;
  line-height: 1.45;
}

.benefit-hotspot.is-active,
.benefit-hotspot.is-tour {
  z-index: 4;
}

.benefit-hotspot.is-active .hotspot-popover,
.benefit-hotspot.is-tour .hotspot-popover,
.benefit-hotspot:focus-visible .hotspot-popover {
  opacity: 1;
  transform: translate(0, -50%);
}

@media (hover: hover) {
  .benefit-hotspot:hover {
    z-index: 4;
  }

  .benefit-hotspot:hover .hotspot-popover {
    opacity: 1;
    transform: translate(0, -50%);
  }
}

@keyframes hotspot-pulse {
  0% {
    opacity: 0.9;
    transform: scale(0.65);
  }
  70%,
  100% {
    opacity: 0;
    transform: scale(1.7);
  }
}

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

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

  .benefit-hotspot::before {
    animation: none;
  }

  .vehicle-zone-panel.is-active {
    animation: none;
  }
}

.benefit-card-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.benefits-matrix .bento-card.featured.has-media .benefit-card-content {
  display: grid;
  grid-row: 3;
  grid-template-columns: minmax(260px, 0.8fr) minmax(360px, 1.2fr);
  gap: 10px 30px;
  align-items: end;
  padding: 24px 28px 28px;
  border-top: 1px solid rgba(0, 156, 255, 0.2);
  background: linear-gradient(135deg, rgba(0, 156, 255, 0.12), rgba(7, 12, 19, 0.98) 58%);
}

.benefits-matrix .bento-card.featured.has-media .bento-card-top {
  grid-column: 1;
  grid-row: 1;
  margin-bottom: 0;
}

.benefits-matrix .bento-card.featured.has-media h3,
.benefits-matrix .bento-card.featured.has-media p {
  text-shadow: none;
}

.benefits-matrix .bento-card.featured.has-media h3 {
  grid-column: 1;
  grid-row: 2;
  margin-top: 0;
}

.benefits-matrix .bento-card.featured.has-media p {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: center;
  margin-top: 0;
}

.benefits-matrix .bento-card:nth-child(n + 2) {
  grid-column: span 3;
}

.benefits-matrix .bento-card.featured h3 {
  max-width: 470px;
  font-size: 32px;
}

.benefits-matrix .bento-card.featured p {
  max-width: 520px;
  font-size: 17px;
}

.benefits-matrix .bento-card h3 {
  color: #ffffff;
}

.benefits-matrix .bento-card:hover {
  border-color: rgba(0, 156, 255, 0.42);
  transform: translateY(-2px);
  transition: transform 180ms ease, border-color 180ms ease;
}

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

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

.image-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: #11151b;
  box-shadow: var(--shadow);
}

.image-frame img {
  width: 100%;
  height: 100%;
  min-height: 390px;
  object-fit: cover;
}

.image-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(5, 7, 12, 0.7));
  pointer-events: none;
}

.image-caption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(5, 7, 12, 0.72);
  color: #ffffff;
  padding: 14px;
  backdrop-filter: blur(10px);
}

.image-caption strong {
  display: block;
}

.image-caption span {
  display: block;
  color: rgba(255, 255, 255, 0.64);
  font-size: 13px;
}

.quote-build-panel {
  display: grid;
  gap: 18px;
  border: 1px solid rgba(0, 156, 255, 0.26);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(0, 156, 255, 0.14), rgba(255, 255, 255, 0.04) 48%, rgba(255, 107, 0, 0.08)),
    #0a1018;
  padding: 24px;
  box-shadow: var(--shadow);
}

.quote-build-header {
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
  padding: 16px;
}

.quote-build-header span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--apex-blue);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.quote-build-header [data-lucide] {
  width: 16px;
  height: 16px;
}

.quote-build-header strong {
  display: block;
  margin-top: 8px;
  color: #ffffff;
  font-family: Sora, Manrope, sans-serif;
  font-size: clamp(22px, 2.4vw, 34px);
  line-height: 1.12;
}

.quote-build-list {
  display: grid;
  gap: 12px;
}

.quote-build-list article {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background: rgba(5, 7, 12, 0.55);
  padding: 14px;
}

.quote-build-list article > [data-lucide] {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(0, 156, 255, 0.3);
  border-radius: var(--radius);
  background: rgba(0, 156, 255, 0.12);
  color: var(--apex-blue);
  padding: 8px;
}

.quote-build-list strong {
  display: block;
  color: #ffffff;
  font-weight: 900;
  line-height: 1.25;
}

.quote-build-list span {
  display: block;
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 14px;
  line-height: 1.45;
}

.quote-build-panel .button {
  width: fit-content;
}

.quote-card {
  padding: 30px;
}

.quote-card h2 {
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.1;
}

.quote-card p {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
  line-height: 1.65;
}

.comparison-section-inner {
  display: grid;
  gap: 26px;
}

.comparison-main {
  align-items: center;
}

.comparison-main .comparison-primary {
  border: 0;
  background: transparent;
  padding: 18px 28px 18px 0;
  box-shadow: none;
}

.comparison-main .quote-build-panel {
  align-self: stretch;
}

.comparison-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.comparison-list li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  align-items: start;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
  padding: 14px;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.5;
}

.comparison-list [data-lucide] {
  width: 20px;
  height: 20px;
  color: var(--apex-blue);
}

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

.comparison-proof-row li {
  min-height: 92px;
  border: 0;
  border-top: 1px solid rgba(0, 156, 255, 0.46);
  border-radius: 0;
  background: linear-gradient(180deg, rgba(0, 156, 255, 0.08), transparent 82%);
  padding: 17px 12px 8px 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
}

.comparison-section-compact {
  overflow: hidden;
  padding: 52px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background:
    radial-gradient(circle at 88% 18%, rgba(0, 156, 255, 0.13), transparent 30%),
    #05070c;
}

.comparison-compact-inner {
  display: grid;
  gap: 42px;
}

.comparison-compact-copy {
  max-width: 900px;
}

.comparison-compact-copy h2 {
  max-width: 860px;
  margin-top: 12px;
  color: #ffffff;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 1.02;
}

.comparison-compact-copy p {
  max-width: 720px;
  margin: 20px 0 0;
  color: rgba(238, 246, 255, 0.72);
  font-size: 18px;
  line-height: 1.62;
}

.section-signature {
  background:
    radial-gradient(circle at 18% 30%, rgba(0, 156, 255, 0.14), transparent 32%),
    radial-gradient(circle at 86% 22%, rgba(255, 107, 0, 0.1), transparent 30%),
    linear-gradient(180deg, #05070c 0%, #0b1018 100%);
}

.section-visuals {
  background: #05070c;
}

.visual-grid {
  display: grid;
  grid-template-columns: 1.12fr 0.94fr 0.94fr;
  gap: 16px;
}

.visual-card {
  position: relative;
  min-height: 315px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: #11151b;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.24);
}

.visual-card:first-child {
  min-height: 390px;
}

.visual-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  filter: saturate(0.96) contrast(1.05);
  transition: transform 280ms ease;
}

.visual-card:hover img {
  transform: scale(1.025);
}

.visual-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(5, 7, 12, 0.84));
  pointer-events: none;
}

.visual-card figcaption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 1;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
}

.visual-card strong {
  display: block;
  color: #ffffff;
  font-size: 15px;
  font-weight: 900;
}

.visual-card span {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  border: 1px solid rgba(0, 156, 255, 0.28);
  border-radius: 999px;
  background: rgba(0, 156, 255, 0.14);
  color: #d8f1ff;
  padding: 5px 8px;
  font-size: 11px;
  font-weight: 900;
  white-space: nowrap;
}

.section-action-preview {
  background:
    linear-gradient(180deg, #05070c 0%, #08101b 100%);
  color: #ffffff;
}

.action-preview-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.action-preview-media {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: #0a1018;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.36);
}

.action-preview-media img {
  display: block;
  width: 100%;
  height: auto;
}

.action-preview-copy {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 34px;
  align-items: center;
  max-width: none;
  padding-top: 28px;
}

.action-preview-copy h2 {
  margin-top: 12px;
  color: #ffffff;
  font-size: clamp(32px, 3vw, 46px);
  line-height: 1.1;
}

.action-preview-copy p {
  margin: 18px 0 0;
  max-width: 760px;
  color: rgba(238, 246, 255, 0.74);
  font-size: 17px;
  line-height: 1.62;
}

.action-preview-copy .button {
  margin-top: 0;
}

.section-wrap-render-story {
  overflow: hidden;
  padding: 56px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background:
    radial-gradient(circle at 84% 20%, rgba(0, 156, 255, 0.12), transparent 28%),
    linear-gradient(180deg, #05070c 0%, #08101a 48%, #05070c 100%);
}

.wrap-render-story-inner {
  display: grid;
  gap: 18px;
}

.wrap-render-story-heading {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(300px, 0.7fr);
  column-gap: 54px;
  align-items: end;
}

.wrap-render-story-heading .section-kicker,
.wrap-render-story-heading h2 {
  grid-column: 1;
}

.wrap-render-story-heading h2 {
  margin-top: 12px;
  max-width: 760px;
  color: #ffffff;
  font-size: clamp(40px, 4.4vw, 58px);
  line-height: 1.03;
}

.wrap-render-story-heading p {
  grid-column: 2;
  grid-row: 1 / span 2;
  margin: 0 0 4px;
  max-width: 560px;
  color: rgba(238, 246, 255, 0.72);
  font-size: 17px;
  line-height: 1.62;
}

.wrap-story-lifestyle {
  margin: 4px 0 0;
  overflow: hidden;
  border: 1px solid rgba(0, 156, 255, 0.28);
  border-radius: var(--radius);
  background: #07101a;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.34);
}

.wrap-story-lifestyle img {
  display: block;
  width: 100%;
  height: 420px;
  aspect-ratio: 21 / 9;
  object-fit: cover;
  object-position: center 58%;
}

.wrap-story-lifestyle figcaption,
.wrap-story-board figcaption {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(7, 13, 21, 0.96);
  color: rgba(238, 246, 255, 0.66);
  padding: 12px 15px;
  font-size: 12px;
  font-weight: 800;
}

.wrap-story-bridge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 38px;
  color: rgba(238, 246, 255, 0.76);
  font-size: 13px;
  letter-spacing: 0;
}

.wrap-story-bridge span {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(0, 156, 255, 0.4);
  border-radius: 50%;
  background: rgba(0, 156, 255, 0.12);
  color: var(--apex-blue);
}

.wrap-story-bridge [data-lucide] {
  width: 15px;
  height: 15px;
}

.wrap-story-board {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}

.wrap-story-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
}

.wrap-story-footer .existing-design-note {
  margin-top: 0;
}

.wrap-story-footer .section-actions {
  flex-wrap: nowrap;
  margin-top: 0;
}

.section-real-world-example {
  background:
    linear-gradient(180deg, #ffffff 0%, #eef4f8 100%);
  color: var(--paper-text);
}

.real-world-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.34fr);
  gap: 32px;
  align-items: center;
}

.real-world-copy h2 {
  margin-top: 12px;
  color: var(--paper-text);
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.08;
}

.real-world-copy p {
  margin: 18px 0 0;
  color: rgba(20, 24, 33, 0.7);
  font-size: 17px;
  line-height: 1.6;
}

.real-world-actions {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.real-world-actions .button {
  width: fit-content;
}

.real-world-actions span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(20, 24, 33, 0.56);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.4;
}

.real-world-actions [data-lucide] {
  width: 16px;
  height: 16px;
  color: var(--apex-blue);
}

.real-world-image {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(20, 24, 33, 0.12);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 28px 80px rgba(13, 25, 44, 0.18);
}

.real-world-image img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.real-world-image figcaption {
  border-top: 1px solid rgba(20, 24, 33, 0.08);
  background: rgba(255, 255, 255, 0.92);
  color: rgba(20, 24, 33, 0.62);
  padding: 12px 14px;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.45;
}

.section-real-work {
  background: #05070c;
}

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

.render-board-frame {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(0, 156, 255, 0.3);
  border-radius: var(--radius);
  background: #05070c;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.36);
}

.render-board-frame img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.render-board-frame figcaption {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(90deg, rgba(0, 156, 255, 0.14), rgba(255, 255, 255, 0.04));
  color: rgba(255, 255, 255, 0.72);
  padding: 14px 16px;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.45;
}

.existing-design-note {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  margin-top: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-left: 3px solid var(--apex-blue);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
  padding: 18px 20px;
}

.existing-design-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(0, 156, 255, 0.35);
  border-radius: 6px;
  background: rgba(0, 156, 255, 0.1);
  color: var(--apex-blue);
}

.existing-design-icon [data-lucide] {
  width: 21px;
  height: 21px;
}

.existing-design-note strong {
  display: block;
  color: #ffffff;
  font-size: 17px;
}

.existing-design-note p {
  margin: 5px 0 0;
  color: rgba(255, 255, 255, 0.64);
  line-height: 1.5;
}

.existing-design-note .button {
  min-height: 42px;
  padding: 11px 15px;
}

.real-work-card {
  position: relative;
  min-height: 285px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: #11151b;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.22);
}

.real-work-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  filter: saturate(1.02) contrast(1.03);
}

.real-work-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 52%, rgba(5, 7, 12, 0.84));
  pointer-events: none;
}

.real-work-card figcaption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 1;
}

.real-work-card strong,
.real-work-card span {
  display: block;
}

.real-work-card strong {
  color: #ffffff;
  font-size: 15px;
  font-weight: 900;
}

.real-work-card span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.35;
}

.signature-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: 42px;
  align-items: center;
}

.signature-grid .section-heading {
  margin-bottom: 0;
}

.route-media-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 0.72fr);
  gap: 22px;
  align-items: center;
}

.route-media-copy {
  align-self: center;
  margin-bottom: 0;
}

.route-panel,
.tint-simulator,
.coverage-card,
.pathway-card {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025)),
    #11151b;
  box-shadow: var(--shadow);
}

.route-panel {
  display: grid;
  gap: 18px;
  overflow: hidden;
  padding: 18px;
  background:
    linear-gradient(145deg, rgba(0, 156, 255, 0.18), rgba(255, 107, 0, 0.08) 58%, rgba(255, 255, 255, 0.045)),
    #0a1018;
}

.route-panel-compact {
  align-self: center;
  min-height: 0;
}

.route-panel-compact .route-panel-head {
  align-items: flex-start;
  flex-direction: column;
  height: auto;
}

.route-panel-compact .route-panel-head em {
  white-space: normal;
}

.route-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(0, 156, 255, 0.18), rgba(255, 255, 255, 0.045));
  padding: 14px 16px;
}

.route-panel-head span,
.route-panel-head em {
  color: var(--apex-blue);
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.route-panel-head strong {
  display: block;
  margin-top: 4px;
  color: #ffffff;
  font-family: Sora, Manrope, sans-serif;
  font-size: clamp(18px, 2vw, 26px);
  line-height: 1.08;
}

.route-panel-head em {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  white-space: nowrap;
  border: 1px solid rgba(0, 156, 255, 0.36);
  border-radius: 999px;
  background: rgba(0, 156, 255, 0.12);
  color: #d8f1ff;
  padding: 7px 10px;
}

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

.route-moments-horizontal {
  grid-column: 1 / -1;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.route-moments article,
.coverage-list article {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.082), rgba(255, 255, 255, 0.03));
  padding: 15px;
}

.route-moments article {
  display: flex;
  min-height: 176px;
  flex-direction: column;
  justify-content: space-between;
  padding: 18px;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.route-moments article:hover {
  transform: translateY(-2px);
  border-color: color-mix(in srgb, var(--moment-accent, var(--apex-blue)) 54%, rgba(255, 255, 255, 0.16));
  background:
    radial-gradient(circle at 18% 16%, color-mix(in srgb, var(--moment-accent, var(--apex-blue)) 18%, transparent), transparent 38%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035));
}

.route-moments article::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: var(--moment-accent, var(--apex-blue));
}

.route-moments [data-lucide] {
  width: 20px;
  height: 20px;
  color: var(--moment-accent, var(--apex-blue));
}

.route-moments strong,
.coverage-list strong {
  display: block;
  margin-top: 10px;
  color: #ffffff;
  font-weight: 900;
}

.route-moments span,
.coverage-list span {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.45;
}

.route-moments .route-moment-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin: 0;
  border: 1px solid color-mix(in srgb, var(--moment-accent, var(--apex-blue)) 46%, rgba(255, 255, 255, 0.1));
  border-radius: 14px;
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--moment-accent, var(--apex-blue)) 22%, transparent), rgba(255, 255, 255, 0.045));
  color: var(--moment-accent, var(--apex-blue));
}

.route-moments .route-moment-icon [data-lucide] {
  width: 23px;
  height: 23px;
}

.tint-simulator {
  padding: 18px;
}

.shade-stage {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  min-height: 360px;
  background: #05070c;
}

.shade-stage img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  filter: saturate(1.02) contrast(1.04);
}

.shade-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 22, 38, var(--shade-alpha, 0.38)), rgba(0, 156, 255, calc(var(--shade-alpha, 0.38) * 0.22))),
    rgba(0, 0, 0, calc(var(--shade-alpha, 0.38) * 0.48));
  mix-blend-mode: multiply;
  pointer-events: none;
}

.shade-controls {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 12px;
}

.shade-controls button {
  min-height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  cursor: pointer;
  font-size: 13px;
  font-weight: 900;
}

.shade-controls button.is-active {
  border-color: rgba(0, 156, 255, 0.54);
  background: rgba(0, 156, 255, 0.18);
}

.shade-result {
  min-height: 46px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.55;
}

.coverage-card {
  display: grid;
  gap: 18px;
  padding: 20px;
}

.vehicle-map {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 26%, rgba(0, 156, 255, 0.22), transparent 35%),
    linear-gradient(180deg, #07101a, #0b1118);
}

.vehicle-map::before {
  content: "";
  position: absolute;
  left: 21%;
  right: 21%;
  top: 22%;
  bottom: 16%;
  border: 2px solid rgba(255, 255, 255, 0.26);
  border-radius: 42% 42% 18% 18% / 24% 24% 18% 18%;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(0, 156, 255, 0.06);
}

.vehicle-map::after {
  content: "";
  position: absolute;
  left: 32%;
  right: 32%;
  top: 32%;
  height: 72px;
  border: 1px solid rgba(0, 156, 255, 0.42);
  border-radius: 50% 50% 14% 14%;
  background: rgba(0, 156, 255, 0.12);
}

.zone {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 156, 255, 0.44);
  border-radius: var(--radius);
  background: rgba(0, 156, 255, 0.16);
  color: #d8f1ff;
  padding: 7px 9px;
  font-size: 12px;
  font-weight: 900;
}

.zone-hood {
  left: 39%;
  top: 48%;
}

.zone-bumper {
  left: 35%;
  bottom: 13%;
}

.zone-mirror-left {
  left: 13%;
  top: 47%;
}

.zone-mirror-right {
  right: 13%;
  top: 47%;
}

.zone-headlight-left {
  left: 27%;
  bottom: 25%;
}

.zone-headlight-right {
  right: 27%;
  bottom: 25%;
}

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

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

.pathway-card {
  min-height: 245px;
  padding: 24px;
}

.pathway-card h3 {
  margin-top: 18px;
  font-size: 22px;
  line-height: 1.2;
}

.pathway-card p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.66);
  line-height: 1.62;
}

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

.process-card {
  padding: 24px;
}

.process-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--apex-blue);
  font-size: 13px;
  font-weight: 900;
}

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

.proof-card {
  background: #ffffff;
  border-color: rgba(20, 24, 33, 0.1);
  color: var(--paper-text);
  padding: 24px;
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.08);
}

.proof-card h3 {
  color: var(--paper-text);
}

.proof-card p {
  color: rgba(20, 24, 33, 0.68);
}

.proof-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: var(--radius);
  background: rgba(0, 156, 255, 0.1);
  color: var(--apex-blue);
  margin-bottom: 12px;
}

.proof-step-label {
  display: block;
  width: fit-content;
  margin-top: 2px;
  border: 1px solid rgba(0, 156, 255, 0.24);
  border-radius: 999px;
  background: rgba(0, 156, 255, 0.08);
  color: var(--apex-blue);
  padding: 5px 9px;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
}

.proof-step-label + h3 {
  margin-top: 14px;
}

.proof-icon [data-lucide] {
  width: 21px;
  height: 21px;
}

.section-process-showcase {
  overflow: hidden;
  background:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(180deg, #06090e 0%, #0b111a 52%, #05070c 100%);
  background-size: 46px 46px, 46px 46px, auto;
  color: #ffffff;
}

.section-process-showcase .section-heading {
  max-width: 840px;
}

.section-process-showcase .section-heading h2 {
  color: #ffffff;
}

.section-process-showcase .copy-muted {
  color: rgba(238, 246, 255, 0.72);
}

.process-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.process-timeline::before {
  content: "";
  position: absolute;
  top: 56px;
  left: 12%;
  right: 12%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 156, 255, 0.55), rgba(255, 107, 0, 0.45), transparent);
}

.process-step-card {
  position: relative;
  overflow: hidden;
  min-height: 300px;
  border-color: rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.024)),
    #10151d;
  color: #ffffff;
}

.process-step-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-top: 3px solid rgba(0, 156, 255, 0.78);
  pointer-events: none;
}

.process-step-card h3 {
  color: #ffffff;
}

.process-step-card p {
  color: rgba(238, 246, 255, 0.7);
}

.section-process-showcase .proof-icon {
  position: relative;
  z-index: 1;
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
  border: 1px solid rgba(0, 156, 255, 0.32);
  background: rgba(0, 156, 255, 0.13);
}

.section-process-showcase .proof-step-label {
  border-color: rgba(0, 156, 255, 0.3);
  background: rgba(0, 156, 255, 0.12);
}

.process-step-card.is-bonus {
  grid-column: 1 / -1;
  min-height: auto;
  padding: 30px;
  border-color: rgba(255, 107, 0, 0.32);
  background:
    linear-gradient(120deg, rgba(0, 156, 255, 0.18), rgba(255, 255, 255, 0.055) 46%, rgba(255, 107, 0, 0.16)),
    #0b111a;
}

.process-step-card.is-bonus::before {
  border-top-color: rgba(255, 107, 0, 0.9);
}

.process-step-card.is-bonus h3 {
  font-size: 28px;
}

.process-step-card.is-bonus .proof-step-label {
  border-color: rgba(255, 107, 0, 0.35);
  background: rgba(255, 107, 0, 0.12);
  color: #ffb47a;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  background: #0d141d;
  overflow: hidden;
}

.faq-button {
  appearance: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: 100%;
  min-height: 62px;
  border: 0;
  background: #111b26;
  color: rgba(255, 255, 255, 0.94);
  padding: 18px 20px;
  text-align: left;
  cursor: pointer;
  font-weight: 900;
}

.faq-button:hover {
  background: #152232;
}

.faq-item.is-open .faq-button {
  border-bottom: 1px solid rgba(0, 156, 255, 0.2);
  background: #122337;
  color: #ffffff;
}

.faq-button [data-lucide] {
  flex: 0 0 auto;
  width: 19px;
  height: 19px;
  color: var(--apex-blue);
  transition: transform 180ms ease;
}

.faq-item.is-open .faq-button [data-lucide] {
  transform: rotate(180deg);
}

.faq-panel {
  display: none;
  padding: 18px 20px 20px;
  background: #0b121b;
  color: rgba(229, 241, 249, 0.78);
  line-height: 1.65;
}

.faq-item.is-open .faq-panel {
  display: block;
}

.final-cta {
  position: relative;
  overflow: hidden;
  background: #05070c;
}

.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 7, 12, 0.96), rgba(5, 7, 12, 0.72)),
    var(--final-bg, none);
  background-size: cover;
  background-position: center;
  opacity: 0.92;
}

.final-cta .section-inner {
  position: relative;
  z-index: 1;
}

.final-box {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 26px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(12, 16, 21, 0.72);
  padding: 32px;
  backdrop-filter: blur(14px);
}

.final-box h2 {
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.1;
}

.final-box p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
  line-height: 1.6;
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: #05070c;
  padding: 34px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.58);
  font-size: 14px;
}

.footer-inner img {
  width: 220px;
}

.footer-details {
  text-align: right;
  line-height: 1.55;
}

.footer-legal {
  display: flex;
  justify-content: flex-end;
  gap: 18px;
  margin-top: 8px;
}

.footer-legal a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  transition: color 160ms ease;
}

.footer-legal a:hover,
.footer-legal a:focus-visible {
  color: var(--blue);
}

.hub-hero {
  position: relative;
  min-height: 100vh;
  padding: 76px 0;
  background:
    linear-gradient(90deg, rgba(5, 7, 12, 0.98), rgba(5, 7, 12, 0.72)),
    url("./assets/images/apex-shop-banner.jpg");
  background-size: cover;
  background-position: center;
}

.hub-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.hub-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-bottom: 70px;
}

.hub-header img {
  width: min(320px, 65vw);
}

.hub-copy {
  max-width: 840px;
}

.hub-copy h1 {
  max-width: 840px;
}

.hub-copy p {
  max-width: 690px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 20px;
  line-height: 1.6;
}

.hub-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 44px;
}

.hub-card {
  min-height: 245px;
  padding: 22px;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.hub-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 156, 255, 0.4);
  background:
    linear-gradient(180deg, rgba(0, 156, 255, 0.12), rgba(255, 255, 255, 0.04)),
    #11151b;
}

.hub-card h2 {
  margin-top: 18px;
  font-size: 22px;
  line-height: 1.2;
}

.hub-card p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.64);
  line-height: 1.55;
}

.hub-card span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: var(--apex-blue);
  font-weight: 900;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

[hidden] {
  display: none !important;
}

@media (max-width: 1060px) {
  .nav-links {
    display: none;
  }

  .mobile-menu-toggle {
    display: inline-flex;
  }

  .mobile-anchor-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 16px;
    z-index: 40;
    width: min(300px, calc(100% - 32px));
    grid-template-columns: 1fr;
    gap: 3px;
    border: 1px solid rgba(0, 156, 255, 0.32);
    border-radius: 6px;
    background: #090d13;
    padding: 7px;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.46);
  }

  .mobile-anchor-nav:not([hidden]) {
    display: grid;
  }

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

  .lead-panel {
    max-width: 620px;
  }

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

  .section-trust.trust-three-up .trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section-trust.trust-three-up .trust-item:last-child {
    grid-column: 1 / -1;
  }

  .split,
  .signature-grid,
  .route-media-layout,
  .local-proof-grid {
    grid-template-columns: 1fr;
  }

  .bento-grid,
  .process-grid,
  .process-timeline,
  .proof-grid,
  .visual-grid,
  .pathway-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .visual-card:first-child {
    grid-column: span 2;
  }

  .action-preview-grid {
    grid-template-columns: 1fr;
  }

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

  .action-preview-copy {
    max-width: none;
  }

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

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

  .bento-card.featured {
    grid-column: span 2;
  }

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

  .benefits-matrix .bento-card.featured {
    grid-column: span 2;
    grid-row: auto;
    min-height: 300px;
  }

  .benefits-matrix .bento-card.featured.has-media {
    grid-template-rows: auto auto auto;
  }

  .benefits-matrix .bento-card:hover {
    transform: none;
  }

  .benefits-matrix .bento-card.featured.has-media .benefit-card-content {
    grid-template-columns: 1fr;
  }

  .benefits-matrix .bento-card.featured.has-media .bento-card-top,
  .benefits-matrix .bento-card.featured.has-media h3,
  .benefits-matrix .bento-card.featured.has-media p {
    grid-column: 1;
    grid-row: auto;
  }

  .benefits-matrix .bento-card:nth-child(n + 2) {
    grid-column: span 1;
  }

  .process-timeline::before {
    display: none;
  }

  .process-step-card.is-bonus {
    grid-column: 1 / -1;
  }
}

@media (min-width: 721px) {
  .hero-wrap ~ .section-benefits,
  .hero-wrap ~ .section-visuals,
  .hero-wrap ~ .section-process-showcase,
  .hero-wrap ~ .section-local-proof {
    padding: 76px 0;
  }

  .hero-wrap ~ #faq {
    padding: 50px 0;
  }

  .hero-wrap ~ .final-cta {
    padding: 60px 0;
  }
}

@media (max-width: 720px) {
  .nav-inner {
    min-height: 66px;
  }

  .button {
    min-height: 44px;
    padding: 11px 14px;
    font-size: 14px;
    line-height: 1.2;
    text-align: center;
    white-space: normal;
  }

  .button svg,
  .button [data-lucide] {
    width: 16px;
    height: 16px;
  }

  .hero-actions .button {
    min-height: 48px;
    padding: 12px 16px;
    font-size: 15px;
  }

  .site-subbar-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 3px;
    padding: 5px 0;
    font-size: 12px;
    line-height: 1.25;
  }

  .site-subbar a {
    gap: 5px;
    min-height: 18px;
  }

  .site-subbar [data-lucide] {
    width: 13px;
    height: 13px;
  }

  .header-cta {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    padding: 46px 0 34px;
  }

  .hero-wrap .hero-media img {
    top: 58%;
    right: -60vw;
    width: 132vw;
    opacity: 0.48;
    filter: saturate(1.04) contrast(1.04) brightness(0.82);
  }

  .hero-wrap .hero-media::after {
    background:
      linear-gradient(90deg, rgba(5, 7, 12, 0.98) 0%, rgba(5, 7, 12, 0.92) 64%, rgba(5, 7, 12, 0.7) 100%),
      linear-gradient(180deg, rgba(5, 7, 12, 0.22) 0%, rgba(5, 7, 12, 0.38) 50%, #05070c 100%);
  }

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

  .hero-copy .micro-proof {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    width: 100%;
    margin-top: 20px;
  }

  .hero-copy .micro-proof li {
    min-height: 42px;
    padding: 9px 10px;
    border-left: 2px solid var(--apex-blue);
    background: linear-gradient(90deg, rgba(0, 156, 255, 0.12), rgba(255, 255, 255, 0.035));
    color: rgba(255, 255, 255, 0.82);
    font-size: 12px;
    line-height: 1.3;
  }

  .hero-copy .micro-proof li:last-child {
    grid-column: 1 / -1;
  }

  .hero-copy .micro-proof [data-lucide] {
    flex: 0 0 auto;
    width: 22px;
    height: 22px;
    border-radius: 4px;
    background: rgba(0, 156, 255, 0.14);
    padding: 4px;
  }

  .quote-build-panel .button {
    width: 100%;
    max-width: 100%;
    padding-right: 14px;
    padding-left: 14px;
    line-height: 1.25;
    text-align: center;
    white-space: normal;
  }

  h1 {
    font-size: 40px;
    line-height: 1.06;
  }

  .hero-subhead {
    font-size: 17px;
    line-height: 1.52;
  }

  .section-heading h2,
  .comparison-compact-copy h2,
  .wrap-render-story-heading h2,
  .quote-card h2,
  .action-preview-copy h2 {
    font-size: 32px;
    line-height: 1.12;
  }

  .form-grid,
  .trust-grid,
  .bento-grid,
  .process-grid,
  .process-timeline,
  .proof-grid,
  .pathway-grid,
  .visual-grid,
  .review-grid,
  .real-work-grid,
  .hub-grid,
  .file-actions,
  .route-moments,
  .coverage-list,
  .final-box {
    grid-template-columns: 1fr;
  }

  .section-trust.trust-three-up .trust-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .section-trust.trust-three-up .trust-item,
  .section-trust.trust-three-up .trust-item:last-child {
    display: grid;
    grid-template-columns: 40px minmax(0, 1fr);
    grid-column: auto;
    column-gap: 12px;
    row-gap: 4px;
    min-height: 0;
    padding: 15px;
  }

  .section-trust.trust-three-up .trust-icon {
    grid-row: 1 / span 2;
    align-self: start;
    width: 36px;
    height: 36px;
  }

  .section-trust.trust-three-up .trust-item strong {
    grid-column: 2;
    font-size: 19px;
    line-height: 1.2;
  }

  .section-trust.trust-three-up .trust-item > span:not(.trust-icon) {
    grid-column: 2;
    margin-top: 0;
    font-size: 13px;
    line-height: 1.4;
  }

  .custom-reviews-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .custom-reviews-header .button-google {
    width: 100%;
  }

  .custom-review-rail {
    align-items: flex-start;
    width: 100%;
    min-width: 0;
    padding-right: 0;
    padding-left: 0;
    overscroll-behavior-x: contain;
    contain: inline-size;
  }

  .custom-google-review-card {
    flex-basis: min(310px, calc(100% - 18px));
    min-height: 470px;
  }

  .custom-review-link {
    margin-top: 18px;
  }

  .review-carousel-control {
    display: none;
  }

  .review-gallery-modal {
    padding: 0;
  }

  .review-gallery-dialog {
    width: 100%;
    max-height: 100dvh;
    min-height: 100dvh;
    border: 0;
    border-radius: 0;
  }

  .review-gallery-header {
    padding: 14px 16px;
  }

  .review-gallery-header h3 {
    font-size: 19px;
  }

  .review-gallery-close,
  .review-gallery-control {
    width: 40px;
    height: 40px;
  }

  .review-gallery-stage {
    flex: 1;
    grid-template-columns: 40px minmax(0, 1fr) 40px;
    gap: 5px;
    padding: 10px 6px;
  }

  .review-gallery-stage figure > img {
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .review-gallery-stage figcaption {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
    padding: 0 4px;
    font-size: 12px;
  }

  .review-gallery-thumbnails {
    grid-auto-columns: 84px;
    padding: 10px 14px 7px;
  }

  .review-gallery-google-link {
    margin: 5px 14px 14px auto;
  }

  .bento-card.featured {
    grid-column: auto;
  }

  .benefits-matrix .bento-card.featured,
  .benefits-matrix .bento-card:nth-child(n + 2),
  .process-step-card.is-bonus {
    grid-column: auto;
  }

  .benefits-matrix .bento-card.featured {
    min-height: 240px;
  }

  .benefits-matrix .bento-card.featured.has-media {
    grid-template-rows: auto auto auto;
  }

  .vehicle-zone-picker {
    gap: 4px;
    padding: 8px;
  }

  .vehicle-zone-tab {
    flex-direction: column;
    min-height: 50px;
    gap: 3px;
    padding: 5px 3px;
    font-size: 12px;
    line-height: 1.1;
  }

  .vehicle-zone-tab [data-lucide] {
    width: 16px;
    height: 16px;
  }

  .vehicle-zone-visual .benefit-card-image {
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
    object-fit: contain;
    object-position: center;
  }

  .benefits-matrix .bento-card.featured.has-media .benefit-card-content {
    display: block;
    padding: 22px;
  }

  .benefits-matrix .bento-card.featured.has-media .bento-card-top,
  .benefits-matrix .bento-card.featured.has-media h3 {
    margin-bottom: 14px;
  }

  .hotspot-popover {
    display: none;
  }

  .benefit-hotspot.is-mobile-selected .hotspot-dot {
    border-color: var(--apex-blue);
    background: #ffffff;
    box-shadow: 0 0 0 6px rgba(0, 156, 255, 0.34), 0 0 28px rgba(0, 156, 255, 1);
  }

  .mobile-zone-explorer {
    display: block;
    grid-row: 2;
    padding: 18px 22px 0;
    border-top: 1px solid rgba(0, 156, 255, 0.24);
    background: #08111b;
  }

  .mobile-zone-explorer label > span:first-child {
    display: block;
    color: var(--apex-blue);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
  }

  .mobile-zone-select-wrap {
    position: relative;
    display: block;
    margin-top: 8px;
  }

  .mobile-zone-select-wrap select {
    width: 100%;
    min-height: 48px;
    appearance: none;
    border: 1px solid rgba(0, 156, 255, 0.5);
    border-radius: 5px;
    background: #111c28;
    color: #ffffff;
    padding: 0 44px 0 14px;
    font: inherit;
    font-weight: 800;
    cursor: pointer;
  }

  .mobile-zone-select-wrap [data-lucide] {
    position: absolute;
    right: 14px;
    top: 50%;
    width: 18px;
    height: 18px;
    color: var(--apex-blue);
    pointer-events: none;
    transform: translateY(-50%);
  }

  .mobile-zone-detail {
    margin-top: 12px;
    border-left: 3px solid var(--apex-blue);
    border-radius: 0 5px 5px 0;
    background: rgba(0, 156, 255, 0.09);
    padding: 13px 14px;
  }

  .mobile-zone-detail small,
  .mobile-zone-detail strong {
    display: block;
  }

  .mobile-zone-detail small {
    color: rgba(142, 207, 255, 0.76);
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
  }

  .mobile-zone-detail strong {
    margin-top: 4px;
    color: #ffffff;
    font-size: 17px;
  }

  .mobile-zone-detail p {
    margin: 6px 0 0;
    color: rgba(238, 246, 255, 0.72);
    font-size: 14px;
    line-height: 1.5;
  }

  .benefits-matrix .bento-card.featured.has-media .benefit-card-content {
    grid-row: 3;
  }

  .visual-card,
  .visual-card:first-child {
    grid-column: auto;
    min-height: 270px;
  }

  .visual-card figcaption {
    align-items: flex-start;
    flex-direction: column;
  }

  .real-world-actions .button {
    width: 100%;
  }

  .action-preview-copy {
    display: block;
    padding-top: 24px;
  }

  .action-preview-copy .button {
    width: 100%;
    margin-top: 24px;
  }

  .thank-you-details {
    grid-template-columns: 1fr;
  }

  .thank-you-actions .button {
    width: 100%;
  }

  .quote-build-panel .button {
    width: 100%;
  }

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

  .route-panel-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .route-panel-head em {
    white-space: normal;
  }

  .route-moments {
    grid-template-columns: 1fr;
  }

  .existing-design-note {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .existing-design-note .button {
    grid-column: 1 / -1;
    width: 100%;
    min-height: 44px;
  }

  .faq-button {
    min-height: 54px;
    gap: 12px;
    padding: 14px 15px;
    font-size: 14px;
    line-height: 1.35;
  }

  .faq-button [data-lucide] {
    width: 17px;
    height: 17px;
  }

  .comparison-section-inner {
    gap: 20px;
  }

  .comparison-compact-inner {
    gap: 28px;
  }

  .comparison-compact-copy h2 {
    font-size: clamp(36px, 10vw, 52px);
  }

  .comparison-compact-copy p {
    font-size: 16px;
  }

  .comparison-main .comparison-primary {
    padding: 0;
  }

  .comparison-proof-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .comparison-proof-row li {
    min-height: 0;
    padding: 13px 10px 13px 0;
    font-size: 14px;
  }

  .real-work-card {
    min-height: 260px;
  }

  .section-render-board .section-inner {
    width: calc(100% - 20px);
  }

  .render-board-frame {
    overflow-x: hidden;
  }

  .render-board-frame img {
    min-width: 0;
    width: 100%;
    max-width: 100%;
  }

  .render-board-frame figcaption {
    padding: 12px;
    font-size: 12px;
  }

  .wrap-render-story-heading {
    display: block;
  }

  .wrap-render-story-heading p {
    margin-top: 16px;
    font-size: 16px;
  }

  .wrap-story-lifestyle img {
    height: auto;
    aspect-ratio: auto;
    object-fit: contain;
  }

  .wrap-story-bridge {
    justify-content: flex-start;
  }

  .wrap-story-footer {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .wrap-story-footer .section-actions {
    justify-content: center;
  }

  .wrap-story-footer .section-actions .button {
    width: min(100%, 360px);
  }

  .section {
    padding: 60px 0;
  }

  .hero-wrap ~ .section {
    padding: 46px 0;
  }

  .final-box {
    padding: 24px;
  }

  .shade-stage,
  .shade-stage img {
    min-height: 260px;
    height: 260px;
  }

  .vehicle-map {
    min-height: 300px;
  }

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

  .footer-details {
    text-align: left;
  }

  .footer-legal {
    justify-content: flex-start;
    flex-wrap: wrap;
  }
}

@media (max-width: 450px) {
  .quote-modal {
    padding: 10px;
  }

  .quote-modal-dialog {
    width: calc(100vw - 20px);
    max-height: calc(100vh - 20px);
  }

  .lead-panel-header,
  .lead-form,
  .bento-card,
  .route-panel,
  .tint-simulator,
  .coverage-card,
  .pathway-card,
  .process-card,
  .proof-card,
  .quote-card,
  .quote-build-panel,
  .hub-card {
    padding: 18px;
  }

  .logo-link img {
    width: min(205px, calc(100vw - 98px));
  }

  .section-render-board .section-heading {
    text-align: left;
  }

  .render-board-frame {
    border-radius: 6px;
  }
}

@media (max-width: 600px) {
  .quote-modal {
    place-items: start center;
    padding: max(24px, env(safe-area-inset-top)) 20px max(24px, env(safe-area-inset-bottom));
  }

  .quote-modal-dialog {
    width: min(420px, calc(100vw - 40px));
    max-width: 100%;
    max-height: min(660px, calc(100dvh - 48px));
    overflow-x: hidden;
    overflow-y: auto;
    border-radius: 8px;
  }

  .quote-modal-close {
    top: 10px;
    right: 10px;
    width: 34px;
    height: 34px;
  }

  .quote-modal .lead-panel-header {
    padding: 16px 54px 14px 16px;
  }

  .quote-modal .lead-panel-title {
    gap: 8px;
    font-size: 17px;
    line-height: 1.25;
  }

  .quote-modal .lead-panel-title [data-lucide] {
    width: 17px;
    height: 17px;
  }

  .quote-modal .lead-panel-header p {
    margin-top: 6px;
    font-size: 13px;
    line-height: 1.35;
  }

  .quote-modal .lead-form {
    padding: 16px;
  }

  .quote-modal .form-grid-primary,
  .quote-modal .form-grid-details {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .quote-modal .field {
    min-width: 0;
    gap: 5px;
  }

  .quote-modal .field label,
  .quote-modal .option-label {
    font-size: 11px;
    line-height: 1.2;
  }

  .quote-modal .field input,
  .quote-modal .field select,
  .quote-modal .field textarea,
  .quote-modal .custom-select-button {
    min-height: 42px;
    border-radius: 5px;
    padding: 9px 10px;
    font-size: 14px;
  }

  .quote-modal .field-help {
    display: none;
  }

  .quote-modal .vehicle-detail-step {
    margin-top: 12px;
    padding: 12px;
  }

  .quote-modal .detail-step-header {
    margin-bottom: 10px;
  }

  .quote-modal .detail-step-header span {
    font-size: 10px;
  }

  .quote-modal .form-actions {
    gap: 8px;
    margin-top: 12px;
  }

  .quote-modal .custom-select-menu {
    max-height: min(210px, 32dvh);
  }

  .quote-modal .custom-select-options {
    max-height: min(158px, 24dvh);
  }

  .quote-modal .field-make .custom-select-menu,
  .quote-modal .form-grid-details .field:first-child .custom-select-menu {
    right: auto;
    width: calc(200% + 10px);
  }

  .quote-modal .confirmation {
    gap: 12px;
  }

  .quote-modal .confirmation-card {
    padding: 12px;
  }

  .quote-modal .optional-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-flow: row dense;
    gap: 10px;
  }

  .quote-modal .optional-grid > .checkbox-row,
  .quote-modal .optional-photo-field,
  .quote-modal .optional-form-actions {
    grid-column: 1 / -1;
  }

  .quote-modal .checkbox-row {
    gap: 7px;
    font-size: 11px;
    line-height: 1.3;
  }

  .quote-modal .file-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .quote-modal .file-action {
    min-height: 42px;
    gap: 5px;
    border-radius: 5px;
    font-size: 11px;
  }

  .quote-modal .file-action [data-lucide] {
    width: 15px;
    height: 15px;
  }

  .quote-modal .file-name {
    font-size: 10px;
    line-height: 1.3;
  }

  .quote-modal .confirmation-card p {
    font-size: 12px;
    line-height: 1.4;
  }

  .quote-modal .optional-status,
  .quote-modal .thank-you-hero .eyebrow {
    display: none;
  }

  .quote-modal .lead-panel.is-thank-you .lead-panel-header {
    display: none;
  }

  .quote-modal .lead-panel.is-thank-you .lead-form {
    padding-top: 16px;
    padding-bottom: 10px;
  }

  .quote-modal .thank-you-page {
    gap: 10px;
  }

  .quote-modal .thank-you-hero {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 10px;
    padding-right: 38px;
  }

  .quote-modal .thank-you-icon {
    width: 34px;
    height: 34px;
  }

  .quote-modal .thank-you-icon [data-lucide] {
    width: 17px;
    height: 17px;
  }

  .quote-modal .thank-you-hero h2 {
    margin: 1px 0 4px;
    font-size: 23px;
  }

  .quote-modal .thank-you-hero p {
    font-size: 12px;
    line-height: 1.4;
  }

  .quote-modal .thank-you-details {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
  }

  .quote-modal .thank-you-detail {
    min-width: 0;
    gap: 2px;
    border-radius: 5px;
    padding: 8px;
  }

  .quote-modal .thank-you-detail span {
    font-size: 9px;
  }

  .quote-modal .thank-you-detail strong {
    overflow-wrap: anywhere;
    font-size: 11px;
    line-height: 1.25;
  }

  .quote-modal .next-steps {
    border-radius: 5px;
    padding: 11px;
  }

  .quote-modal .next-steps-timeline {
    gap: 8px;
    margin-top: 8px;
  }

  .quote-modal .next-steps-timeline li {
    gap: 8px;
  }

  .quote-modal .next-steps-timeline li > span {
    width: 22px;
    height: 22px;
    font-size: 11px;
  }

  .quote-modal .next-steps-timeline strong {
    font-size: 12px;
  }

  .quote-modal .next-steps-timeline p {
    margin-top: 2px;
    font-size: 11px;
    line-height: 1.3;
  }

  .quote-modal .thank-you-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .quote-modal .thank-you-actions .button {
    width: 100%;
    min-height: 42px;
    padding: 9px 8px;
    font-size: 11px;
  }
}

@media (max-width: 360px) {
  .button {
    min-height: 44px;
    gap: 6px;
    padding: 10px;
    font-size: 13px;
  }

  .hero-actions .button {
    min-height: 46px;
    padding: 10px;
    font-size: 13px;
  }

  h1 {
    font-size: 36px;
    line-height: 1.07;
  }

  .section-heading h2,
  .comparison-compact-copy h2,
  .wrap-render-story-heading h2,
  .quote-card h2,
  .action-preview-copy h2 {
    font-size: 29px;
    line-height: 1.14;
  }

  .hero-inner {
    padding-top: 40px;
  }

  .hero-subhead {
    font-size: 16px;
  }

  .site-subbar-inner {
    font-size: 11px;
  }

  .hero-copy .micro-proof {
    gap: 6px;
  }

  .hero-copy .micro-proof li {
    padding: 8px;
    font-size: 11px;
  }

  .section {
    padding: 52px 0;
  }

  .hero-wrap ~ .section {
    padding: 42px 0;
  }

  .quote-modal {
    padding: max(16px, env(safe-area-inset-top)) 20px max(16px, env(safe-area-inset-bottom));
  }

  .quote-modal-dialog {
    max-height: min(660px, calc(100dvh - 32px));
  }

  .quote-modal .next-steps-timeline p {
    display: none;
  }
}
