:root {
  --black: #030405;
  --night: #070b10;
  --panel: #0d141d;
  --panel-2: #111c28;
  --steel: #a7b1bd;
  --muted: #7f8a97;
  --white: #fff;
  --line: rgb(255, 255, 255, 0.12);
  --blue: #1e88ff;
  --blue-2: #0353d8;
  --cyan: #5bf;
  --shadow: 0 24px 80px rgb(0, 0, 0, 0.48);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 80;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  box-shadow: 0 0 20px rgb(30, 136, 255, 0.75);
  pointer-events: none;
}

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

button,
input,
textarea {
  font: inherit;
}

img {
  max-width: 100%;
}

[id] {
  scroll-margin-top: 100px;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 84px;
  padding: 16px 44px;
  background: rgb(0, 0, 0, 0.82);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  display: block;
  width: 218px;
  height: 50px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  color: #dce6ef;
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.site-nav a:hover {
  color: var(--cyan);
}

.site-nav .nav-action {
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  color: var(--white);
  border-radius: 4px;
  box-shadow: 0 0 28px rgb(30, 136, 255, 0.42);
}

.site-nav .nav-action:hover {
  color: var(--white);
  filter: brightness(1.12);
}

.header-phone {
  color: var(--cyan) !important;
  border: 1px solid rgb(30, 136, 255, 0.36);
  border-radius: 4px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: rgb(255, 255, 255, 0.04);
  color: var(--white);
}

.menu-line {
  display: block;
  width: 21px;
  height: 2px;
  margin: 4px auto;
  background: currentcolor;
}

.hero {
  position: relative;
  min-height: 860px;
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  padding: 140px 44px 58px;
  border-bottom: 1px solid var(--line);
}

.hero-picture,
.hero-image {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
}

.hero-image {
  display: block;
  object-fit: cover;
  object-position: 45% 68%;
  transform: scale(1.03);
  filter: saturate(1.04) contrast(1.04);
  animation: heroImageSettle 1000ms ease-out forwards;
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(
      90deg,
      rgb(0, 0, 0, 0.78) 0%,
      rgb(0, 0, 0, 0.38) 46%,
      rgb(0, 0, 0, 0.48) 100%
    ),
    radial-gradient(
      circle at 50% 62%,
      rgb(30, 136, 255, 0.22),
      transparent 30%
    ),
    linear-gradient(180deg, rgb(0, 0, 0, 0.25) 0%, rgb(0, 0, 0, 0.88) 100%);
}

.hero::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 34px;
  width: min(980px, calc(100% - 88px));
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--blue), transparent);
  box-shadow: 0 0 22px rgb(30, 136, 255, 0.78);
  transform: translateX(-50%);
}

.hero-content {
  width: min(1180px, 100%);
  display: grid;
  gap: clamp(28px, 5vw, 56px);
  align-items: center;
  justify-self: center;
}

.hero-main-copy {
  width: min(920px, 100%);
  min-width: 0;
  display: grid;
  justify-items: center;
  margin: 0 auto;
  text-align: center;
}

.hero-trust-row {
  width: min(1180px, 100%);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  justify-self: center;
  background: rgb(85, 187, 255, 0.26);
  border: 1px solid rgb(85, 187, 255, 0.34);
  box-shadow:
    0 20px 62px rgb(0, 0, 0, 0.38),
    0 0 34px rgb(30, 136, 255, 0.2);
}

.hero-trust-row span {
  position: relative;
  min-height: 82px;
  display: grid;
  align-content: center;
  padding: 18px 18px 18px 22px;
  color: var(--white);
  background:
    linear-gradient(140deg, rgb(30, 136, 255, 0.16), transparent 54%),
    rgb(0, 0, 0, 0.64);
  font-size: 0.82rem;
  font-weight: 900;
  line-height: 1.22;
  text-transform: uppercase;
}

.hero-trust-row span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  bottom: 18px;
  width: 3px;
  background: var(--blue);
  box-shadow: 0 0 18px rgb(30, 136, 255, 0.72);
}

.hero-command-rail {
  width: 100%;
  display: grid;
  grid-template-columns:
    minmax(210px, 0.78fr) minmax(300px, 1.05fr) minmax(230px, 0.85fr)
    minmax(220px, 0.78fr);
  gap: 14px;
  align-items: stretch;
  padding-top: 24px;
  border-top: 1px solid rgb(85, 187, 255, 0.54);
  background: linear-gradient(180deg, rgb(0, 0, 0, 0.3), transparent);
}

.hero-logo-lockup {
  position: relative;
  width: min(620px, 92vw);
  margin: 0 0 20px;
  padding: 7px 0 9px;
  isolation: isolate;
}

.hero-logo-lockup::before,
.hero-logo-lockup::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    rgb(30, 136, 255, 0.95),
    transparent
  );
  box-shadow: 0 0 22px rgb(30, 136, 255, 0.72);
}

.hero-logo-lockup::before {
  margin-bottom: 7px;
}

.hero-logo-lockup::after {
  margin-top: 4px;
}

.hero-logo {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 0 22px rgb(30, 136, 255, 0.38));
  opacity: 0.99;
}

.road-service-badge {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  min-height: 100%;
  margin: 0;
  padding: 8px 14px 8px 10px;
  background: linear-gradient(
    90deg,
    rgb(30, 136, 255, 0.2),
    rgb(255, 255, 255, 0.035)
  );
  border: 1px solid rgb(30, 136, 255, 0.42);
  border-radius: 4px;
  box-shadow: 0 0 28px rgb(30, 136, 255, 0.22);
}

.road-service-badge strong {
  display: grid;
  place-items: center;
  width: 48px;
  height: 36px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  border-radius: 3px;
  font-size: 1rem;
  line-height: 1;
}

.road-service-badge span {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 900;
  text-transform: uppercase;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--cyan);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

.hero-title {
  display: grid;
  gap: 11px;
  width: min(920px, 100%);
  margin: 0 0 22px;
  text-transform: uppercase;
  justify-items: center;
}

.hero-title-overline {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 11px;
  color: var(--cyan);
  background: rgb(30, 136, 255, 0.12);
  border-left: 3px solid var(--blue);
  font-size: 0.84rem;
  font-weight: 900;
}

.hero-title-main {
  display: block;
  color: var(--white);
  font-size: clamp(3.2rem, 6vw, 5.55rem);
  font-weight: 900;
  line-height: 0.92;
  text-shadow:
    0 0 34px rgb(0, 0, 0, 0.7),
    0 0 22px rgb(30, 136, 255, 0.16);
}

.hero-title-route {
  display: block;
  width: fit-content;
  padding-top: 11px;
  color: #d9e8f8;
  border-top: 2px solid rgb(30, 136, 255, 0.68);
  font-size: 1.12rem;
  font-weight: 900;
  letter-spacing: 0;
}

.hero-copy {
  width: min(760px, 100%);
  margin-bottom: 22px;
  color: #e0e7ef;
  font-size: 1.12rem;
  text-shadow: 0 0 24px rgb(0, 0, 0, 0.8);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 0;
}

.hero-service-pills {
  counter-reset: service-signal;
  width: min(650px, 100%);
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  margin: 2px 0 24px;
}

.hero-command-rail .hero-service-pills {
  width: 100%;
  grid-template-columns: 1fr;
  gap: 6px;
  margin: 0;
}

.hero-command-rail .hero-service-pills a,
.hero-command-rail .hero-service-pills span {
  min-height: 40px;
  padding: 8px 14px 8px 52px;
  font-size: 0.82rem;
  line-height: 1.1;
  clip-path: polygon(0 0, calc(100% - 13px) 0, 100% 100%, 0 100%);
}

.hero-command-rail .road-service-badge,
.hero-command-rail .hero-review-link {
  margin: 0;
}

.hero-command-rail .hero-capability-strip {
  width: 100%;
}

.hero-service-pills span,
.hero-service-pills a {
  counter-increment: service-signal;
  position: relative;
  min-height: 68px;
  display: grid;
  align-content: center;
  padding: 13px 12px 13px 38px;
  color: #dcecff;
  background:
    linear-gradient(
      110deg,
      rgb(30, 136, 255, 0.28),
      rgb(8, 14, 22, 0.78) 36%,
      rgb(255, 255, 255, 0.055)
    ),
    rgb(0, 0, 0, 0.42);
  border-top: 1px solid rgb(85, 187, 255, 0.36);
  border-bottom: 1px solid rgb(30, 136, 255, 0.32);
  font-size: 0.74rem;
  font-weight: 900;
  line-height: 1.15;
  text-transform: uppercase;
  box-shadow:
    inset 0 1px 0 rgb(255, 255, 255, 0.08),
    0 0 26px rgb(30, 136, 255, 0.13);
  clip-path: polygon(
    0 0,
    calc(100% - 18px) 0,
    100% 50%,
    calc(100% - 18px) 100%,
    0 100%,
    13px 50%
  );
  overflow: hidden;
  overflow-wrap: break-word;
}

