@font-face {
  font-family: "Velocity Display";
  src: url("/fonts/PuristaTRIAL-BoldItalic.otf") format("opentype");
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}

@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@500;600;700;800;900&display=swap");

:root {
  --vf-black: #020814;
  --vf-navy: #061a33;
  --vf-navy-2: #082446;
  --vf-panel: #071f3c;
  --vf-panel-2: #0a2a52;
  --vf-blue: #1268d5;
  --vf-blue-bright: #38a0ff;
  --vf-red: #ef0718;
  --vf-red-dark: #b70413;
  --vf-white: #ffffff;
  --vf-soft: #dce9f7;
  --vf-muted: #9fb3c9;
  --vf-line: rgba(120, 170, 220, 0.28);
  --vf-shadow: 0 24px 60px rgba(0, 0, 0, 0.36);
  --vf-hero-overlay: url("/images/client-assets/site-graphics/hero/velocity-flow-hero-overlay.png");
}

* {
  box-sizing: border-box;
  letter-spacing: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--vf-white);
  background:
    linear-gradient(180deg, #020814 0%, #061426 52%, #020814 100%);
  font-family: Montserrat, Arial, Helvetica, sans-serif;
  line-height: 1.45;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(239, 7, 24, 0.11), transparent 20%, transparent 80%, rgba(18, 104, 213, 0.12)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 320px);
}

a {
  color: inherit;
  text-decoration: none;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid #48a4ff;
  outline-offset: 3px;
}

img {
  display: block;
  max-width: 100%;
}

svg {
  display: block;
}

.vf-skip-link {
  position: absolute;
  left: 16px;
  top: -70px;
  z-index: 200;
  padding: 10px 14px;
  background: var(--vf-red);
  color: var(--vf-white);
}

.vf-skip-link:focus {
  top: 16px;
}

.vf-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  pointer-events: none;
  background: transparent;
  border-bottom: 0;
}

.vf-header-inner {
  width: min(1840px, calc(100% - 128px));
  min-height: 86px;
  margin: 0 auto;
  padding: 0;
  display: grid;
  grid-template-columns: minmax(360px, 430px) 1fr minmax(220px, 270px);
  align-items: center;
  gap: 28px;
  pointer-events: none;
  border: 1px solid transparent;
  border-radius: 0;
  transition:
    width 180ms ease,
    min-height 180ms ease,
    margin-top 180ms ease,
    padding 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    backdrop-filter 180ms ease;
}

.vf-header.is-scrolled .vf-header-inner {
  width: min(1760px, calc(100% - 40px));
  min-height: 72px;
  margin-top: 10px;
  padding: 8px 18px;
  pointer-events: auto;
  border-color: rgba(120, 170, 220, 0.28);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(2, 8, 20, 0.76), rgba(8, 30, 58, 0.58)),
    rgba(2, 8, 20, 0.58);
  box-shadow:
    0 18px 44px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
}

.vf-brand-lockup {
  display: flex;
  align-items: center;
  gap: 18px;
  width: fit-content;
  pointer-events: auto;
}

.vf-logo-link {
  width: fit-content;
  pointer-events: auto;
}

.vf-logo {
  width: 242px;
  height: auto;
  filter: drop-shadow(0 10px 16px rgba(0, 0, 0, 0.36));
  transition: width 180ms ease, filter 180ms ease;
}

.vf-header.is-scrolled .vf-logo {
  width: 216px;
  filter: drop-shadow(0 8px 14px rgba(0, 0, 0, 0.34));
}

.vf-trane-header-logo {
  width: auto;
  height: 68px;
  max-width: 112px;
  object-fit: contain;
  filter: drop-shadow(0 10px 16px rgba(0, 0, 0, 0.34));
  transition: height 180ms ease, max-width 180ms ease, filter 180ms ease;
}

.vf-header.is-scrolled .vf-trane-header-logo {
  height: 58px;
  max-width: 96px;
  filter: drop-shadow(0 8px 14px rgba(0, 0, 0, 0.3));
}

.vf-mobile-call,
.vf-mobile-hero-sponsor {
  display: none;
}

.vf-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 38px;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  pointer-events: auto;
  justify-self: center;
  padding: 0;
  background: transparent;
  border-radius: 0;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.vf-nav a {
  position: relative;
  padding: 17px 0 14px;
  color: rgba(255, 255, 255, 0.9);
}

.vf-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 8px;
  height: 2px;
  transform: scaleX(0);
  background: var(--vf-red);
  transform-origin: center;
  transition: transform 180ms ease;
}

.vf-nav a:hover::after,
.vf-nav a.is-active::after {
  transform: scaleX(1);
}

.vf-header-phone {
  display: grid;
  justify-items: end;
  gap: 2px;
  color: var(--vf-white);
  text-transform: uppercase;
  pointer-events: auto;
}

.vf-header-phone span,
.vf-header-phone em {
  color: rgba(255, 255, 255, 0.86);
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
}

.vf-header-phone strong {
  color: var(--vf-red);
  font-family: Montserrat, Arial, sans-serif;
  font-size: 28px;
  line-height: 0.88;
  font-weight: 900;
  transition: font-size 180ms ease;
}

.vf-header.is-scrolled .vf-header-phone strong {
  font-size: 25px;
}

.vf-hero,
.vf-subhero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    var(--vf-bg-image),
    linear-gradient(135deg, #061426, #0a2a52);
  background-size: var(--vf-bg-size, 2048px auto), cover;
  background-position: var(--vf-bg-position, center top);
  background-repeat: no-repeat;
}

.vf-hero::before,
.vf-subhero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: var(--vf-hero-overlay);
  background-repeat: no-repeat;
  background-position: var(--vf-overlay-position, center top);
  background-size: var(--vf-overlay-size, cover);
}

.vf-hero {
  width: 100%;
  aspect-ratio: 2163 / 889;
  height: auto;
  min-height: clamp(620px, 41.1vw, 889px);
  display: flex;
  align-items: center;
  background-size: cover, cover;
  background-position: center center;
  border-bottom: 1px solid var(--vf-line);
}

.vf-hero::before {
  background-size: var(--vf-overlay-size, 100% 100%);
  background-position: var(--vf-overlay-position, center center);
}

.vf-hero-shade,
.vf-subhero::after {
  display: none;
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(1, 8, 18, 0.08), rgba(1, 8, 18, 0.02) 62%, rgba(1, 8, 18, 0.46)),
    linear-gradient(90deg, rgba(239, 7, 24, 0.24), transparent 25%, transparent 72%, rgba(18, 104, 213, 0.28));
}

.vf-hero-copy {
  position: relative;
  z-index: 3;
  width: min(520px, calc(100% - 48px));
  margin-left: max(64px, calc((100vw - 1780px) / 2 + 78px));
  padding-top: 112px;
  animation: vf-copy-enter 780ms ease-out 120ms both;
}

.vf-kicker {
  margin: 0 0 12px;
  color: var(--vf-red);
  font-family: Montserrat, Arial, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

.vf-hero h1,
.vf-subhero h1,
.vf-section-title h2,
.vf-stat-copy h2,
.vf-dark-feature h2,
.vf-about-section h2,
.vf-area-band h2,
.vf-contact-copy h2 {
  margin: 0;
  font-family: "Velocity Display", Impact, sans-serif;
  font-weight: 900;
  font-style: italic;
  line-height: 0.9;
  text-transform: uppercase;
}

.vf-hero h1 {
  font-size: clamp(48px, 3.95vw, 68px);
  letter-spacing: 0;
  text-shadow: 0 6px 18px rgba(0, 0, 0, 0.28);
}

.vf-hero h1 span {
  color: var(--vf-red);
}

.vf-hero p:not(.vf-kicker),
.vf-subhero p:not(.vf-kicker) {
  max-width: 420px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 16px;
  font-weight: 600;
}

.vf-hero-van-run {
  position: absolute;
  left: 0;
  right: 0;
  bottom: clamp(8px, 1.2vw, 22px);
  z-index: 4;
  pointer-events: none;
  overflow: visible;
}

.vf-hero-van {
  width: clamp(220px, 22vw, 460px);
  max-width: none;
  opacity: 0;
  transform: translateX(calc(100vw + 40%));
  filter:
    drop-shadow(0 14px 22px rgba(0, 0, 0, 0.5))
    drop-shadow(0 0 14px rgba(56, 160, 255, 0.28));
  animation: vf-van-drive 8.4s cubic-bezier(0.2, 0.72, 0.22, 1) 2.8s 1 both;
}

.vf-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.vf-btn {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 11px 22px;
  border-radius: 4px;
  color: var(--vf-white);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.28);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    filter 180ms ease,
    border-color 180ms ease;
}