.hero-service-pills span:nth-child(1),
.hero-service-pills a:nth-child(1) {
  clip-path: polygon(
    0 0,
    calc(100% - 18px) 0,
    100% 50%,
    calc(100% - 18px) 100%,
    0 100%
  );
}

.hero-service-pills span:last-child,
.hero-service-pills a:last-child {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 13px 50%);
}

.hero-service-pills span::before,
.hero-service-pills a::before {
  content: "0" counter(service-signal);
  position: absolute;
  top: 8px;
  left: 16px;
  z-index: 1;
  color: #04111f;
  font-size: 0.62rem;
  font-weight: 900;
}

.hero-service-pills span::after,
.hero-service-pills a::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 31px;
  background:
    linear-gradient(180deg, rgb(255, 255, 255, 0.82), transparent 17%),
    linear-gradient(180deg, var(--cyan), var(--blue) 55%, var(--blue-2));
  box-shadow: 0 0 22px rgb(30, 136, 255, 0.82);
}

.hero-service-pills span:nth-child(even)::after,
.hero-service-pills a:nth-child(even)::after {
  background:
    linear-gradient(180deg, rgb(255, 255, 255, 0.72), transparent 17%),
    linear-gradient(180deg, var(--blue), var(--blue-2));
}

.hero-service-pills a:hover {
  color: var(--white);
  filter: brightness(1.16);
}

.hero-capability-strip,
.expertise-list {
  display: grid;
  gap: 8px;
}

.hero-capability-strip {
  width: 100%;
}

.hero-capability-strip span,
.expertise-list span {
  position: relative;
  min-height: 42px;
  display: flex;
  align-items: center;
  padding: 0 14px 0 66px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgb(30, 136, 255, 0.18), rgb(255, 255, 255, 0.035)),
    rgb(0, 0, 0, 0.28);
  border-top: 1px solid rgb(255, 255, 255, 0.11);
  border-bottom: 1px solid rgb(255, 255, 255, 0.09);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
  clip-path: polygon(
    0 0,
    calc(100% - 13px) 0,
    100% 50%,
    calc(100% - 13px) 100%,
    0 100%
  );
  overflow: hidden;
}

.hero-capability-strip span::before,
.expertise-list span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 48px;
  background:
    linear-gradient(180deg, rgb(255, 255, 255, 0.72), transparent 18%),
    linear-gradient(135deg, var(--cyan), var(--blue-2));
  box-shadow: 0 0 20px rgb(85, 187, 255, 0.5);
  clip-path: polygon(0 0, 100% 0, 74% 50%, 100% 100%, 0 100%);
}

.hero-review-link {
  width: 100%;
  display: inline-grid;
  align-content: center;
  gap: 2px;
  min-height: 100%;
  margin: 0;
  padding: 10px 16px;
  background: rgb(0, 0, 0, 0.42);
  border: 1px solid rgb(30, 136, 255, 0.45);
  border-radius: 4px;
  box-shadow: 0 0 28px rgb(30, 136, 255, 0.18);
}

.hero-review-link span {
  color: var(--cyan);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-review-link strong {
  color: var(--white);
  font-size: 0.92rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-review-link:hover {
  border-color: rgb(85, 187, 255, 0.72);
  box-shadow: 0 0 34px rgb(30, 136, 255, 0.28);
}

.button {
  position: relative;
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
  overflow: hidden;
  transition:
    transform 220ms ease,
    filter 220ms ease,
    background 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    transparent 0%,
    rgb(255, 255, 255, 0.24) 44%,
    transparent 62%
  );
  transform: translateX(-120%);
  transition: transform 420ms ease;
}

.button:hover::before {
  transform: translateX(120%);
}

.button:focus-visible,
.text-link:focus-visible,
.card-link:focus-visible,
.site-nav a:focus-visible,
.mobile-call-now:focus-visible {
  outline: 3px solid rgb(85, 187, 255, 0.88);
  outline-offset: 3px;
}

.button.primary {
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  color: var(--white);
  box-shadow: 0 0 30px rgb(30, 136, 255, 0.36);
}

.button.primary:hover {
  transform: translateY(-2px);
  filter: brightness(1.12);
}

.button.secondary {
  background: rgb(255, 255, 255, 0.04);
  border-color: rgb(30, 136, 255, 0.55);
  color: var(--white);
}

.button.secondary:hover {
  transform: translateY(-2px);
  background: rgb(30, 136, 255, 0.16);
}

.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  padding: 1px;
  background:
    linear-gradient(90deg, transparent, rgb(30, 136, 255, 0.55), transparent),
    #05070a;
  border-top: 1px solid rgb(85, 187, 255, 0.24);
  border-bottom: 1px solid rgb(85, 187, 255, 0.2);
}

.stat {
  min-height: 148px;
  display: grid;
  align-content: center;
  gap: 4px;
  padding: 30px 44px;
  background: linear-gradient(
    135deg,
    rgb(255, 255, 255, 0.035),
    rgb(30, 136, 255, 0.055)
  );
  border: 1px solid rgb(85, 187, 255, 0.12);
  box-shadow: inset 0 0 0 1px rgb(255, 255, 255, 0.025);
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease,
    background 220ms ease;
}

.stat:last-child {
  border-right: 0;
}

.stat:hover {
  transform: translateY(-4px);
  border-color: rgb(85, 187, 255, 0.38);
  background: linear-gradient(
    135deg,
    rgb(30, 136, 255, 0.13),
    rgb(255, 255, 255, 0.035)
  );
  box-shadow:
    inset 0 0 0 1px rgb(255, 255, 255, 0.045),
    0 16px 38px rgb(0, 0, 0, 0.24),
    0 0 22px rgb(30, 136, 255, 0.16);
}

.stat strong {
  color: var(--cyan);
  font-size: 2.5rem;
  line-height: 1;
  text-shadow: 0 0 20px rgb(30, 136, 255, 0.5);
}

.stat span {
  color: var(--cyan);
  font-weight: 900;
  text-transform: uppercase;
}

.stat-feature {
  background: linear-gradient(
    135deg,
    rgb(30, 136, 255, 0.22),
    rgb(3, 83, 216, 0.04)
  );
}

.stat-feature strong {
  color: var(--cyan);
}

.section {
  position: relative;
  padding: 104px 44px;
}

.section-heading {
  width: min(1180px, 100%);
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(280px, 0.46fr);
  gap: clamp(22px, 5vw, 62px);
  align-items: end;
  margin: 0 auto 48px;
  text-align: left;
}

.section-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -8px;
}

.section-action-row {
  display: flex;
  justify-content: center;
  margin-top: 22px;
}

.section-heading h2,
.split-copy h2,
.cta-copy h2 {
  margin-bottom: 0;
  font-size: clamp(2.35rem, 4vw, 3.45rem);
  line-height: 1.05;
  text-transform: uppercase;
}

.section-heading p,
.split-copy p,
.cta-copy p,
.feature-panel p {
  color: var(--steel);
}

.section-heading > p:not(.eyebrow) {
  margin: 0;
  padding-top: 18px;
  border-top: 1px solid rgb(85, 187, 255, 0.26);
  font-size: 1.03rem;
}

.answer-section {
  background: #070b10;
  border-bottom: 1px solid var(--line);
}

.answer-grid {
  width: min(1180px, 100%);
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin: 0 auto;
  border-top: 1px solid rgb(255, 255, 255, 0.14);
}

.answer-grid article {
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(160px, 0.34fr) minmax(0, 1fr);
  gap: 22px;
  align-items: start;
  padding: 20px 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgb(255, 255, 255, 0.14);
  border-radius: 0;
}

.answer-grid span {
  display: block;
  margin-bottom: 12px;
  color: var(--cyan);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.answer-grid p {
  margin-bottom: 0;
  color: var(--steel);
  font-size: 1.02rem;
}

.answer-grid a {
  color: var(--cyan);
  font-weight: 900;
}

.service-grid {
  width: min(1180px, 100%);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 0 auto;
}

.service-card {
  --card-accent: var(--blue);
  --card-accent-soft: rgb(30, 136, 255, 0.13);

  position: relative;
  min-height: 318px;
  display: grid;
  grid-template-rows: auto auto 1fr auto auto;
  gap: 13px;
  align-items: start;
  padding: 25px;
  background:
    linear-gradient(145deg, var(--card-accent-soft), transparent 42%),
    linear-gradient(
      180deg,
      rgb(255, 255, 255, 0.055),
      rgb(255, 255, 255, 0.018)
    );
  border: 1px solid rgb(255, 255, 255, 0.11);
  border-radius: 8px;
  box-shadow: 0 18px 45px rgb(0, 0, 0, 0.2);
  clip-path: polygon(0 0, calc(100% - 24px) 0, 100% 24px, 100% 100%, 0 100%);
  isolation: isolate;
  overflow: hidden;
  overflow-wrap: anywhere;
  transition:
    transform 260ms ease,
    border-color 240ms ease,
    box-shadow 240ms ease,
    background 240ms ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  z-index: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--card-accent), transparent 82%);
  opacity: 0.86;
  pointer-events: none;
}

.service-card::after {
  content: "";
  position: absolute;
  z-index: 0;
  right: -54px;
  bottom: -54px;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, var(--card-accent-soft), transparent 66%);
  opacity: 0.9;
  pointer-events: none;
  transition:
    opacity 240ms ease,
    transform 240ms ease;
}

.service-card > * {
  position: relative;
  z-index: 1;
}

.service-card:hover {
  transform: translateY(-7px);
  border-color: var(--card-accent);
  background:
    linear-gradient(145deg, var(--card-accent-soft), transparent 48%),
    linear-gradient(
      180deg,
      rgb(255, 255, 255, 0.075),
      rgb(255, 255, 255, 0.024)
    );
  box-shadow:
    0 24px 60px rgb(0, 0, 0, 0.32),
    0 0 34px var(--card-accent-soft);
}

.service-card:hover::after {
  opacity: 1;
  transform: scale(1.08);
}

.service-card-urgent {
  --card-accent: #1e88ff;
  --card-accent-soft: rgb(30, 136, 255, 0.15);
}

.service-card-truck {
  --card-accent: #5bf;
  --card-accent-soft: rgb(85, 187, 255, 0.13);
}

.service-card-trailer {
  --card-accent: #2d6dff;
  --card-accent-soft: rgb(45, 109, 255, 0.15);
}

.service-card-diagnostics {
  --card-accent: #7ed4ff;
  --card-accent-soft: rgb(126, 212, 255, 0.12);
}

.service-card-fleet {
  --card-accent: #1674ef;
  --card-accent-soft: rgb(22, 116, 239, 0.16);
}

.service-card-area {
  --card-accent: #4aa8ff;
  --card-accent-soft: rgb(74, 168, 255, 0.13);
}

.service-card:nth-child(3n)::before {
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--card-accent), transparent 80%);
}

.service-card:nth-child(4n) {
  clip-path: polygon(
    0 0,
    100% 0,
    100% calc(100% - 22px),
    calc(100% - 22px) 100%,
    0 100%
  );
}

.service-card h3 {
  margin: 0;
  font-size: clamp(1.18rem, 2vw, 1.52rem);
  line-height: 1.08;
  text-transform: uppercase;
  text-wrap: balance;
}

.service-card p {
  margin: 0;
  color: var(--steel);
  font-size: 1rem;
  line-height: 1.55;
}

.capability-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: var(--cyan);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.capability-kicker::before {
  content: "";
  display: inline-grid;
  place-items: center;
  width: 9px;
  height: 9px;
  background: var(--card-accent);
  box-shadow: 0 0 14px var(--card-accent);
  clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
}

.service-best-for {
  padding-top: 14px;
  border-top: 1px solid rgb(255, 255, 255, 0.1);
}

.service-best-for span {
  display: block;
  margin-bottom: 4px;
  color: var(--cyan);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.card-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-self: start;
  min-height: 36px;
  margin: 0;
  color: var(--cyan);
  border-bottom: 1px solid rgb(85, 187, 255, 0.46);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
}

.card-link::after {
  content: ">";
  margin-left: 8px;
}

.card-link:hover {
  color: var(--white);
}

.service-icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin: 0;
  color: #04111f;
  background:
    linear-gradient(180deg, rgb(255, 255, 255, 0.74), transparent 22%),
    linear-gradient(135deg, var(--card-accent), var(--blue-2));
  box-shadow: 0 0 26px var(--card-accent-soft);
  clip-path: polygon(0 0, 78% 0, 100% 50%, 78% 100%, 0 100%, 13% 50%);
}

.clipboard-icon::before {
  content: "";
  width: 17px;
  height: 22px;
  border: 2px solid currentcolor;
  border-radius: 3px;
}

.clipboard-icon::after {
  content: "";
  position: absolute;
  top: 13px;
  width: 16px;
  height: 2px;
  background: currentcolor;
  box-shadow: 0 7px 0 currentcolor;
}

.wrench-icon::before {
  content: "";
  width: 29px;
  height: 9px;
  background: currentcolor;
  border-radius: 999px;
  transform: rotate(-38deg);
}

.wrench-icon::after {
  content: "";
  position: absolute;
  width: 13px;
  height: 13px;
  border: 4px solid currentcolor;
  border-right-color: transparent;
  border-radius: 50%;
  transform: translate(10px, -10px) rotate(-38deg);
}

.monitor-icon::before {
  content: "";
  width: 27px;
  height: 18px;
  border: 2px solid currentcolor;
  border-radius: 3px;
}

.monitor-icon::after {
  content: "";
  position: absolute;
  bottom: 10px;
  width: 20px;
  height: 2px;
  background: currentcolor;
}

.bolt-icon::before {
  content: "";
  width: 18px;
  height: 30px;
  background: currentcolor;
  clip-path: polygon(57% 0, 20% 47%, 47% 47%, 35% 100%, 82% 38%, 54% 38%);
}

.air-icon::before {
  content: "";
  width: 28px;
  height: 28px;
  border: 3px solid currentcolor;
  border-radius: 50%;
  box-shadow: inset 0 0 0 5px var(--panel);
}

.air-icon::after {
  content: "";
  position: absolute;
  width: 31px;
  height: 3px;
  background: currentcolor;
  transform: rotate(-24deg);
}

.brake-icon::before {
  content: "";
  width: 25px;
  height: 25px;
  border: 4px solid currentcolor;
  border-radius: 50%;
}

.brake-icon::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  background: currentcolor;
  border-radius: 50%;
}

.trailer-icon::before {
  content: "";
  width: 29px;
  height: 17px;
  border: 2px solid currentcolor;
  border-radius: 2px;
}

.trailer-icon::after {
  content: "";
  position: absolute;
  bottom: 10px;
  width: 27px;
  height: 5px;
  border-left: 5px solid currentcolor;
  border-right: 5px solid currentcolor;
}

.road-icon::before {
  content: "";
  width: 31px;
  height: 22px;
  border-left: 3px solid currentcolor;
  border-right: 3px solid currentcolor;
  transform: perspective(35px) rotateX(30deg);
}

.road-icon::after {
  content: "";
  position: absolute;
  width: 2px;
  height: 28px;
  background: currentcolor;
  transform: rotate(16deg);
}

.fleet-icon::before {
  content: "";
  width: 30px;
  height: 16px;
  border: 2px solid currentcolor;
  border-radius: 2px;
  box-shadow:
    -8px 10px 0 -3px currentcolor,
    8px 10px 0 -3px currentcolor;
}

.tire-icon::before {
  content: "";
  width: 28px;
  height: 28px;
  border: 5px solid currentcolor;
  border-radius: 50%;
}

.tire-icon::after {
  content: "";
  position: absolute;
  width: 9px;
  height: 9px;
  background: currentcolor;
  border-radius: 50%;
}

.rv-icon::before {
  content: "";
  width: 32px;
  height: 19px;
  border: 2px solid currentcolor;
  border-radius: 3px;
}

.rv-icon::after {
  content: "";
  position: absolute;
  bottom: 9px;
  width: 31px;
  height: 5px;
  border-left: 5px solid currentcolor;
  border-right: 5px solid currentcolor;
}

.map-icon::before {
  content: "";
  width: 22px;
  height: 29px;
  background: currentcolor;
  clip-path: polygon(
    50% 100%,
    78% 65%,
    92% 38%,
    82% 13%,
    50% 0,
    18% 13%,
    8% 38%,
    22% 65%
  );
}

.map-icon::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  background: #fff;
  border-radius: 50%;
  transform: translateY(-5px);
}

.service-cta {
  width: min(920px, 100%);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  margin: 28px auto 0;
  padding: 22px;
  background:
    linear-gradient(100deg, rgb(30, 136, 255, 0.16), transparent 55%),
    rgb(255, 255, 255, 0.035);
  border: 1px solid rgb(30, 136, 255, 0.32);
  border-radius: 8px;
  box-shadow: 0 18px 50px rgb(0, 0, 0, 0.24);
}

.service-cta h3 {
  margin: 0;
  font-size: clamp(1.25rem, 2.4vw, 1.85rem);
  text-transform: uppercase;
}