.vf-btn svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 5;
}

.vf-btn-red {
  background: linear-gradient(180deg, #ff1526, #bd0414);
}

.vf-btn-blue {
  background: linear-gradient(180deg, #1878ec, #084aa2);
}

.vf-btn:hover,
.vf-btn:focus-visible {
  transform: translateY(-2px);
  filter: saturate(1.08);
  border-color: rgba(255, 255, 255, 0.36);
  box-shadow: 0 20px 36px rgba(0, 0, 0, 0.36);
}

body.vf-diagnostic-open {
  overflow: hidden;
}

.vf-diagnostic-modal[hidden] {
  display: none;
}

.vf-diagnostic-modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: grid;
  place-items: center;
  padding: 24px;
}

.vf-diagnostic-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(1, 8, 18, 0.74);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.vf-diagnostic-dialog {
  position: relative;
  z-index: 1;
  width: min(860px, 100%);
  max-height: min(760px, calc(100vh - 36px));
  overflow: auto;
  color: var(--vf-white);
  background: linear-gradient(135deg, rgba(7, 31, 60, 0.98), rgba(2, 8, 20, 0.98));
  border: 1px solid var(--vf-line);
  border-radius: 8px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.55);
}

.vf-diagnostic-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--vf-white);
  font: inherit;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.vf-diagnostic-panel {
  padding: clamp(28px, 4vw, 48px);
}

.vf-diagnostic-panel h2 {
  max-width: 700px;
  margin: 0;
  color: var(--vf-white);
  font-family: "Velocity Display", Impact, sans-serif;
  font-size: clamp(38px, 5vw, 68px);
  font-style: italic;
  line-height: 0.9;
  text-transform: uppercase;
}

.vf-diagnostic-panel p {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.84);
  font-weight: 700;
}

.vf-diagnostic-note {
  margin: 22px 0;
  padding: 16px;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.08);
  border-left: 4px solid var(--vf-red);
  font-weight: 800;
}

.vf-diagnostic-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.vf-diagnostic-option {
  min-height: 124px;
  padding: 18px;
  color: var(--vf-white);
  text-align: left;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--vf-line);
  border-radius: 6px;
  cursor: pointer;
  font: inherit;
}

.vf-diagnostic-option:hover,
.vf-diagnostic-option:focus-visible {
  background: rgba(18, 104, 213, 0.18);
  border-color: rgba(72, 164, 255, 0.9);
}

.vf-diagnostic-option strong {
  display: block;
  font-family: "Velocity Display", Impact, sans-serif;
  font-size: 24px;
  font-style: italic;
  line-height: 0.95;
  text-transform: uppercase;
}

.vf-diagnostic-option span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  font-weight: 700;
}

.vf-diagnostic-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.vf-diagnostic-link {
  padding: 0;
  color: #63a8ff;
  background: none;
  border: 0;
  font: inherit;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}

.vf-diagnostic-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.vf-diagnostic-form label {
  display: grid;
  gap: 6px;
}

.vf-diagnostic-form span {
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.vf-diagnostic-form input,
.vf-diagnostic-form textarea {
  width: 100%;
  min-height: 44px;
  padding: 11px 13px;
  color: #07152f;
  background: var(--vf-white);
  border: 1px solid #d5dfec;
  border-radius: 4px;
  font: inherit;
}

.vf-diagnostic-form textarea {
  resize: vertical;
}

.vf-diagnostic-wide {
  grid-column: 1 / -1;
}

.vf-diagnostic-summary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 24px 0;
}

.vf-diagnostic-summary div {
  padding: 14px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--vf-line);
  border-radius: 6px;
}

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

.vf-diagnostic-summary strong {
  color: #63a8ff;
  font-size: 12px;
  text-transform: uppercase;
}

.vf-diagnostic-summary span {
  margin-top: 5px;
  font-weight: 800;
}

.vf-hero-trust {
  display: flex;
  gap: 18px;
  align-items: center;
  max-width: 520px;
  margin-top: 14px;
}

.vf-proof-chip {
  min-width: 210px;
  min-height: 58px;
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 12px;
  align-items: center;
  padding: 8px 12px;
  background: rgba(3, 9, 18, 0.18);
  border: 0;
  border-radius: 4px;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  transition:
    transform 180ms ease,
    background 180ms ease;
}

.vf-proof-chip:hover {
  transform: translateY(-2px);
  background: rgba(3, 9, 18, 0.3);
}

.vf-hero-trust strong,
.vf-proof-chip strong {
  display: block;
  color: var(--vf-white);
  font-size: 15px;
  font-weight: 900;
  text-transform: uppercase;
}

.vf-hero-trust small,
.vf-proof-chip small {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 700;
}

.vf-mini-stars {
  color: #ffc929;
  letter-spacing: 1px;
}

.vf-google-logo {
  width: 48px;
  height: 48px;
  box-sizing: border-box;
  object-fit: contain;
  padding: 7px;
  border-radius: 50%;
  background: var(--vf-white);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.24);
}

.vf-trust-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--vf-white);
}

.vf-trust-icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: var(--vf-white);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 4;
}

.vf-service-ribbon {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--vf-line);
  border-bottom: 1px solid var(--vf-line);
  background: linear-gradient(180deg, rgba(8, 36, 70, 0.98), rgba(4, 19, 38, 0.98));
}

.vf-service-ribbon article {
  min-height: 82px;
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 14px;
  align-items: center;
  padding: 14px clamp(18px, 2vw, 34px);
  border-right: 1px solid var(--vf-line);
}

.vf-service-ribbon article:last-child {
  border-right: 0;
}

.vf-ribbon-icon {
  color: var(--vf-blue-bright);
}

.vf-ribbon-icon-flame,
.vf-ribbon-icon-siren {
  color: var(--vf-red);
}

.vf-ribbon-icon-wrench {
  color: rgba(255, 255, 255, 0.9);
}

.vf-ribbon-icon-shield {
  color: #1d7bff;
}

.vf-mark-red {
  fill: none;
  stroke: var(--vf-red);
}

.vf-mark-blue {
  fill: none;
  stroke: #1d7bff;
}

.vf-ribbon-icon svg {
  width: 44px;
  height: 44px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 4;
}

.vf-service-ribbon h2 {
  margin: 0;
  font-family: "Velocity Display", Impact, sans-serif;
  font-size: 15px;
  font-style: italic;
  line-height: 0.98;
  text-transform: uppercase;
}

.vf-service-ribbon p {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 600;
}

.vf-services-template-page {
  padding-bottom: 18px;
  background:
    radial-gradient(circle at 78% 4%, rgba(30, 118, 224, 0.26), transparent 34%),
    linear-gradient(180deg, #031020 0%, #061b35 42%, #031020 100%);
}

.vf-services-landing-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  height: clamp(520px, 32vw, 650px);
  min-height: 0;
  padding: 0;
  background:
    var(--vf-bg-image),
    linear-gradient(135deg, #061426, #0a2a52);
  background-size: var(--vf-bg-size, 100% auto), cover;
  background-position: var(--vf-bg-position, center top);
  background-repeat: no-repeat;
}

.vf-services-hero-kicker {
  position: absolute;
  top: clamp(86px, 5.6vw, 108px);
  left: max(64px, calc((100vw - 1780px) / 2 + 78px));
  z-index: 2;
  margin: 0;
}

.vf-services-landing-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: var(--vf-hero-overlay);
  background-repeat: no-repeat;
  background-position: var(--vf-overlay-position, center top);
  background-size: var(--vf-overlay-size, 100% auto);
}

.vf-services-hero-copy {
  position: absolute;
  top: clamp(126px, 7.2vw, 144px);
  left: max(64px, calc((100vw - 1780px) / 2 + 78px));
  z-index: 2;
  width: min(620px, calc(100% - 48px));
  animation: vf-copy-enter 760ms ease-out 120ms both;
}