.service-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.meetup-option {
  position: relative;
  padding-top: 58px;
  padding-bottom: 58px;
  background:
    linear-gradient(100deg, rgb(30, 136, 255, 0.11), transparent 48%), #070a0f;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.meetup-card {
  width: min(1180px, 100%);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  margin: 0 auto;
  padding: clamp(24px, 4vw, 38px);
  background:
    linear-gradient(135deg, rgb(30, 136, 255, 0.18), transparent 46%),
    rgb(255, 255, 255, 0.04);
  border: 1px solid rgb(85, 187, 255, 0.28);
  box-shadow: 0 22px 64px rgb(0, 0, 0, 0.28);
  clip-path: polygon(
    0 0,
    calc(100% - 28px) 0,
    100% 28px,
    100% 100%,
    28px 100%,
    0 calc(100% - 28px)
  );
}

.meetup-copy {
  display: grid;
  gap: 10px;
}

.meetup-badge {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  color: var(--white);
  background: rgb(30, 136, 255, 0.16);
  border: 1px solid rgb(85, 187, 255, 0.32);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.meetup-card h2 {
  max-width: 720px;
  margin: 0;
  color: var(--white);
  font-size: clamp(1.9rem, 4vw, 3.4rem);
  line-height: 0.96;
  text-transform: uppercase;
}

.meetup-card p:not(.eyebrow) {
  max-width: 790px;
  margin: 0;
  color: #dce8f2;
  font-size: clamp(1rem, 1.7vw, 1.14rem);
}

.meetup-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.service-areas {
  position: relative;
  background:
    linear-gradient(180deg, rgb(30, 136, 255, 0.09), transparent 34%),
    radial-gradient(
      circle at 15% 20%,
      rgb(85, 187, 255, 0.12),
      transparent 28%
    ),
    #05070a;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.service-areas::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(1180px, calc(100% - 88px));
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgb(30, 136, 255, 0.86),
    transparent
  );
  transform: translateX(-50%);
}

.area-major-grid {
  width: min(980px, 100%);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 0 auto 18px;
  padding: 0;
  list-style: none;
}

.area-route-note {
  width: min(960px, 100%);
  margin: -10px auto 24px;
  padding: 16px 18px;
  color: #dce8f2;
  background: rgb(255, 255, 255, 0.035);
  border: 1px solid rgb(85, 187, 255, 0.18);
  font-size: 0.98rem;
  line-height: 1.55;
}

.area-major-grid li {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 15px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgb(30, 136, 255, 0.16), transparent 62%),
    rgb(255, 255, 255, 0.045);
  border: 1px solid rgb(85, 187, 255, 0.24);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.area-link-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 20px;
  margin-top: 22px;
}

.area-link-grid a {
  position: relative;
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  padding: 0 0 4px;
  color: var(--white);
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgb(30, 136, 255, 0.48);
  clip-path: none;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.area-link-grid a::before {
  content: none;
}

.area-action-panel {
  width: min(1180px, 100%);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  margin: -20px auto 42px;
  padding: 22px;
  background:
    linear-gradient(115deg, rgb(30, 136, 255, 0.18), transparent 52%),
    rgb(255, 255, 255, 0.035);
  border: 1px solid rgb(85, 187, 255, 0.26);
  box-shadow: 0 22px 58px rgb(0, 0, 0, 0.24);
  clip-path: polygon(
    0 0,
    calc(100% - 26px) 0,
    100% 26px,
    100% 100%,
    26px 100%,
    0 calc(100% - 26px)
  );
}

.area-action-panel span {
  display: block;
  margin-bottom: 6px;
  color: var(--cyan);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.area-action-panel strong {
  display: block;
  color: var(--white);
  font-size: clamp(1.2rem, 2vw, 1.72rem);
  line-height: 1.12;
  text-transform: uppercase;
}

.area-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.area-details {
  width: min(1180px, 100%);
  margin: 34px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgb(255, 255, 255, 0.1);
}

.area-details summary {
  width: fit-content;
  min-height: 42px;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 auto;
  padding: 0 17px;
  color: rgb(235, 248, 255);
  background:
    linear-gradient(135deg, rgb(30, 136, 255, 0.13), transparent 55%),
    rgb(255, 255, 255, 0.045);
  border: 1px solid rgb(30, 136, 255, 0.62);
  box-shadow: 0 0 22px rgb(30, 136, 255, 0.16);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

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

.area-details summary::marker {
  content: "";
}

.area-details summary::after {
  width: 7px;
  height: 7px;
  border-right: 2px solid var(--blue-2);
  border-bottom: 2px solid var(--blue-2);
  content: "";
  transform: rotate(45deg);
  transition: transform 180ms ease;
}

.area-details summary:hover,
.area-details summary:focus-visible {
  background:
    linear-gradient(135deg, rgb(30, 136, 255, 0.22), transparent 55%),
    rgb(255, 255, 255, 0.065);
  border-color: rgb(85, 187, 255, 0.88);
  box-shadow: 0 0 30px rgb(30, 136, 255, 0.26);
  outline: 0;
  transform: translateY(-1px);
}

.area-details[open] summary {
  margin-bottom: 34px;
}

.area-details[open] summary::after {
  transform: rotate(-135deg);
}

.capability-proof {
  width: min(1180px, 100%);
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: 18px;
  margin: 0 auto 28px;
}

.google-profile-shot,
.review-signal-grid article {
  background:
    linear-gradient(145deg, rgb(30, 136, 255, 0.11), transparent 44%),
    var(--panel);
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: 0 18px 55px rgb(0, 0, 0, 0.28);
}

.google-profile-shot {
  overflow: hidden;
}

.profile-browser-bar {
  display: flex;
  gap: 6px;
  padding: 12px 14px;
  background: rgb(255, 255, 255, 0.05);
  border-bottom: 1px solid rgb(255, 255, 255, 0.1);
}

.profile-browser-bar span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgb(85, 187, 255, 0.72);
}

.profile-preview {
  min-height: 280px;
  display: grid;
  align-content: end;
  gap: 10px;
  padding: 26px;
  background:
    linear-gradient(180deg, transparent 0%, rgb(0, 0, 0, 0.78) 100%),
    radial-gradient(
      circle at 20% 20%,
      rgb(30, 136, 255, 0.32),
      transparent 34%
    ),
    #090d13;
}

.profile-preview span,
.review-signal-grid span {
  color: var(--cyan);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.profile-preview strong,
.review-signal-grid strong {
  color: var(--white);
  font-size: 1.28rem;
  line-height: 1.15;
  text-transform: uppercase;
}

.profile-preview p,
.review-signal-grid p {
  margin-bottom: 0;
  color: var(--steel);
}

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

.review-signal-grid article {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 240px;
  padding: 24px;
}

.county-grid {
  position: relative;
  z-index: 1;
  width: min(1180px, 100%);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 42px;
  margin: 0 auto;
}

.county-panel {
  min-height: 100%;
  padding: 0;
  background: transparent;
  border: 0;
  border-top: 2px solid rgb(30, 136, 255, 0.52);
  border-radius: 0;
  box-shadow: none;
}

.county-panel-head {
  display: grid;
  gap: 10px;
  padding-bottom: 22px;
  margin-bottom: 22px;
  border-bottom: 1px solid rgb(255, 255, 255, 0.1);
}

.county-panel-head span {
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.county-panel-head strong {
  color: var(--white);
  font-size: 1.35rem;
  line-height: 1.12;
  text-transform: uppercase;
}

.city-chip-grid {
  column-count: 2;
  column-gap: 28px;
}

.city-chip-grid span {
  position: relative;
  min-height: 0;
  display: block;
  break-inside: avoid;
  padding: 7px 0 7px 18px;
  color: #dce6ef;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgb(255, 255, 255, 0.08);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  transition:
    color 220ms ease,
    border-color 220ms ease;
}

.city-chip-grid span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.05em;
  width: 8px;
  height: 2px;
  background: var(--blue);
  box-shadow: 0 0 10px rgb(30, 136, 255, 0.7);
}

.city-chip-grid span:hover {
  color: var(--white);
  border-color: rgb(30, 136, 255, 0.36);
}

.county-note {
  margin: 22px 0 0;
  padding: 14px 16px;
  color: #dce8f2;
  background: rgb(30, 136, 255, 0.08);
  border-left: 3px solid var(--blue);
  font-size: 0.94rem;
  line-height: 1.5;
}

.reviews-section {
  background:
    radial-gradient(
      circle at 80% 18%,
      rgb(30, 136, 255, 0.14),
      transparent 28%
    ),
    #070a0f;
  border-bottom: 1px solid var(--line);
}

.night-service {
  position: relative;
  min-height: 560px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: #020407;
  isolation: isolate;
}

.night-service::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgb(0, 0, 0, 0.92), rgb(0, 0, 0, 0.48) 56%),
    linear-gradient(180deg, rgb(0, 0, 0, 0.2), rgb(0, 0, 0, 0.82));
}

.night-service-picture,
.night-service-picture img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
}

.night-service-picture img {
  object-fit: cover;
  object-position: 48% 58%;
  filter: saturate(0.9) contrast(1.08);
}

.night-service-content {
  width: min(620px, 100%);
  display: grid;
  gap: 16px;
}

.night-service-content h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(2.3rem, 5vw, 4.6rem);
  line-height: 0.98;
  text-transform: uppercase;
  text-wrap: balance;
}

.night-service-content p:not(.eyebrow) {
  color: #dce8f2;
  font-size: 1.08rem;
}

.field-work-section {
  background:
    linear-gradient(180deg, #05070a, #090e14),
    radial-gradient(circle at 80% 12%, rgb(30, 136, 255, 0.16), transparent 30%);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.field-work-grid {
  width: min(1180px, 100%);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 0 auto;
}

.field-photo-card {
  position: relative;
  min-height: 390px;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
  clip-path: polygon(
    0 0,
    calc(100% - 28px) 0,
    100% 28px,
    100% 100%,
    28px 100%,
    0 calc(100% - 28px)
  );
  transition:
    transform 260ms ease,
    border-color 260ms ease,
    box-shadow 260ms ease;
}

.field-photo-card:hover {
  transform: translateY(-7px);
  border-color: rgb(85, 187, 255, 0.42);
  box-shadow:
    0 26px 70px rgb(0, 0, 0, 0.36),
    0 0 26px rgb(30, 136, 255, 0.16);
}

.field-photo-card picture,
.field-photo-card img {
  display: block;
  width: 100%;
  height: 100%;
}

.field-photo-card img {
  position: absolute;
  inset: 0;
  object-fit: cover;
  transition: transform 520ms cubic-bezier(0.16, 1, 0.3, 1);
}

.field-photo-card:hover img {
  transform: scale(1.055);
}

.field-photo-card:nth-child(2) img {
  object-position: 54% 50%;
}

.field-photo-card:nth-child(4) img {
  object-position: 48% 62%;
}

.field-photo-card:nth-child(6) img {
  object-position: 48% 50%;
}

.field-photo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgb(0, 0, 0, 0.86));
}

.field-photo-card div {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 1;
}

.field-photo-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--cyan);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.field-photo-card strong {
  color: var(--white);
  font-size: 1.18rem;
  line-height: 1.15;
  text-transform: uppercase;
}

.feature-photo {
  min-height: 390px;
}

.reviews-layout {
  width: min(1180px, 100%);
  display: grid;
  grid-template-columns: minmax(280px, 0.44fr) minmax(0, 1fr);
  gap: 26px;
  margin: 0 auto;
}

.google-proof,
.review-card {
  background:
    linear-gradient(145deg, rgb(30, 136, 255, 0.12), transparent 42%),
    rgb(255, 255, 255, 0.035);
  border: 1px solid rgb(255, 255, 255, 0.11);
  border-radius: 0;
  box-shadow: 0 18px 52px rgb(0, 0, 0, 0.22);
}

.google-proof {
  align-self: stretch;
  display: grid;
  align-content: center;
  padding: 30px;
  border-right: 1px solid rgb(255, 255, 255, 0.11);
  clip-path: polygon(0 0, calc(100% - 24px) 0, 100% 24px, 100% 100%, 0 100%);
}

.google-proof span {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.google-proof strong {
  display: block;
  margin-bottom: 12px;
  color: var(--white);
  font-size: 1.55rem;
  line-height: 1.1;
  text-transform: uppercase;
}

.google-proof p {
  color: var(--steel);
}

.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  width: fit-content;
  padding: 0 15px;
  color: var(--white);
  border: 1px solid rgb(30, 136, 255, 0.48);
  border-radius: 4px;
  font-weight: 900;
  text-transform: uppercase;
}

.google-proof .text-link {
  margin-top: 18px;
  color: rgb(238, 248, 255);
  background:
    linear-gradient(135deg, rgb(30, 136, 255, 0.16), transparent 58%),
    rgb(255, 255, 255, 0.045);
  border-color: rgb(85, 187, 255, 0.7);
  box-shadow: 0 0 24px rgb(30, 136, 255, 0.16);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.google-proof .text-link:hover,
.google-proof .text-link:focus-visible {
  background:
    linear-gradient(135deg, rgb(30, 136, 255, 0.24), transparent 58%),
    rgb(255, 255, 255, 0.07);
  border-color: rgb(85, 187, 255, 0.92);
  box-shadow: 0 0 34px rgb(30, 136, 255, 0.24);
  outline: 0;
  transform: translateY(-2px);
}

.review-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  border-top: 0;
}

.review-card {
  display: grid;
  grid-template-columns:
    minmax(150px, 0.28fr) minmax(78px, 0.12fr) minmax(0, 1fr)
    auto;
  gap: 18px;
  align-items: center;
  min-height: 0;
  margin: 0;
  padding: 22px;
  clip-path: polygon(
    0 0,
    calc(100% - 18px) 0,
    100% 18px,
    100% 100%,
    18px 100%,
    0 calc(100% - 18px)
  );
  transition:
    transform 240ms ease,
    border-color 240ms ease,
    box-shadow 240ms ease;
}

.review-card:hover {
  transform: translateX(8px);
  border-color: rgb(30, 136, 255, 0.52);
  box-shadow:
    0 22px 60px rgb(0, 0, 0, 0.28),
    0 0 26px rgb(30, 136, 255, 0.12);
}

.review-card span {
  grid-column: 1;
  grid-row: 1;
  color: var(--cyan);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.review-card b {
  grid-column: 1;
  grid-row: 2;
  color: var(--white);
  font-size: 1.02rem;
  line-height: 1.1;
  text-transform: uppercase;
}

.review-stars {
  grid-column: 2;
  grid-row: 1 / span 2;
  color: #ffd65a;
  font-size: 0.92rem;
  font-style: normal;
  letter-spacing: 0;
  text-shadow: 0 0 18px rgb(255, 214, 90, 0.22);
  white-space: nowrap;
}

.review-card strong {
  grid-column: 3;
  grid-row: 1 / span 2;
  display: block;
  margin: 0;
  color: var(--white);
  font-size: 1.08rem;
  font-weight: 900;
  line-height: 1.22;
}

.review-card em {
  grid-column: 4;
  grid-row: 1 / span 2;
  color: var(--cyan);
  font-size: 0.82rem;
  font-weight: 900;
  font-style: normal;
  text-transform: uppercase;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.64fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 62px);
  align-items: stretch;
  background:
    linear-gradient(90deg, rgb(30, 136, 255, 0.1), transparent 48%), #05070a;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.split-media {
  position: relative;
  grid-row: 1 / span 2;
  min-height: 620px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgb(85, 187, 255, 0.22);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
  clip-path: polygon(
    0 0,
    calc(100% - 28px) 0,
    100% 28px,
    100% 100%,
    28px 100%,
    0 calc(100% - 28px)
  );
}

.split-media picture,
.split-media img {
  display: block;
  width: 100%;
  height: 100%;
}

.split-media img {
  object-fit: cover;
  object-position: 54% 50%;
}

.split-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgb(0, 0, 0, 0.76));
}