.vf-services-hero-copy h1,
.vf-services-feature-copy h2,
.vf-services-proof-cta h2 {
  margin: 0;
  font-family: "Velocity Display", Impact, sans-serif;
  font-style: italic;
  text-transform: uppercase;
}

.vf-services-hero-copy h1 {
  font-size: clamp(40px, 3.25vw, 62px);
  line-height: 0.9;
  letter-spacing: 0;
  word-spacing: 0.02em;
  text-shadow: 0 7px 20px rgba(0, 0, 0, 0.42);
}

.vf-services-hero-copy p {
  max-width: 575px;
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(11px, 0.78vw, 14px);
  font-weight: 700;
}

.vf-services-hero-copy .vf-actions {
  margin-top: 12px;
}

.vf-services-hero-copy .vf-btn {
  min-height: 34px;
  padding: 8px 17px;
  font-size: 12px;
}

.vf-services-hero-copy .vf-btn svg {
  width: 15px;
  height: 15px;
}

.vf-services-trust {
  position: relative;
  z-index: 3;
  margin-top: 14px;
}

.vf-services-trust .vf-proof-chip {
  min-width: 190px;
  min-height: 46px;
  grid-template-columns: 44px 1fr;
  gap: 10px;
  padding: 6px 10px;
}

.vf-services-trust .vf-google-logo,
.vf-services-trust .vf-trust-icon {
  width: 40px;
  height: 40px;
}

.vf-services-trust .vf-trust-icon svg {
  width: 26px;
  height: 26px;
}

.vf-services-trust strong {
  font-size: 13px;
}

.vf-services-trust small {
  font-size: 11px;
}

.vf-services-tile-deck,
.vf-services-feature-grid,
.vf-services-proof-cta {
  width: min(1800px, calc(100% - 96px));
  margin: 0 auto;
  border: 1px solid var(--vf-line);
  background: rgba(3, 14, 29, 0.78);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.28);
}

.vf-services-tile-deck {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  transform: translateY(-1px);
}

.vf-services-tile {
  min-width: 0;
  position: relative;
  overflow: hidden;
  border-right: 1px solid var(--vf-line);
  background: linear-gradient(180deg, rgba(6, 30, 59, 0.98), rgba(3, 14, 29, 0.98));
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.vf-services-tile:hover,
.vf-services-tile:focus-within {
  transform: translateY(-4px);
  border-color: rgba(72, 164, 255, 0.7);
  box-shadow: 0 26px 54px rgba(0, 0, 0, 0.36);
  z-index: 2;
}

.vf-services-tile:last-child {
  border-right: 0;
}

.vf-services-tile-media {
  height: clamp(112px, 8.3vw, 150px);
  overflow: hidden;
}

.vf-services-tile-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 34%;
  transition:
    transform 260ms ease,
    filter 260ms ease;
}

.vf-services-tile:hover .vf-services-tile-photo,
.vf-services-tile:focus-within .vf-services-tile-photo {
  transform: scale(1.04);
  filter: saturate(1.1) contrast(1.04);
}

.vf-services-tile-photo.vf-asset-repairService,
.vf-services-tile-photo.vf-asset-heatingInstallService,
.vf-services-tile-photo.vf-asset-heatingRepairService,
.vf-services-tile-photo.vf-asset-maintenanceService {
  object-position: center 22%;
}

.vf-services-tile-photo.vf-asset-customerHandshake {
  object-position: center 38%;
}

.vf-services-tile-body {
  height: clamp(108px, 7.35vw, 132px);
  position: relative;
  overflow: visible;
  padding: 26px 20px 10px;
}

.vf-services-icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  position: absolute;
  top: -27px;
  left: 20px;
  color: #ffffff;
  background: linear-gradient(145deg, #1068d8, #063c87);
  border: 2px solid rgba(255, 255, 255, 0.34);
  clip-path: polygon(50% 0, 92% 24%, 92% 76%, 50% 100%, 8% 76%, 8% 24%);
  filter: drop-shadow(0 9px 16px rgba(0, 0, 0, 0.34));
}

.vf-services-icon-flame,
.vf-services-icon-siren {
  background: linear-gradient(145deg, #ef0718, #a70310);
}

.vf-services-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 4;
}

.vf-services-tile h2 {
  margin: 0;
  font-family: "Velocity Display", Impact, sans-serif;
  font-size: clamp(17px, 1.25vw, 22px);
  font-style: italic;
  line-height: 0.96;
  text-transform: uppercase;
}

.vf-services-tile p {
  min-height: 30px;
  margin: 5px 0 6px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(10px, 0.72vw, 12px);
  font-weight: 700;
}

.vf-services-tile a,
.vf-services-feature-copy a {
  color: #48a4ff;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.vf-services-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: clamp(210px, 14vw, 260px);
  border-top: 0;
  margin-top: 22px;
}

.vf-services-feature-grid > * {
  min-width: 0;
  min-height: 0;
  height: 100%;
  border-right: 1px solid var(--vf-line);
  border-bottom: 1px solid var(--vf-line);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.vf-services-feature-grid > *:hover,
.vf-services-feature-grid > *:focus-within {
  transform: translateY(-3px);
  border-color: rgba(72, 164, 255, 0.6);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.32);
  z-index: 1;
}

.vf-services-feature-grid > *:nth-child(4n) {
  border-right: 0;
}

.vf-services-feature-grid > *:nth-last-child(-n + 4) {
  border-bottom: 0;
}

.vf-services-feature-image {
  position: relative;
  margin: 0;
  overflow: hidden;
}

.vf-services-feature-photo {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center 30%;
  transition:
    transform 260ms ease,
    filter 260ms ease;
}

.vf-services-feature-image:hover .vf-services-feature-photo,
.vf-services-feature-image:focus-within .vf-services-feature-photo {
  transform: scale(1.035);
  filter: saturate(1.08) contrast(1.04);
}

.vf-services-feature-photo.vf-asset-repairService,
.vf-services-feature-photo.vf-asset-heatingInstallService,
.vf-services-feature-photo.vf-asset-heatingRepairService,
.vf-services-feature-photo.vf-asset-maintenanceService,
.vf-services-feature-photo.vf-asset-qualityVisual {
  object-position: center 22%;
}

.vf-services-feature-copy {
  min-width: 0;
  display: grid;
  align-content: center;
  overflow: hidden;
  padding: 10px 22px;
  background:
    linear-gradient(135deg, rgba(8, 38, 74, 0.98), rgba(3, 14, 29, 0.98));
}

.vf-services-feature-copy p {
  margin: 0 0 5px;
  color: var(--vf-red);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.vf-services-feature-copy h2 {
  min-width: 0;
  font-size: clamp(18px, 1.36vw, 26px);
  line-height: 0.9;
  overflow-wrap: break-word;
}

.vf-services-feature-copy > span {
  display: block;
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(9px, 0.62vw, 11px);
  line-height: 1.18;
  font-weight: 700;
}

.vf-services-feature-copy ul {
  display: grid;
  gap: 2px;
  margin: 5px 0 6px;
  padding: 0;
  list-style: none;
}

.vf-services-feature-copy li {
  position: relative;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(8.5px, 0.6vw, 10.5px);
  line-height: 1.08;
  font-weight: 800;
}

.vf-services-feature-copy li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.25em;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #1d7bff;
}

.vf-services-feature-red li::before {
  background: var(--vf-red);
}

.vf-services-feature-red a {
  color: #ffffff;
  background: linear-gradient(180deg, var(--vf-red), var(--vf-red-dark));
  width: fit-content;
  padding: 5px 15px;
}

.vf-services-person-card {
  isolation: isolate;
  background:
    radial-gradient(circle at 50% 118%, rgba(65, 151, 255, 0.3), rgba(65, 151, 255, 0) 36%),
    linear-gradient(135deg, rgba(8, 35, 68, 0.98), rgba(2, 11, 24, 0.98));
}

.vf-services-person-card-red {
  background:
    radial-gradient(circle at 48% 118%, rgba(237, 28, 36, 0.32), rgba(237, 28, 36, 0) 36%),
    linear-gradient(135deg, rgba(61, 9, 15, 0.98), rgba(3, 13, 28, 0.98));
}