.split-media figcaption {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 1;
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.split-copy {
  align-self: end;
  max-width: 720px;
}

.split-copy p {
  margin-bottom: 28px;
}

.feature-panel {
  grid-column: 2;
  align-self: start;
  display: grid;
  gap: 0;
  padding: 0;
  background: transparent;
  border: 0;
  border-top: 1px solid rgb(255, 255, 255, 0.14);
  border-radius: 0;
  box-shadow: none;
}

.feature-panel div {
  display: grid;
  grid-template-columns: 54px minmax(0, 0.44fr) minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 22px 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgb(255, 255, 255, 0.14);
  border-radius: 0;
}

.feature-panel span {
  display: block;
  margin: 0;
  color: var(--blue);
  font-weight: 900;
}

.feature-panel strong {
  display: block;
  margin: 0;
  font-size: 1.08rem;
  text-transform: uppercase;
}

.feature-panel p {
  margin-bottom: 0;
}

.faq-section {
  background: #080c12;
  border-bottom: 1px solid var(--line);
}

.faq-grid {
  width: min(1120px, 100%);
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin: 0 auto;
  border-top: 1px solid rgb(255, 255, 255, 0.14);
}

.faq-grid article {
  display: grid;
  grid-template-columns: minmax(240px, 0.45fr) minmax(0, 1fr);
  gap: 22px;
  padding: 22px 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgb(255, 255, 255, 0.14);
  border-radius: 0;
}

.faq-grid h3 {
  margin-bottom: 10px;
  color: var(--white);
  font-size: 1.06rem;
  text-transform: uppercase;
}

.faq-grid p {
  margin-bottom: 0;
  color: var(--steel);
}

.cta-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(340px, 0.62fr);
  gap: 44px;
  align-items: start;
  padding: 98px 44px;
  background:
    radial-gradient(
      circle at 18% 20%,
      rgb(30, 136, 255, 0.22),
      transparent 28%
    ),
    linear-gradient(180deg, #090e14, #020303);
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 44px;
  right: 44px;
  height: 1px;
  background: linear-gradient(90deg, rgb(85, 187, 255, 0.8), transparent 72%);
}

.cta-copy {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.contact-lines {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.contact-lines a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 15px;
  color: var(--white);
  border: 1px solid rgb(30, 136, 255, 0.48);
  border-radius: 4px;
  font-weight: 900;
}

.quote-form {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
  padding: 26px;
  background:
    linear-gradient(145deg, rgb(30, 136, 255, 0.16), transparent 46%),
    rgb(12, 17, 24, 0.92);
  border: 1px solid rgb(30, 136, 255, 0.35);
  border-radius: 0;
  box-shadow: var(--shadow);
  clip-path: polygon(
    0 0,
    calc(100% - 24px) 0,
    100% 24px,
    100% 100%,
    24px 100%,
    0 calc(100% - 24px)
  );
}

.quote-form label {
  display: grid;
  gap: 7px;
  color: var(--white);
  font-weight: 900;
  text-transform: uppercase;
}

.quote-form input,
.quote-form textarea,
.quote-form select {
  width: 100%;
  border: 1px solid rgb(255, 255, 255, 0.16);
  border-radius: 0;
  padding: 13px 14px;
  color: var(--white);
  background: rgb(0, 0, 0, 0.38);
}

.quote-form input:focus,
.quote-form textarea:focus,
.quote-form select:focus {
  outline: 2px solid rgb(30, 136, 255, 0.7);
  outline-offset: 1px;
}

.quote-form textarea {
  resize: vertical;
}

.quote-form select {
  min-height: 48px;
  cursor: pointer;
}

.form-note {
  margin: 0;
  color: var(--steel);
  font-size: 0.88rem;
  line-height: 1.45;
}

.form-button {
  width: 100%;
}

.final-cta {
  background:
    linear-gradient(135deg, rgb(30, 136, 255, 0.16), transparent 46%),
    linear-gradient(180deg, #070b10, #010203);
  border-top: 1px solid rgb(85, 187, 255, 0.18);
  border-bottom: 1px solid var(--line);
}

.final-cta-inner {
  width: min(980px, 100%);
  display: grid;
  justify-items: center;
  gap: 16px;
  margin: 0 auto;
  text-align: center;
}

.final-cta-inner h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(2.45rem, 5vw, 5.1rem);
  line-height: 0.95;
  text-transform: uppercase;
  text-wrap: balance;
}

.final-cta-inner p:not(.eyebrow) {
  width: min(720px, 100%);
  color: #dce8f2;
  font-size: 1.08rem;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 44px;
  color: #c7d1dc;
  background: #000;
  border-top: 1px solid var(--line);
}

.footer-brand img {
  display: block;
  width: 190px;
  height: 42px;
  object-fit: contain;
}

.site-footer p {
  margin: 0;
}

.site-footer a:last-child {
  color: #8fd1ff;
  font-weight: 900;
}

.page-main {
  background: var(--black);
}

.subpage-hero {
  position: relative;
  min-height: clamp(560px, 72vh, 760px);
  display: grid;
  align-items: center;
  padding: 136px 44px 72px;
  background: #000;
  overflow: hidden;
  isolation: isolate;
  border-bottom: 1px solid var(--line);
}

.subpage-hero picture,
.subpage-hero img {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
}

.subpage-hero img {
  object-fit: cover;
  object-position: center;
  filter: saturate(0.96) contrast(1.05);
  transform: scale(1.02);
}

.subpage-hero::before {
  content: "";
  position: absolute;
  left: 44px;
  right: 44px;
  bottom: 36px;
  z-index: -1;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--blue),
    var(--cyan),
    transparent
  );
  box-shadow:
    0 0 18px rgb(30, 136, 255, 0.84),
    0 -22px 56px rgb(30, 136, 255, 0.16);
}

.subpage-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(
      90deg,
      rgb(0, 0, 0, 0.94) 0%,
      rgb(0, 0, 0, 0.68) 42%,
      rgb(0, 0, 0, 0.34) 100%
    ),
    radial-gradient(circle at 82% 58%, rgb(30, 136, 255, 0.2), transparent 32%),
    linear-gradient(180deg, rgb(0, 0, 0, 0.18), rgb(0, 0, 0, 0.9));
}

.subpage-hero-content {
  position: relative;
  z-index: 1;
  width: min(1180px, 100%);
  display: grid;
  grid-template-columns: minmax(0, 0.74fr) minmax(270px, 0.34fr);
  gap: clamp(28px, 7vw, 92px);
  align-items: end;
  margin: 0 auto;
}

.subpage-hero-content > * {
  grid-column: 1;
}

.subpage-hero-content::after {
  content: "24/7 MOBILE\A SOUTHERN CALIFORNIA\A FAST RESPONSE";
  grid-column: 2;
  grid-row: 1 / span 5;
  align-self: end;
  white-space: pre-line;
  padding: 24px 22px 24px 60px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgb(30, 136, 255, 0.32), transparent 34%),
    rgb(0, 0, 0, 0.46);
  border-top: 1px solid rgb(85, 187, 255, 0.5);
  border-bottom: 1px solid rgb(30, 136, 255, 0.38);
  font-size: clamp(1rem, 1.6vw, 1.24rem);
  font-weight: 900;
  line-height: 1.38;
  text-transform: uppercase;
  text-shadow: 0 0 18px rgb(0, 0, 0, 0.75);
  box-shadow:
    inset 44px 0 0 rgb(30, 136, 255, 0.9),
    0 0 32px rgb(30, 136, 255, 0.22);
  clip-path: polygon(
    0 0,
    calc(100% - 24px) 0,
    100% 24px,
    100% 100%,
    24px 100%,
    0 calc(100% - 24px)
  );
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

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

.subpage-hero h1 {
  width: min(820px, 100%);
  margin-bottom: 18px;
  color: var(--white);
  font-size: clamp(3.15rem, 6vw, 5rem);
  line-height: 0.94;
  text-transform: uppercase;
}

.subpage-hero p {
  width: min(720px, 100%);
  color: #d0d7df;
  font-size: 1.1rem;
}

.subpage-hero .hero-actions {
  justify-content: flex-start;
}

.page-content {
  position: relative;
  padding: 94px 44px;
  background:
    radial-gradient(circle at 18% 12%, rgb(30, 136, 255, 0.1), transparent 28%),
    linear-gradient(180deg, #020304, #05080d 44%, #020304);
}

.page-content-grid {
  width: min(1180px, 100%);
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(310px, 0.38fr);
  gap: clamp(34px, 5vw, 64px);
  align-items: start;
  margin: 0 auto;
}

.page-copy {
  position: relative;
  padding: 0 0 0 34px;
  background: transparent;
  border-left: 2px solid rgb(30, 136, 255, 0.56);
}

.page-copy h2,
.page-copy h3,
.page-sidebar h2,
.page-faq h2 {
  color: var(--white);
  text-transform: uppercase;
}

.page-copy h2 {
  max-width: 820px;
  margin-bottom: 24px;
  font-size: clamp(2rem, 3.4vw, 3.1rem);
  line-height: 1.05;
}

.page-copy h3 {
  width: min(720px, 100%);
  margin: 32px 0 16px;
  padding-top: 20px;
  border-top: 1px solid rgb(85, 187, 255, 0.25);
  color: var(--cyan);
  font-size: 1rem;
  letter-spacing: 0;
}

.page-copy p,
.page-copy li,
.page-sidebar p,
.page-sidebar li,
.page-faq p {
  color: var(--steel);
}

.page-copy p {
  width: min(820px, 100%);
  font-size: 1.04rem;
}

.page-copy ul,
.page-sidebar ul {
  display: grid;
  gap: 10px;
  padding-left: 0;
  list-style: none;
}

.page-copy ul {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.page-copy li {
  position: relative;
  min-height: 50px;
  display: flex;
  align-items: center;
  padding: 12px 14px 12px 44px;
  background:
    linear-gradient(90deg, rgb(30, 136, 255, 0.15), rgb(255, 255, 255, 0.035)),
    rgb(255, 255, 255, 0.025);
  border-top: 1px solid rgb(255, 255, 255, 0.1);
  border-bottom: 1px solid rgb(30, 136, 255, 0.26);
  clip-path: polygon(
    0 0,
    calc(100% - 15px) 0,
    100% 50%,
    calc(100% - 15px) 100%,
    0 100%
  );
}

.page-copy li::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 50%;
  width: 12px;
  height: 12px;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  box-shadow: 0 0 16px rgb(30, 136, 255, 0.64);
  transform: translateY(-50%) rotate(45deg);
}

.page-sidebar {
  position: sticky;
  top: 112px;
  align-self: start;
  display: grid;
  gap: 18px;
  padding: 30px;
  background:
    linear-gradient(145deg, rgb(30, 136, 255, 0.16), transparent 48%),
    linear-gradient(180deg, rgb(255, 255, 255, 0.06), rgb(255, 255, 255, 0.02)),
    #07111d;
  border: 1px solid rgb(85, 187, 255, 0.28);
  box-shadow: 0 24px 70px rgb(0, 0, 0, 0.38);
  clip-path: polygon(
    0 0,
    calc(100% - 24px) 0,
    100% 24px,
    100% 100%,
    24px 100%,
    0 calc(100% - 24px)
  );
}

.related-links {
  counter-reset: related-service;
  display: grid;
  gap: 8px;
}

.related-links a {
  counter-increment: related-service;
  position: relative;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px 0 48px;
  color: var(--white);
  border: 1px solid rgb(30, 136, 255, 0.36);
  border-radius: 0;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  clip-path: polygon(
    0 0,
    calc(100% - 15px) 0,
    100% 50%,
    calc(100% - 15px) 100%,
    0 100%
  );
  transition:
    background 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.related-links a::before {
  content: counter(related-service, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 34px;
  display: grid;
  place-items: center;
  color: #04111f;
  background: linear-gradient(180deg, var(--cyan), var(--blue));
  font-size: 0.62rem;
  font-weight: 900;
}

.related-links a:hover {
  background: rgb(30, 136, 255, 0.14);
  border-color: rgb(85, 187, 255, 0.7);
  transform: translateX(4px);
}

.page-faq {
  width: min(1180px, 100%);
  margin: 58px auto 0;
  padding-top: 30px;
  border-top: 1px solid rgb(85, 187, 255, 0.22);
}

.page-faq h2 {
  margin-bottom: 18px;
}

.page-faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid rgb(255, 255, 255, 0.12);
}

.page-faq article {
  display: grid;
  grid-template-columns: minmax(220px, 0.38fr) minmax(0, 1fr);
  gap: 24px;
  padding: 22px 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgb(255, 255, 255, 0.12);
  border-radius: 0;
  box-shadow: none;
}

.page-faq article h3,
.page-faq article p {
  margin: 0;
}

.page-cta {
  width: min(1180px, 100%);
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 44px auto 0;
  padding: 30px 34px;
  background:
    linear-gradient(100deg, rgb(30, 136, 255, 0.24), transparent 48%),
    linear-gradient(180deg, #0e2236, #07111d);
  border: 1px solid rgb(85, 187, 255, 0.36);
  border-radius: 0;
  box-shadow: var(--shadow);
  clip-path: polygon(
    0 0,
    calc(100% - 24px) 0,
    100% 24px,
    100% 100%,
    24px 100%,
    0 calc(100% - 24px)
  );
  overflow: hidden;
}

.page-cta::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 7px;
  background: linear-gradient(180deg, var(--cyan), var(--blue));
  box-shadow: 0 0 26px rgb(30, 136, 255, 0.78);
}

.page-cta strong {
  display: block;
  color: var(--white);
  font-size: 1.45rem;
  text-transform: uppercase;
}

.page-cta span {
  color: var(--steel);
}

.blog-content {
  padding: 86px 44px;
}

.blog-layout {
  width: min(1180px, 100%);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.34fr);
  gap: 28px;
  margin: 0 auto;
}

.blog-copy,
.blog-sidebar,
.blog-card {
  background:
    linear-gradient(145deg, rgb(30, 136, 255, 0.08), transparent 42%),
    var(--panel);
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: 0 18px 55px rgb(0, 0, 0, 0.28);
}

.blog-copy {
  padding: 34px;
}

.blog-copy h2,
.blog-copy h3,
.blog-sidebar h2,
.blog-card h2 {
  color: var(--white);
  text-transform: uppercase;
}

.blog-copy p {
  color: var(--steel);
}

.blog-copy a {
  color: var(--cyan);
  font-weight: 900;
}

.blog-intro {
  font-size: 1.08rem;
}

.short-answer {
  margin-bottom: 30px;
  padding: 24px;
  background: rgb(30, 136, 255, 0.1);
  border: 1px solid rgb(30, 136, 255, 0.35);
  border-radius: 6px;
}

.short-answer span,
.inline-service-links span,
.blog-card span {
  display: block;
  margin-bottom: 10px;
  color: var(--cyan);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.short-answer h2 {
  margin-bottom: 10px;
  font-size: 1.55rem;
}

.inline-service-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 28px 0;
  padding: 18px;
  background: rgb(255, 255, 255, 0.035);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.inline-service-links span {
  width: 100%;
  margin-bottom: 2px;
}

.inline-service-links a {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  color: var(--white);
  border: 1px solid rgb(30, 136, 255, 0.34);
  border-radius: 4px;
  font-size: 0.76rem;
  text-transform: uppercase;
}

.blog-sidebar {
  align-self: start;
  display: grid;
  gap: 18px;
  padding: 24px;
}

.blog-card-grid {
  width: min(1180px, 100%);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin: 0 auto;
}

.blog-card {
  overflow: hidden;
}

.blog-card picture,
.blog-card img {
  display: block;
  width: 100%;
}

.blog-card img {
  height: 220px;
  object-fit: cover;
}

.blog-card div {
  padding: 22px;
}

.blog-card h2 {
  margin-bottom: 12px;
  font-size: 1.08rem;
  line-height: 1.15;
}

.blog-card p {
  color: var(--steel);
  font-size: 0.92rem;
}

.blog-index-cta,
.blog-post-cta {
  margin-top: 34px;
}

.mobile-call-nav {
  position: fixed;
  left: 50%;
  bottom: 12px;
  z-index: 70;
  display: none;
  width: min(320px, calc(100% - 28px));
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 120%);
  visibility: hidden;
  transition:
    opacity 220ms ease,
    transform 220ms ease,
    visibility 220ms ease;
}

.mobile-call-now {
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0 18px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgb(30, 136, 255, 0.88), rgb(0, 86, 220, 0.92)),
    rgb(4, 9, 15, 0.96);
  border: 1px solid rgb(85, 187, 255, 0.72);
  border-radius: 999px;
  box-shadow:
    0 12px 34px rgb(0, 0, 0, 0.44),
    0 0 24px rgb(30, 136, 255, 0.28),
    inset 0 0 0 1px rgb(255, 255, 255, 0.08);
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1.1;
  text-align: center;
  text-transform: uppercase;
}

.mobile-call-visible .mobile-call-nav {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
  visibility: visible;
}

.motion-ready .reveal-item {
  opacity: 1;
  transform: translateY(30px) scale(0.992);
  transition:
    opacity 560ms ease,
    transform 560ms cubic-bezier(0.16, 1, 0.3, 1),
    filter 560ms ease,
    clip-path 560ms cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--reveal-delay, 0ms);
  filter: blur(3px);
}

.motion-ready .reveal-left {
  transform: translateX(-30px) translateY(10px) scale(0.992);
}

.motion-ready .reveal-right {
  transform: translateX(30px) translateY(10px) scale(0.992);
}

.motion-ready .reveal-pop {
  transform: translateY(20px) scale(0.96);
  filter: blur(2px);
}

.motion-ready .reveal-scale {
  transform: translateY(22px) scale(0.97);
}

.motion-ready .reveal-clip {
  clip-path: inset(8% 0 8% 0);
  transform: translateY(22px) scale(1.018);
}

.motion-ready .reveal-fade {
  transform: translateY(10px);
  filter: blur(0);
}

.motion-ready .reveal-soft {
  transform: translateY(20px);
  filter: blur(2px);
}

.motion-ready .reveal-item.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

.motion-ready .reveal-clip.is-visible {
  clip-path: inset(0);
}

.motion-ready .review-card.reveal-item.is-visible:hover {
  transform: translateX(8px) scale(1);
}

.motion-ready .service-card.reveal-item.is-visible:hover {
  transform: translateY(-7px) scale(1);
}