.vf-services-person-card::before,
.vf-services-person-card::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.vf-services-person-card::before {
  inset: auto -15% 0;
  height: 54%;
  z-index: 0;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0) 22%, rgba(255, 255, 255, 0.13) 47%, rgba(255, 255, 255, 0) 72%),
    linear-gradient(90deg, rgba(237, 28, 36, 0.26), rgba(21, 104, 218, 0.3));
  clip-path: polygon(0 74%, 100% 24%, 100% 100%, 0 100%);
}

.vf-services-person-card::after {
  left: 12%;
  right: 12%;
  bottom: 9px;
  height: 14px;
  z-index: 1;
  border-radius: 999px;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0) 72%);
  filter: blur(2px);
}

.vf-services-person-card figcaption {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 3;
  max-width: calc(100% - 24px);
  color: var(--vf-white);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.55);
}

.vf-services-person-card figcaption::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 2px;
  margin-right: 7px;
  vertical-align: 0.22em;
  background: var(--vf-red);
}

.vf-services-person-card-blue figcaption::before {
  background: #2e8eff;
}

.vf-services-person-group {
  position: absolute;
  inset: 40px 6px 0;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 0;
}

.vf-services-person-photo {
  width: auto;
  max-width: 76%;
  height: 124%;
  object-fit: contain;
  object-position: bottom center;
  filter:
    drop-shadow(0 18px 16px rgba(0, 0, 0, 0.38))
    drop-shadow(0 0 16px rgba(72, 164, 255, 0.18));
  transform-origin: bottom center;
  transition:
    transform 260ms ease,
    filter 260ms ease;
}

.vf-services-person-count-2 .vf-services-person-photo {
  max-width: 64%;
  height: 122%;
  margin-inline: -11%;
}

.vf-services-person-photo-1 {
  transform: translateY(18px);
}

.vf-services-person-photo-2 {
  transform: translateY(22px) scale(0.98);
}

.vf-services-person-count-1 .vf-services-person-photo {
  max-width: 96%;
  height: 128%;
}

.vf-services-person-card:hover .vf-services-person-photo,
.vf-services-person-card:focus-within .vf-services-person-photo {
  filter:
    drop-shadow(0 20px 18px rgba(0, 0, 0, 0.44))
    drop-shadow(0 0 22px rgba(72, 164, 255, 0.25));
}

.vf-services-person-card:hover .vf-services-person-photo-1,
.vf-services-person-card:focus-within .vf-services-person-photo-1 {
  transform: translateY(12px) scale(1.03);
}

.vf-services-person-card:hover .vf-services-person-photo-2,
.vf-services-person-card:focus-within .vf-services-person-photo-2 {
  transform: translateY(16px) scale(1.01);
}

.vf-services-proof-cta {
  display: grid;
  grid-template-columns: minmax(720px, 1.25fr) minmax(520px, 0.75fr);
  gap: 30px;
  align-items: center;
  margin-top: 22px;
  padding: 17px 28px;
}

.vf-services-proof-cta h2 {
  font-size: clamp(22px, 1.8vw, 30px);
  line-height: 0.96;
}

.vf-services-proof-stats {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.vf-services-proof-stats article {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 8px 12px;
  align-items: center;
}

.vf-services-proof-stats span {
  grid-row: 1 / span 2;
  color: #2589ff;
}

.vf-services-proof-stats svg {
  width: 42px;
  height: 42px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 4;
}

.vf-services-proof-stats strong {
  color: #4b9dff;
  font-family: "Velocity Display", Impact, sans-serif;
  font-size: clamp(28px, 2.3vw, 42px);
  line-height: 0.86;
}

.vf-services-proof-stats small {
  color: rgba(255, 255, 255, 0.82);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.vf-services-bottom-cta {
  padding-left: 28px;
  border-left: 1px solid var(--vf-line);
}

.vf-services-bottom-cta p {
  margin: 9px 0 17px;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 700;
}

.vf-services-bottom-cta .vf-actions {
  margin-top: 0;
}

.vf-story-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  background: #020814;
  border-bottom: 1px solid var(--vf-line);
}

.vf-story-strip article {
  min-height: 240px;
  position: relative;
  overflow: hidden;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.vf-story-strip article:hover,
.vf-story-strip article:focus-within {
  transform: translateY(-3px);
  border-color: rgba(72, 164, 255, 0.58);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.32);
  z-index: 1;
}

.vf-story-strip article:last-child {
  border-right: 0;
}

.vf-story-photo {
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
  object-position: center 30%;
  transition:
    transform 260ms ease,
    filter 260ms ease;
}

.vf-story-strip article:hover .vf-story-photo,
.vf-story-strip article:focus-within .vf-story-photo {
  transform: scale(1.035);
  filter: saturate(1.08) contrast(1.04);
}

.vf-story-photo.vf-asset-repairService,
.vf-story-photo.vf-asset-maintenanceService {
  object-position: center 22%;
}

.vf-story-strip article::after {
  content: "";
  position: absolute;
  inset: 18% 0 0;
  background:
    linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.94)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.36), transparent 48%, rgba(0, 0, 0, 0.28));
}

.vf-story-strip article > div {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 26px;
  z-index: 1;
  text-align: center;
}

.vf-story-strip h2 {
  margin: 0;
  font-family: "Velocity Display", Impact, sans-serif;
  font-size: 26px;
  line-height: 0.95;
  text-transform: uppercase;
}

.vf-story-strip p {
  margin: 5px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 600;
}

.vf-stat-band,
.vf-contact-band,
.vf-dark-feature,
.vf-about-section,
.vf-area-band,
.vf-promise-band,
.vf-section {
  width: min(1720px, calc(100% - 40px));
  margin: 0 auto;
}

.vf-stat-band {
  display: grid;
  grid-template-columns: minmax(520px, 1.05fr) minmax(520px, 0.95fr);
  gap: 44px;
  align-items: center;
  padding: 26px 36px;
  background:
    linear-gradient(135deg, rgba(10, 42, 82, 0.98), rgba(4, 18, 35, 0.98));
  border: 1px solid var(--vf-line);
  box-shadow: var(--vf-shadow);
}

.vf-stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.vf-stat-grid article {
  min-height: 116px;
  display: grid;
  align-content: center;
  gap: 6px;
  padding: 14px;
  border: 1px solid transparent;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.vf-stat-grid article:hover {
  transform: translateY(-3px);
  border-color: rgba(72, 164, 255, 0.36);
  background: rgba(255, 255, 255, 0.045);
}

.vf-stat-grid span svg {
  width: 44px;
  height: 44px;
  fill: none;
  stroke: var(--vf-blue-bright);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 4;
}

.vf-stat-grid strong {
  color: #63a8ff;
  font-family: "Velocity Display", Impact, sans-serif;
  font-size: 48px;
  line-height: 0.88;
  font-weight: 900;
}

.vf-stat-grid small {
  color: rgba(255, 255, 255, 0.8);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.vf-promise-band {
  padding: 58px 0;
}

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

.vf-promise-grid article {
  min-height: 210px;
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 28px;
  background:
    linear-gradient(180deg, rgba(10, 42, 82, 0.94), rgba(3, 13, 27, 0.96));
  border: 1px solid var(--vf-line);
  box-shadow: var(--vf-shadow);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.vf-promise-grid article:hover {
  transform: translateY(-4px);
  border-color: rgba(72, 164, 255, 0.56);
  box-shadow: 0 30px 62px rgba(0, 0, 0, 0.38);
}

.vf-promise-grid span {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  color: var(--vf-blue-bright);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.vf-promise-grid span svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 4;
}

.vf-promise-grid h3,
.vf-mission-grid h3 {
  margin: 0;
  font-family: "Velocity Display", Impact, sans-serif;
  font-size: 28px;
  line-height: 0.95;
  text-transform: uppercase;
}

.vf-promise-grid p,
.vf-mission-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
}

.vf-stat-copy h2,
.vf-section-title h2,
.vf-dark-feature h2,
.vf-about-section h2,
.vf-area-band h2,
.vf-contact-copy h2 {
  font-size: clamp(44px, 4vw, 72px);
}

.vf-stat-copy p,
.vf-dark-feature p,
.vf-about-section p,
.vf-contact-copy p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
  font-weight: 600;
}

.vf-section {
  padding: 86px 0;
}

.vf-section-title {
  max-width: 880px;
  margin-bottom: 34px;
}

.vf-service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.vf-service-card {
  min-width: 0;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(9, 35, 68, 0.98), rgba(3, 13, 27, 0.98));
  border: 1px solid var(--vf-line);
  box-shadow: var(--vf-shadow);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.vf-service-card:hover,
.vf-service-card:focus-within {
  transform: translateY(-5px);
  border-color: rgba(72, 164, 255, 0.66);
  box-shadow: 0 32px 66px rgba(0, 0, 0, 0.42);
}

.vf-card-media {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.vf-card-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transition:
    transform 260ms ease,
    filter 260ms ease;
}

.vf-service-card:hover .vf-card-photo,
.vf-service-card:focus-within .vf-card-photo {
  transform: scale(1.035);
  filter: saturate(1.08) contrast(1.04);
}

.vf-card-photo.vf-asset-repairService,
.vf-card-photo.vf-asset-heatingInstallService,
.vf-card-photo.vf-asset-heatingRepairService,
.vf-card-photo.vf-asset-maintenanceService,
.vf-card-photo.vf-asset-qualityVisual {
  object-position: center 22%;
}

.vf-card-photo.vf-asset-customerHandshake {
  object-position: center 38%;
}

.vf-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, 0.72));
}

.vf-card-number {
  position: absolute;
  right: 18px;
  bottom: 14px;
  z-index: 1;
  color: rgba(255, 255, 255, 0.72);
  font-family: "Velocity Display", Impact, sans-serif;
  font-size: 46px;
  font-weight: 900;
}

.vf-card-body {
  position: relative;
  padding: 28px 28px 30px;
}

.vf-card-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  color: var(--vf-red);
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
}

.vf-card-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 4;
}

.vf-card-body h3 {
  margin: 0;
  font-family: "Velocity Display", Impact, sans-serif;
  font-size: 34px;
  line-height: 0.95;
  text-transform: uppercase;
}

.vf-card-body p {
  min-height: 54px;
  color: var(--vf-muted);
  font-weight: 600;
}

.vf-card-body a {
  color: #63a8ff;
  font-weight: 900;
  text-transform: uppercase;
}

.vf-dark-feature {
  display: grid;
  grid-template-columns: minmax(420px, 0.9fr) minmax(460px, 1.1fr);
  gap: 52px;
  align-items: center;
  padding: 82px 0;
}

.vf-dark-feature figure,
.vf-about-section figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--vf-line);
  box-shadow: var(--vf-shadow);
}

.vf-feature-photo,
.vf-about-photo {
  width: 100%;
  min-height: 470px;
  object-fit: cover;
  object-position: center 30%;
}

.vf-feature-photo.vf-asset-customerHandshake,
.vf-about-photo.vf-asset-teamHero {
  object-position: center 28%;
}

.vf-check-list {
  display: grid;
  gap: 14px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.vf-mission-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 26px;
}

.vf-mission-grid article {
  padding: 22px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid var(--vf-line);
}

.vf-check-list li {
  position: relative;
  padding-left: 34px;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 800;
}

.vf-check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.25em;
  width: 18px;
  height: 18px;
  border: 2px solid var(--vf-red);
  background: var(--vf-red);
  clip-path: polygon(14% 48%, 32% 66%, 82% 16%, 94% 29%, 32% 90%, 2% 60%);
}

.vf-review-section {
  padding-top: 30px;
}