.hero-logo-lockup,
.road-service-badge,
.hero-title,
.hero-copy,
.hero-actions,
.hero-service-pills,
.hero-trust-row,
.hero-capability-strip,
.hero-review-link {
  animation: heroReveal 500ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.road-service-badge {
  animation-delay: 40ms;
}

.hero-title {
  animation-delay: 80ms;
}

.hero-copy {
  animation-delay: 120ms;
}

.hero-actions {
  animation-delay: 150ms;
}

.hero-service-pills {
  animation-delay: 180ms;
}

.hero-capability-strip {
  animation-delay: 220ms;
}

.hero-trust-row {
  animation-delay: 220ms;
}

.hero-review-link {
  animation-delay: 260ms;
}

@keyframes heroReveal {
  from {
    opacity: 0.28;
    transform: translateY(18px) scale(0.992);
    filter: blur(4px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes heroImageSettle {
  to {
    transform: scale(1);
  }
}

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

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

  .motion-ready .reveal-item {
    opacity: 1;
    transform: none;
    filter: none;
  }
}

@media (width <= 980px) {
  .site-header {
    min-height: 76px;
    padding: 13px 20px;
  }

  .brand img {
    width: 200px;
    height: 48px;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 14px;
    right: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    background: rgb(0, 0, 0, 0.94);
    border: 1px solid rgb(30, 136, 255, 0.32);
    border-radius: 6px;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    justify-content: flex-start;
  }

  .motion-ready .reveal-left,
  .motion-ready .reveal-right {
    transform: translateY(28px) scale(0.99);
  }

  .hero {
    min-height: 760px;
    padding: 112px 20px 58px;
  }

  .hero-image {
    object-position: 46% 70%;
  }

  .hero-shade {
    background:
      linear-gradient(
        180deg,
        rgb(0, 0, 0, 0.92) 0%,
        rgb(0, 0, 0, 0.72) 50%,
        rgb(0, 0, 0, 0.86) 100%
      ),
      linear-gradient(90deg, rgb(0, 0, 0, 0.88), rgb(0, 0, 0, 0.35));
  }

  .hero::after {
    left: 50%;
    width: calc(100% - 40px);
  }

  .hero-logo-lockup {
    width: min(360px, 92vw);
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

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

  .hero-command-rail {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    padding-top: 18px;
  }

  .hero-command-rail .hero-service-pills {
    grid-column: 1 / -1;
  }

  .hero-command-rail .hero-review-link {
    min-height: 100%;
  }

  .hero-command-rail .hero-capability-strip {
    display: none;
  }

  .hero-title-main {
    font-size: 3.2rem;
    line-height: 0.96;
  }

  .hero-title-route {
    font-size: 0.98rem;
  }

  .hero-command-rail .hero-service-pills,
  .hero-service-pills {
    width: min(540px, 100%);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-self: center;
  }

  .hero-service-pills span:last-child:nth-child(odd),
  .hero-service-pills a:last-child:nth-child(odd) {
    grid-column: 1 / -1;
  }

  .stats-bar,
  .answer-grid,
  .capability-proof,
  .review-signal-grid,
  .county-grid,
  .field-work-grid,
  .reviews-layout,
  .review-grid,
  .faq-grid,
  .split-section,
  .cta-section {
    grid-template-columns: 1fr;
  }

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

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

  .service-card {
    min-height: 300px;
    padding: 23px;
  }

  .service-cta {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .service-cta-actions {
    justify-content: center;
  }

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

  .meetup-actions {
    justify-content: flex-start;
  }

  .answer-grid article,
  .faq-grid article,
  .review-card {
    grid-template-columns: 1fr;
  }

  .review-card span,
  .review-card b,
  .review-card i,
  .review-card strong,
  .review-card em {
    grid-column: auto;
    grid-row: auto;
  }

  .google-proof {
    padding: 0 0 22px;
    border-right: 0;
    border-bottom: 1px solid rgb(255, 255, 255, 0.14);
    clip-path: none;
  }

  .stat {
    min-height: 112px;
    padding: 22px 20px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .stat:last-child {
    border-bottom: 1px solid var(--line);
  }

  .section,
  .split-section,
  .cta-section,
  .page-content,
  .blog-content {
    padding: 74px 20px;
  }

  .subpage-hero {
    min-height: 560px;
    padding: 112px 20px 58px;
  }

  .subpage-hero::before {
    left: 20px;
    right: 20px;
  }

  .subpage-hero-content {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .subpage-hero-content::after {
    display: none;
  }

  .subpage-hero h1 {
    font-size: 2.9rem;
  }

  .page-content-grid,
  .blog-layout,
  .blog-card-grid,
  .page-faq-grid {
    grid-template-columns: 1fr;
  }

  .page-copy {
    padding-left: 22px;
  }

  .page-copy ul {
    grid-template-columns: 1fr;
  }

  .page-sidebar {
    position: static;
    top: auto;
  }

  .page-faq article {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 18px;
    text-align: left;
  }

  .section-heading .eyebrow {
    margin-bottom: 0;
  }

  .section-heading > p:not(.eyebrow) {
    padding-top: 14px;
  }

  .section-action-row {
    justify-content: flex-start;
  }

  .section-heading h2,
  .split-copy h2,
  .cta-copy h2 {
    font-size: 2.25rem;
    line-height: 1.12;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
    padding: 26px 20px;
  }

  .feature-photo {
    grid-row: auto;
    min-height: 420px;
  }

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

  .field-photo-card {
    min-height: 360px;
  }

  .split-media {
    grid-row: auto;
    min-height: 480px;
  }

  .feature-panel {
    grid-column: auto;
  }

  .area-major-grid {
    justify-content: flex-start;
  }

  .area-action-panel {
    grid-template-columns: 1fr;
    margin-top: -12px;
  }

  .area-actions {
    justify-content: flex-start;
  }

  .night-service {
    min-height: 520px;
  }

  .night-service::before {
    background:
      linear-gradient(
        180deg,
        rgb(0, 0, 0, 0.86),
        rgb(0, 0, 0, 0.58) 48%,
        rgb(0, 0, 0, 0.9)
      ),
      linear-gradient(90deg, rgb(0, 0, 0, 0.72), rgb(0, 0, 0, 0.22));
  }

  .city-chip-grid {
    column-count: 1;
  }

  .feature-panel div {
    grid-template-columns: 44px minmax(0, 1fr);
  }

  .feature-panel p {
    grid-column: 2;
  }
}

@media (width <= 520px) {
  .brand img {
    width: 168px;
    height: 42px;
  }

  .hero {
    min-height: 710px;
    padding-bottom: 42px;
  }

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

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

  .hero-trust-row span {
    min-height: 62px;
    padding: 14px 16px 14px 20px;
  }

  .road-service-badge,
  .hero-actions,
  .meetup-actions,
  .hero-capability-strip,
  .hero-review-link,
  .expertise-list,
  .contact-lines {
    display: grid;
  }

  .meetup-actions .button {
    justify-content: center;
  }

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

  .hero-command-rail .hero-service-pills {
    display: grid;
    grid-template-columns: 1fr;
    gap: 7px;
    width: 100%;
  }

  .hero-command-rail .hero-capability-strip {
    grid-column: auto;
  }

  .hero-command-rail .hero-capability-strip {
    grid-template-columns: 1fr;
  }

  .hero-service-pills {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .hero-service-pills span,
  .hero-service-pills a {
    min-height: 54px;
    padding: 11px 16px 11px 54px;
    font-size: 0.82rem;
    line-height: 1.12;
    clip-path: polygon(
      0 0,
      calc(100% - 20px) 0,
      100% 50%,
      calc(100% - 20px) 100%,
      0 100%
    );
  }

  .hero-service-pills span:nth-child(1),
  .hero-service-pills span:last-child,
  .hero-service-pills a:nth-child(1),
  .hero-service-pills a:last-child {
    clip-path: polygon(
      0 0,
      calc(100% - 20px) 0,
      100% 50%,
      calc(100% - 20px) 100%,
      0 100%
    );
  }

  .hero-service-pills span:last-child:nth-child(odd),
  .hero-service-pills a:last-child:nth-child(odd) {
    grid-column: auto;
  }

  .service-card {
    gap: 13px;
    min-height: auto;
    padding: 22px;
  }

  .service-card .service-icon {
    display: grid;
    width: 54px;
    height: 54px;
  }

  .service-card h3 {
    font-size: 1.22rem;
    line-height: 1.12;
  }

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

  .field-work-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .field-photo-card,
  .feature-photo {
    min-height: 330px;
  }

  .split-media {
    min-height: 380px;
  }

  .area-action-panel {
    padding: 20px;
  }

  .area-actions {
    display: grid;
  }

  .night-service {
    min-height: 500px;
  }

  .service-card p {
    font-size: 0.98rem;
  }

  .service-cta {
    padding: 20px;
    text-align: left;
  }

  .service-cta-actions {
    justify-content: stretch;
  }

  .button,
  .contact-lines a {
    width: 100%;
  }

  .hero-title-main {
    font-size: 2.62rem;
  }

  .hero-title-overline,
  .hero-title-route {
    width: 100%;
  }

  .stat {
    min-height: 94px;
    padding: 18px 14px;
  }

  .stat strong {
    font-size: 2rem;
  }

  .stat span {
    font-size: 0.68rem;
    line-height: 1.18;
  }

  .service-card,
  .answer-grid article,
  .review-signal-grid article,
  .county-panel,
  .blog-copy,
  .blog-sidebar,
  .blog-card div,
  .page-sidebar,
  .page-faq article,
  .page-cta,
  .feature-panel div,
  .quote-form {
    padding: 20px;
  }

  .page-copy {
    padding: 0 0 0 18px;
  }

  .page-cta .button {
    width: 100%;
  }

  .mobile-call-nav {
    display: grid;
  }

  .site-footer {
    padding-bottom: 74px;
  }
}