.vf-review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.vf-review-card {
  padding: 34px;
  background:
    linear-gradient(180deg, rgba(10, 42, 82, 0.92), rgba(3, 13, 27, 0.94));
  border: 1px solid var(--vf-line);
  box-shadow: var(--vf-shadow);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.vf-review-card:hover,
.vf-review-card:focus-within {
  transform: translateY(-4px);
  border-color: rgba(239, 7, 24, 0.54);
  box-shadow: 0 30px 62px rgba(0, 0, 0, 0.4);
}

.vf-stars {
  color: var(--vf-red);
  font-size: 18px;
}

.vf-review-card h3 {
  margin: 16px 0 8px;
  font-family: "Velocity Display", Impact, sans-serif;
  font-size: 30px;
  text-transform: uppercase;
}

.vf-review-card p {
  color: var(--vf-muted);
  font-weight: 600;
}

.vf-review-card small {
  display: block;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.vf-area-band {
  padding: 62px 36px;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(9, 35, 68, 0.96), rgba(3, 13, 27, 0.96));
  border: 1px solid var(--vf-line);
}

.vf-area-icon {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  margin: 0 auto 16px;
  color: var(--vf-red);
}

.vf-area-icon svg {
  width: 54px;
  height: 54px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 4;
}

.vf-area-list {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.vf-area-list span {
  padding: 10px 14px;
  color: var(--vf-soft);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-weight: 800;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.vf-area-list span:hover {
  transform: translateY(-2px);
  border-color: rgba(72, 164, 255, 0.46);
  background: rgba(255, 255, 255, 0.1);
}

.vf-contact-band {
  display: grid;
  grid-template-columns: minmax(340px, 0.72fr) minmax(520px, 1fr);
  gap: 32px;
  align-items: center;
  padding: 54px 42px;
  background:
    linear-gradient(135deg, rgba(218, 5, 20, 0.96), rgba(128, 3, 12, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: var(--vf-shadow);
}

.vf-big-phone {
  display: block;
  margin-top: 18px;
  font-family: "Velocity Display", Impact, sans-serif;
  font-size: 58px;
  font-weight: 900;
  line-height: 0.9;
}

.vf-hours-card {
  display: inline-grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  margin-top: 22px;
  padding: 12px 14px;
  color: var(--vf-white);
  background: rgba(3, 13, 27, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.vf-hours-card span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: var(--vf-white);
  background: rgba(255, 255, 255, 0.12);
}

.vf-hours-card svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 4;
}

.vf-hours-card strong,
.vf-hours-card small {
  display: block;
}

.vf-hours-card strong {
  font-weight: 900;
  text-transform: uppercase;
}

.vf-hours-card small {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.74);
  font-weight: 800;
}

.vf-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.96);
  color: #07152f;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.24);
}

.vf-form label {
  display: grid;
  gap: 6px;
}

.vf-form span {
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.vf-form input,
.vf-form select,
.vf-form textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid #d5dfec;
  padding: 11px 13px;
  color: #07152f;
  font: inherit;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease;
}

.vf-form input:focus,
.vf-form select:focus,
.vf-form textarea:focus {
  border-color: #1268d5;
  box-shadow: 0 0 0 3px rgba(18, 104, 213, 0.16);
}

.vf-form textarea {
  resize: vertical;
}

.vf-form-wide {
  grid-column: 1 / -1;
}

.vf-form button {
  width: 100%;
}

.vf-form button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.vf-form-note {
  margin: -2px 0 0;
  color: rgba(7, 21, 47, 0.68);
  font-size: 12px;
  font-weight: 800;
}

.vf-form-note[data-status="success"] {
  color: #087336;
}

.vf-form-note[data-status="error"] {
  color: #b90010;
}

.vf-hidden-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
}

.vf-subhero {
  height: clamp(520px, 32vw, 650px);
  min-height: 0;
  aspect-ratio: 2172 / 724;
  display: block;
  padding: 0;
  background-size: var(--vf-bg-size, 100% auto), cover;
  background-position: var(--vf-bg-position, center top);
}

.vf-services-subhero {
  min-height: clamp(460px, 33.333vw, 724px);
  padding-top: clamp(108px, 6vw, 130px);
  padding-bottom: 24px;
  background-color: #020814;
}

.vf-services-subhero::before {
  background-color: transparent;
}

.vf-services-subhero .vf-subhero-copy {
  max-width: min(1080px, 72vw);
}

.vf-services-subhero h1 {
  font-size: clamp(44px, 4.2vw, 70px);
  line-height: 0.92;
}

.vf-reviews-subhero {
  height: clamp(520px, 32vw, 650px);
  min-height: 0;
  aspect-ratio: 2172 / 724;
  padding: 0;
  background-color: #020814;
  background-size: var(--vf-bg-size, 100% auto), cover;
  background-position: var(--vf-bg-position, center top);
}

.vf-reviews-subhero::before {
  background-size: var(--vf-overlay-size, 100% auto);
  background-position: var(--vf-overlay-position, center top);
}

.vf-subhero-copy {
  position: absolute;
  top: clamp(126px, 7.2vw, 144px);
  left: max(64px, calc((100vw - 1780px) / 2 + 78px));
  z-index: 2;
  width: min(620px, calc(100% - 48px));
  max-width: none;
  animation: vf-copy-enter 760ms ease-out 120ms both;
}

.vf-subhero-trust {
  position: relative;
  z-index: 3;
  margin-top: 14px;
}

.vf-subhero-copy p:not(.vf-kicker) {
  max-width: 575px;
  margin: 8px 0 0;
  font-size: clamp(11px, 0.78vw, 14px);
  font-weight: 700;
}

.vf-subhero-copy .vf-actions {
  margin-top: 12px;
}

.vf-subhero-copy .vf-btn {
  min-height: 34px;
  padding: 8px 17px;
  font-size: 12px;
}

.vf-subhero-copy .vf-btn svg {
  width: 15px;
  height: 15px;
}

.vf-subhero-trust .vf-proof-chip {
  min-width: 190px;
  min-height: 46px;
  grid-template-columns: 44px 1fr;
  gap: 10px;
  padding: 6px 10px;
}

.vf-subhero-trust .vf-google-logo,
.vf-subhero-trust .vf-trust-icon {
  width: 40px;
  height: 40px;
}

.vf-subhero-trust .vf-trust-icon svg {
  width: 26px;
  height: 26px;
}

.vf-subhero-trust strong {
  font-size: 13px;
}

.vf-subhero-trust small {
  font-size: 11px;
}

.vf-subhero h1 {
  font-size: clamp(40px, 3.25vw, 62px);
  line-height: 0.9;
  font-style: italic;
  letter-spacing: 0;
  word-spacing: 0.02em;
}

.vf-subhero h1 span {
  color: var(--vf-red);
}

.vf-about-section {
  display: grid;
  grid-template-columns: minmax(360px, 0.82fr) minmax(520px, 1.18fr);
  gap: 52px;
  align-items: center;
  padding: 86px 0;
}

.vf-footer {
  margin-top: 80px;
  background:
    linear-gradient(180deg, rgba(3, 13, 27, 0.96), rgba(1, 8, 18, 1));
  border-top: 1px solid var(--vf-line);
}

.vf-footer-inner {
  width: min(1720px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 34px;
  padding: 52px 0 36px;
}

.vf-footer-logo {
  width: 230px;
}

.vf-footer h2 {
  margin: 0 0 14px;
  font-family: "Velocity Display", Impact, sans-serif;
  font-size: 24px;
  text-transform: uppercase;
}

.vf-footer a,
.vf-footer span,
.vf-footer p {
  display: block;
  max-width: 360px;
  margin: 8px 0;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
}

.vf-footer-hours {
  padding-top: 8px;
  color: rgba(255, 255, 255, 0.86);
}

.vf-footer-bottom {
  width: min(1720px, calc(100% - 40px));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  padding: 18px 0 32px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 13px;
}

.vf-footer-bottom span,
.vf-footer-bottom a {
  display: inline;
  margin: 0;
  color: inherit;
  font-weight: 800;
}

.vf-footer-bottom a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.vf-img-fallback {
  display: grid;
  place-items: center;
  min-height: 240px;
  background: linear-gradient(135deg, #0a2a52, #061426);
  color: rgba(255, 255, 255, 0.74);
  font-weight: 900;
  text-transform: uppercase;
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 540ms ease,
    transform 540ms ease;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.vf-service-card,
.vf-services-tile,
.vf-story-strip article,
.vf-review-card,
.vf-stat-grid article,
.vf-services-feature-grid > *,
.vf-proof-chip,
.vf-btn {
  will-change: transform;
}

@keyframes vf-copy-enter {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes vf-van-drive {
  0% {
    opacity: 0;
    transform: translateX(calc(100vw + 40%)) translateY(2px);
  }
  8% {
    opacity: 1;
  }
  82% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateX(-145%) translateY(-3px);
  }
}

@media (max-width: 1280px) {
  .vf-header-inner {
    width: calc(100% - 36px);
    grid-template-columns: 220px 1fr 210px;
    gap: 18px;
  }

  .vf-logo {
    width: 210px;
  }

  .vf-nav {
    gap: 20px;
    font-size: 13px;
  }

  .vf-header-phone strong {
    font-size: 30px;
  }

  .vf-service-ribbon {
    grid-template-columns: repeat(3, 1fr);
  }

  .vf-story-strip {
    grid-template-columns: repeat(3, 1fr);
  }

  .vf-stat-band,
  .vf-dark-feature,
  .vf-about-section,
  .vf-contact-band {
    grid-template-columns: 1fr;
  }

  .vf-stat-grid,
  .vf-service-grid,
  .vf-review-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .vf-services-hero-copy {
    left: 32px;
    width: min(610px, 54vw);
  }

  .vf-services-tile-deck,
  .vf-services-feature-grid,
  .vf-services-proof-cta {
    width: calc(100% - 36px);
  }

  .vf-services-proof-cta {
    grid-template-columns: 1fr;
  }

  .vf-services-bottom-cta {
    padding-top: 18px;
    padding-left: 0;
    border-top: 1px solid var(--vf-line);
    border-left: 0;
  }
}

@media (max-width: 1040px) {
  .vf-services-landing-hero {
    min-height: 470px;
    background-size: auto 100%, cover;
  }

  .vf-subhero,
  .vf-reviews-subhero {
    min-height: 470px;
    background-size: auto 100%, cover;
  }

  .vf-services-landing-hero::before {
    background-size: auto 100%;
  }

  .vf-subhero::before,
  .vf-reviews-subhero::before {
    background-size: auto 100%;
  }

  .vf-services-tile-deck {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .vf-services-tile:nth-child(2n) {
    border-right: 0;
  }

  .vf-services-tile:nth-child(5) {
    grid-column: 1 / -1;
  }

  .vf-services-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .vf-services-feature-grid > * {
    border-right: 1px solid var(--vf-line);
    border-bottom: 1px solid var(--vf-line);
  }

  .vf-services-feature-grid > *:nth-child(2n) {
    border-right: 0;
  }

  .vf-services-feature-grid > *:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .vf-services-proof-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  html,
  body {
    overflow-x: hidden;
  }

  .vf-header-inner {
    width: calc(100% - 14px);
    min-height: 74px;
    grid-template-columns: 96px minmax(0, 1fr) 56px;
    gap: 8px;
  }

  .vf-header.is-scrolled .vf-header-inner {
    width: calc(100% - 16px);
    min-height: 64px;
    margin-top: 7px;
    padding: 7px 5px;
    grid-template-columns: 66px minmax(0, 1fr) 52px;
    gap: 4px;
    border-radius: 17px;
    background:
      linear-gradient(135deg, rgba(2, 8, 20, 0.82), rgba(8, 30, 58, 0.66)),
      rgba(2, 8, 20, 0.62);
    box-shadow:
      0 14px 34px rgba(0, 0, 0, 0.34),
      inset 0 1px 0 rgba(255, 255, 255, 0.13);
  }

  .vf-logo {
    width: 96px;
    max-height: 54px;
    object-fit: contain;
  }

  .vf-brand-lockup {
    gap: 0;
  }

  .vf-trane-header-logo {
    display: none;
  }

  .vf-header.is-scrolled .vf-logo {
    width: 66px;
    max-height: 48px;
  }

  .vf-nav {
    min-width: 0;
    width: 100%;
    justify-self: stretch;
    justify-content: flex-start;
    gap: 7px;
    overflow: hidden;
    font-size: 10px;
  }

  .vf-header.is-scrolled .vf-nav {
    gap: 5px;
    font-size: 10px;
  }

  .vf-nav a {
    padding: 8px 0;
    white-space: nowrap;
  }

  .vf-nav a::after {
    bottom: 2px;
    height: 2px;
  }

  .vf-mobile-call {
    justify-self: end;
    align-self: center;
    width: 52px;
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    pointer-events: auto;
    color: var(--vf-white);
    background: linear-gradient(135deg, var(--vf-red), #b90010);
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 4px;
    box-shadow: 0 10px 24px rgba(239, 7, 24, 0.24);
    font-size: 9px;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
  }

  .vf-mobile-call svg {
    width: 13px;
    height: 13px;
    fill: currentColor;
  }

  .vf-header-phone {
    display: none;
  }

  .vf-hero {
    width: 100%;
    aspect-ratio: auto;
    height: calc((100vw * 1573) / 1083);
    min-height: 0;
    display: block;
    background-image: var(--vf-mobile-bg-image, var(--vf-bg-image)), linear-gradient(135deg, #061426, #0a2a52);
    background-position: center top;
    background-size: var(--vf-mobile-bg-size, auto 100%), cover;
  }

  .vf-hero::before,
  .vf-subhero::before {
    background-image: var(--vf-mobile-hero-overlay, var(--vf-hero-overlay));
    background-position: center top;
    background-size: var(--vf-mobile-overlay-size, auto 100%);
  }

  .vf-subhero {
    width: 100%;
    height: calc((100vw * 1573) / 1083);
    min-height: 0;
    display: block;
    padding: 0;
    background-image: var(--vf-mobile-bg-image, var(--vf-bg-image)), linear-gradient(135deg, #061426, #0a2a52);
    background-position: center top;
    background-size: var(--vf-mobile-bg-size, auto 100%), cover;
  }

  .vf-hero-copy {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    min-width: 0;
    margin: 0;
    padding: 0;
  }

  .vf-mobile-hero-sponsor {
    display: block;
    position: absolute;
    left: 50%;
    bottom: 33%;
    z-index: 3;
    width: clamp(70px, 18vw, 98px);
    height: auto;
    transform: translateX(-50%);
    object-fit: contain;
    filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.42));
    pointer-events: none;
  }

  .vf-hero-copy > .vf-kicker {
    position: absolute;
    top: 84px;
    left: 18px;
    right: 18px;
    margin: 0;
  }

  .vf-hero-mobile-stack {
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 16px;
    display: flex;
    flex-direction: column;
    width: auto;
    max-width: none;
  }

  .vf-subhero .vf-subhero-copy {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    width: auto;
    max-width: none;
    min-width: 0;
    padding: 0 14px 16px;
  }

  .vf-subhero .vf-kicker {
    position: absolute;
    top: 84px;
    left: 18px;
    right: 18px;
    margin: 0;
  }

  .vf-hero h1,
  .vf-subhero h1 {
    order: 1;
    font-size: 30px;
    max-width: 100%;
    width: 100%;
    min-width: 0;
    line-height: 0.9;
  }

  .vf-hero p:not(.vf-kicker),
  .vf-subhero p:not(.vf-kicker) {
    order: 3;
    max-width: 100%;
    width: 100%;
    min-width: 0;
    margin-top: 8px;
    font-size: 11.5px;
    line-height: 1.2;
    overflow-wrap: break-word;
  }

  .vf-actions {
    order: 2;
    align-items: center;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 8px;
    margin-top: 8px;
  }

  .vf-btn {
    flex: 1 1 0;
    min-width: 0;
    max-width: 158px;
    width: auto;
    min-height: 30px;
    padding: 6px 8px;
    gap: 6px;
    font-size: 8.2px;
    white-space: nowrap;
  }

  .vf-btn svg {
    width: 14px;
    height: 14px;
    stroke-width: 5;
  }

  .vf-btn span {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .vf-hero-trust {
    order: 4;
    align-items: stretch;
    flex-direction: row;
    gap: 8px;
    width: 100%;
    max-width: 100%;
    margin-top: 8px;
  }

  .vf-hero-van-run {
    bottom: 6px;
  }

  .vf-hero-van {
    width: 48vw;
    animation-duration: 7.2s;
    animation-delay: 2.6s;
  }

  .vf-proof-chip {
    min-width: 0;
    width: auto;
    flex: 1 1 0;
    min-height: 38px;
    grid-template-columns: 30px minmax(0, 1fr);
    gap: 7px;
    padding: 4px 7px;
  }

  .vf-proof-chip > div {
    min-width: 0;
  }

  .vf-proof-chip strong,
  .vf-proof-chip small {
    font-size: 9.5px;
    white-space: normal;
  }

  .vf-google-logo,
  .vf-trust-icon {
    width: 28px;
    height: 28px;
  }

  .vf-google-logo {
    padding: 4px;
  }

  .vf-trust-icon svg {
    width: 22px;
    height: 22px;
  }

  .vf-services-trust .vf-proof-chip {
    min-width: 0;
    grid-template-columns: 30px minmax(0, 1fr);
  }

  .vf-services-trust .vf-google-logo,
  .vf-services-trust .vf-trust-icon {
    width: 28px;
    height: 28px;
  }

  .vf-services-trust strong,
  .vf-services-trust small {
    font-size: 9.5px;
  }

  .vf-service-ribbon {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .vf-story-strip,
  .vf-service-grid,
  .vf-review-grid,
  .vf-footer-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .vf-footer-inner > div {
    min-width: 0;
  }

  .vf-footer a,
  .vf-footer span,
  .vf-footer p {
    overflow-wrap: anywhere;
  }

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

  .vf-service-ribbon article {
    min-height: 56px;
    grid-template-columns: 20px minmax(0, 1fr);
    gap: 5px;
    padding: 7px 5px;
    border-right: 1px solid var(--vf-line);
    border-bottom: 1px solid var(--vf-line);
  }

  .vf-service-ribbon article:last-child {
    border-right: 0;
  }

  .vf-ribbon-icon svg {
    width: 20px;
    height: 20px;
    stroke-width: 5;
  }

  .vf-service-ribbon h2 {
    font-size: 8.4px;
  }

  .vf-service-ribbon p {
    margin-top: 2px;
    font-size: 6.6px;
    line-height: 1.12;
  }

  .vf-story-strip article,
  .vf-story-photo {
    min-height: 180px;
  }

  .vf-stat-band,
  .vf-section,
  .vf-dark-feature,
  .vf-about-section,
  .vf-area-band,
  .vf-promise-band,
  .vf-contact-band,
  .vf-footer-inner,
  .vf-footer-bottom {
    width: calc(100% - 20px);
  }

  .vf-stat-band,
  .vf-contact-band,
  .vf-area-band,
  .vf-promise-band {
    padding: 28px 18px;
  }

  .vf-stat-grid {
    gap: 8px;
  }

  .vf-promise-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .vf-promise-grid article {
    min-height: 158px;
    padding: 16px 12px;
    gap: 9px;
  }

  .vf-promise-grid span {
    width: 38px;
    height: 38px;
  }

  .vf-promise-grid span svg {
    width: 22px;
    height: 22px;
  }

  .vf-promise-grid h3,
  .vf-mission-grid h3 {
    font-size: 19px;
  }

  .vf-promise-grid p,
  .vf-mission-grid p {
    font-size: 10px;
    line-height: 1.22;
  }

  .vf-stat-grid article {
    min-height: 82px;
  }

  .vf-stat-grid span svg {
    width: 28px;
    height: 28px;
  }

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

  .vf-stat-grid small {
    font-size: 8px;
  }

  .vf-section {
    padding: 54px 0;
  }

  .vf-stat-copy h2,
  .vf-section-title h2,
  .vf-dark-feature h2,
  .vf-about-section h2,
  .vf-area-band h2,
  .vf-contact-copy h2 {
    font-size: 42px;
  }

  .vf-card-body {
    padding: 18px 14px 20px;
  }

  .vf-card-body h3 {
    font-size: 21px;
  }

  .vf-card-body p {
    min-height: 72px;
    font-size: 11px;
  }

  .vf-card-icon {
    width: 38px;
    height: 38px;
    margin-bottom: 12px;
  }

  .vf-card-icon svg {
    width: 22px;
    height: 22px;
  }

  .vf-dark-feature,
  .vf-about-section {
    gap: 24px;
    padding: 54px 0;
  }

  .vf-mission-grid {
    gap: 10px;
  }

  .vf-mission-grid article {
    padding: 14px;
  }

  .vf-feature-photo,
  .vf-about-photo {
    min-height: 320px;
  }

  .vf-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 16px;
  }

  .vf-form input,
  .vf-form select,
  .vf-form textarea {
    min-height: 38px;
    padding: 8px 9px;
    font-size: 12px;
  }

  .vf-big-phone {
    font-size: 42px;
  }

  .vf-subhero {
    height: calc((100vw * 1573) / 1083);
    min-height: 0;
    padding: 0;
    background-image: var(--vf-mobile-bg-image, var(--vf-bg-image)), linear-gradient(135deg, #061426, #0a2a52);
    background-position: center top;
    background-size: var(--vf-mobile-bg-size, 100% auto), cover;
  }

  .vf-services-subhero {
    height: calc((100vw * 1573) / 1083);
    min-height: 0;
    padding: 0;
  }

  .vf-services-subhero .vf-subhero-copy {
    max-width: none;
  }

  .vf-subhero h1 {
    font-size: 30px;
    line-height: 0.9;
  }

  .vf-services-subhero h1 {
    font-size: 30px;
  }

  .vf-reviews-subhero {
    height: calc((100vw * 1573) / 1083);
    min-height: 0;
    aspect-ratio: auto;
    padding: 0;
    background-image: var(--vf-mobile-bg-image, var(--vf-bg-image)), linear-gradient(135deg, #061426, #0a2a52);
    background-position: center top;
    background-size: 100% auto, cover;
  }

  .vf-reviews-subhero::before {
    background-size: 100% auto;
    background-position: center top;
  }

  .vf-services-template-page {
    padding-bottom: 10px;
  }

  .vf-services-landing-hero {
    height: calc((100vw * 1573) / 1083);
    min-height: 0;
    padding: 0;
    background-image: var(--vf-mobile-bg-image, var(--vf-bg-image)), linear-gradient(135deg, #061426, #0a2a52);
    background-size: var(--vf-mobile-bg-size, 100% auto), cover;
    background-position: center top;
  }

  .vf-services-landing-hero::before {
    background-image: var(--vf-mobile-hero-overlay, var(--vf-hero-overlay));
    background-size: var(--vf-mobile-overlay-size, 100% auto);
    background-position: center top;
  }

  .vf-services-hero-copy {
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 16px;
    top: auto;
    width: auto;
    display: flex;
    flex-direction: column;
    max-width: none;
    min-width: 0;
  }

  .vf-services-hero-kicker {
    position: absolute;
    top: 84px;
    left: 18px;
    right: 18px;
    z-index: 3;
    margin: 0;
    display: block;
    font-size: 10px;
    line-height: 1.1;
  }

  .vf-services-hero-copy h1 {
    order: 1;
    max-width: 100%;
    width: 100%;
    min-width: 0;
    font-size: 30px;
    line-height: 0.9;
  }

  .vf-services-hero-copy p {
    order: 3;
    max-width: 100%;
    width: 100%;
    min-width: 0;
    margin-top: 8px;
    font-size: 11.5px;
    line-height: 1.2;
    overflow-wrap: break-word;
  }

  .vf-services-hero-copy .vf-actions {
    order: 2;
  }

  .vf-services-hero-copy .vf-btn {
    min-height: 30px;
    padding: 6px 8px;
    font-size: 8.2px;
  }

  .vf-services-hero-copy .vf-btn svg {
    width: 14px;
    height: 14px;
  }

  .vf-services-trust {
    order: 4;
    margin-top: 8px;
  }

  .vf-reviews-subhero {
    display: block;
  }

  .vf-reviews-subhero .vf-subhero-copy {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    width: auto;
    max-width: none;
    min-width: 0;
    padding: 0 14px 16px;
  }

  .vf-reviews-subhero .vf-kicker {
    position: absolute;
    top: 68px;
    left: 18px;
    right: 18px;
    margin: 0;
  }

  .vf-reviews-subhero h1 {
    order: 1;
    max-width: 100%;
    font-size: 30px;
    line-height: 0.9;
  }

  .vf-reviews-subhero p:not(.vf-kicker) {
    order: 3;
    max-width: 100%;
    margin-top: 8px;
    font-size: 11.5px;
    line-height: 1.2;
  }

  .vf-services-tile-deck,
  .vf-services-feature-grid,
  .vf-services-proof-cta {
    width: calc(100% - 20px);
  }

  .vf-services-tile-deck {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .vf-services-feature-grid {
    grid-template-columns: minmax(0, 0.68fr) minmax(0, 1.32fr);
    grid-auto-rows: minmax(190px, auto);
  }

  .vf-services-tile,
  .vf-services-tile:nth-child(2n),
  .vf-services-tile:last-child {
    border-right: 1px solid var(--vf-line);
    border-bottom: 1px solid var(--vf-line);
  }

  .vf-services-tile:nth-child(2n),
  .vf-services-tile:last-child {
    border-right: 0;
  }

  .vf-services-tile:last-child {
    border-bottom: 0;
  }

  .vf-services-tile:nth-child(5) {
    grid-column: 1 / -1;
  }

  .vf-services-tile-media {
    height: 132px;
  }

  .vf-services-tile-body {
    min-height: auto;
    padding: 30px 14px 16px;
  }

  .vf-services-icon {
    width: 42px;
    height: 42px;
    top: -23px;
    left: 14px;
  }

  .vf-services-icon svg {
    width: 23px;
    height: 23px;
  }

  .vf-services-tile h2 {
    font-size: 18px;
  }

  .vf-services-tile p {
    font-size: 10px;
    min-height: 54px;
  }

  .vf-services-feature-grid > *,
  .vf-services-feature-grid > *:nth-child(2n),
  .vf-services-feature-grid > *:nth-child(4n),
  .vf-services-feature-grid > *:nth-last-child(-n + 2),
  .vf-services-feature-grid > *:nth-last-child(-n + 4) {
    border-right: 1px solid var(--vf-line);
    border-bottom: 1px solid var(--vf-line);
  }

  .vf-services-feature-grid > *:nth-child(2n) {
    border-right: 0;
  }

  .vf-services-feature-grid > *:last-child {
    border-bottom: 0;
  }

  .vf-services-feature-grid > *,
  .vf-services-feature-photo {
    min-height: 180px;
  }

  .vf-services-feature-copy {
    min-height: auto;
    padding: 16px 10px;
  }

  .vf-services-feature-copy h2 {
    font-size: 15.5px;
    line-height: 0.98;
    overflow-wrap: break-word;
  }

  .vf-services-feature-copy > span,
  .vf-services-feature-copy li {
    font-size: 9.5px;
    line-height: 1.16;
  }

  .vf-services-feature-copy ul {
    gap: 3px;
  }

  .vf-services-person-card figcaption {
    top: 10px;
    left: 10px;
    max-width: calc(100% - 20px);
    font-size: 8px;
    letter-spacing: 0.1em;
  }

  .vf-services-person-card figcaption::before {
    width: 12px;
    margin-right: 5px;
  }

  .vf-services-person-group {
    inset: 38px 2px 0;
  }

  .vf-services-person-photo {
    height: 118%;
    max-width: 88%;
  }

  .vf-services-person-count-1 .vf-services-person-photo {
    height: 124%;
    max-width: 106%;
  }

  .vf-services-person-count-2 .vf-services-person-photo {
    max-width: 72%;
    height: 112%;
    margin-inline: -18%;
  }

  .vf-services-proof-cta {
    gap: 18px;
    padding: 22px 18px;
  }

  .vf-services-proof-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .vf-services-bottom-cta {
    padding-top: 18px;
  }

  .vf-diagnostic-modal {
    padding: 10px;
  }

  .vf-diagnostic-dialog {
    max-height: calc(100vh - 20px);
  }

  .vf-diagnostic-panel {
    padding: 56px 18px 22px;
  }

  .vf-diagnostic-panel h2 {
    font-size: 36px;
  }

  .vf-diagnostic-options,
  .vf-diagnostic-form,
  .vf-diagnostic-summary {
    grid-template-columns: 1fr;
  }

  .vf-diagnostic-option {
    min-height: 0;
  }

  .vf-diagnostic-actions .vf-btn {
    flex: 0 1 auto;
    min-width: 140px;
  }
}

@media (max-width: 390px) {
  .vf-header-inner {
    min-height: 70px;
    grid-template-columns: 82px minmax(0, 1fr);
    gap: 6px;
  }

  .vf-logo {
    width: 82px;
    max-height: 48px;
  }

  .vf-nav {
    gap: 7px;
    font-size: 9.8px;
  }

  .vf-service-ribbon h2 {
    font-size: 7.5px;
  }

  .vf-service-ribbon p {
    font-size: 6px;
  }

  .vf-hero h1 {
    font-size: 28px;
  }

  .vf-btn {
    font-size: 8px;
    padding-inline: 6px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal-on-scroll {
    opacity: 1;
    transform: none;
  }

  .vf-hero-van-run {
    display: none;
  }
}
