:root {
  color-scheme: dark;
  --bg: #06080d;
  --bg-2: #0a0e15;
  --panel: #101722;
  --panel-2: #151e2d;
  --text: #f7f9fc;
  --muted: #a9b3c3;
  --muted-2: #d9e1ed;
  --blue: #087cff;
  --blue-2: #35b6ff;
  --steel: #5e7188;
  --green: #42d392;
  --amber: #f1ad45;
  --line: rgba(142, 169, 204, 0.24);
  --line-strong: rgba(53, 182, 255, 0.58);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
}

body::before {
  content: "SAMPLE SITE";
  position: fixed;
  left: 50%;
  top: 52%;
  z-index: 45;
  pointer-events: none;
  color: rgba(255, 255, 255, 0.11);
  font-size: 13rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  transform: translate(-50%, -50%) rotate(-23deg);
  white-space: nowrap;
  text-shadow: 0 0 34px rgba(0, 0, 0, 0.55);
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
  height: auto;
}

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

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

button {
  border: 0;
}

:focus-visible {
  outline: 3px solid var(--blue-2);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 14px;
  left: 14px;
  z-index: 200;
  padding: 10px 14px;
  background: var(--text);
  color: var(--bg);
  border-radius: 6px;
  transform: translateY(-140%);
}

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

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

.sale-popup {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(2, 4, 8, 0.72);
  backdrop-filter: blur(8px);
}

.sale-popup.is-hidden {
  display: none;
}

.sale-popup-card {
  position: relative;
  width: min(100%, 560px);
  padding: 34px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(8, 124, 255, 0.2), rgba(6, 8, 13, 0.96) 44%),
    var(--panel);
  box-shadow: var(--shadow);
}

.sale-popup-card h2 {
  margin-bottom: 14px;
  font-size: 2.35rem;
  text-transform: uppercase;
}

.sale-popup-card p:not(.eyebrow) {
  color: var(--muted-2);
  font-size: 1.05rem;
}

.sale-popup-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.sale-popup-close:hover {
  background: rgba(255, 255, 255, 0.15);
}

.sale-popup-close svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(6, 8, 13, 0.76);
  backdrop-filter: blur(14px);
  transition: background 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(6, 8, 13, 0.96);
  border-color: var(--line);
}

.nav {
  width: min(100% - 32px, var(--max));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand img {
  width: 74px;
  height: 50px;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.brand span {
  display: grid;
  line-height: 1;
  text-transform: uppercase;
}

.brand strong {
  font-size: 1rem;
}

.brand span span {
  color: var(--blue-2);
  font-size: 0.84rem;
  font-weight: 800;
}

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

.nav-links a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  color: var(--muted-2);
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.94rem;
}

.nav-links a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
}

.header-call,
.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 6px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.header-call {
  padding: 0 16px;
  color: #fff;
  background: #087cff;
  box-shadow: 0 14px 30px rgba(8, 124, 255, 0.26);
}

.header-call svg,
.button svg,
.service-icon svg {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  margin-left: auto;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.nav-toggle svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
}

.hero {
  position: relative;
  min-height: 760px;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  padding: 112px 0 58px;
  background: #04070c;
}

.hero-image {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(4, 7, 12, 0.98) 0%, rgba(4, 7, 12, 0.86) 36%, rgba(4, 7, 12, 0.34) 68%, rgba(4, 7, 12, 0.16) 100%),
    linear-gradient(180deg, rgba(4, 7, 12, 0.28), rgba(4, 7, 12, 0.9) 88%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 6px;
  background: linear-gradient(90deg, var(--blue), var(--blue-2), var(--green));
}

.hero-inner {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 690px) minmax(300px, 390px);
  gap: 52px;
  align-items: end;
}

.hero-copy {
  padding-top: 46px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--blue-2);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  line-height: 1.05;
  letter-spacing: 0;
}

h1 {
  margin-bottom: 22px;
  font-size: 4rem;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 18px;
  font-size: 2.55rem;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.12rem;
}

.hero-lede {
  max-width: 660px;
  margin-bottom: 30px;
  color: var(--muted-2);
  font-size: 1.14rem;
}

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

.button {
  min-width: 174px;
  padding: 0 18px;
  cursor: pointer;
  border: 1px solid transparent;
  text-align: center;
}

.button-primary {
  color: #fff;
  background: #087cff;
  box-shadow: 0 16px 34px rgba(8, 124, 255, 0.28);
}

.button-primary:hover,
.header-call:hover {
  filter: brightness(1.12);
}

.button-secondary {
  color: var(--text);
  border-color: var(--line-strong);
  background: rgba(6, 8, 13, 0.74);
}

.button-secondary:hover {
  background: rgba(8, 124, 255, 0.18);
}

.dispatch-panel {
  align-self: center;
  min-width: 0;
  padding: 22px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: rgba(8, 12, 19, 0.84);
  box-shadow: var(--shadow);
}

.dispatch-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
  text-transform: uppercase;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 18px rgba(66, 211, 146, 0.9);
}

.dispatch-panel dl {
  display: grid;
  gap: 1px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.dispatch-panel dl div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 14px;
  background: rgba(9, 13, 20, 0.88);
}

.dispatch-panel dt {
  color: var(--muted);
  font-weight: 800;
}

.dispatch-panel dd {
  margin: 0;
  color: var(--text);
  font-weight: 800;
  text-align: right;
}

.contact-rail {
  border-bottom: 1px solid var(--line);
  background: #090d14;
}

.contact-rail-inner {
  width: min(100% - 32px, var(--max));
  min-height: 86px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.contact-rail p {
  margin: 0;
  color: var(--text);
  font-size: 1.06rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-rail div div {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px 22px;
}

.contact-rail a,
.contact-rail .redacted-contact,
.contact-stack a,
.contact-stack .redacted-contact,
.footer-actions .redacted-contact,
.footer-actions a {
  color: var(--muted-2);
  font-weight: 800;
}

.contact-rail a:hover,
.contact-stack a:hover,
.footer-actions a:hover {
  color: var(--blue-2);
}

.section {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
  padding: 84px 0;
}

.section-heading {
  max-width: 790px;
  margin-bottom: 34px;
}

.section-heading p:not(.eyebrow),
.coverage-copy p,
.proof-copy p:not(.eyebrow),
.quote-copy p {
  color: var(--muted);
  font-size: 1.05rem;
}

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

.service-card {
  grid-column: span 2;
  min-width: 0;
  min-height: 232px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(21, 30, 45, 0.92), rgba(9, 13, 20, 0.96));
}

.service-card-feature {
  grid-column: span 4;
  background:
    linear-gradient(135deg, rgba(8, 124, 255, 0.24), rgba(21, 30, 45, 0.78)),
    var(--panel);
}

.service-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.service-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  border-radius: 8px;
  color: var(--blue-2);
  background: rgba(8, 124, 255, 0.13);
  border: 1px solid rgba(53, 182, 255, 0.38);
}

.coverage-section {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(420px, 1fr);
  gap: 54px;
  align-items: center;
  padding: 86px max(16px, calc((100vw - var(--max)) / 2));
  border-block: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(8, 124, 255, 0.1), rgba(66, 211, 146, 0.05) 42%, transparent),
    #090d14;
}

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

.coverage-board {
  min-width: 0;
  max-width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(7, 11, 18, 0.92);
  box-shadow: var(--shadow);
}

.board-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 22px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(90deg, rgba(8, 124, 255, 0.22), rgba(16, 23, 34, 0.88));
}

.board-heading span,
.board-metrics span,
.lane-head {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.board-heading strong {
  font-size: 1.05rem;
  text-transform: uppercase;
}

.board-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.board-metrics article {
  min-height: 132px;
  padding: 20px;
  background: rgba(13, 19, 29, 0.96);
}

.board-metrics strong {
  display: block;
  margin: 8px 0 6px;
  font-size: 1.3rem;
  line-height: 1;
}

.board-metrics small {
  color: var(--muted);
  font-size: 0.88rem;
}

.lane-list {
  padding: 16px;
  display: grid;
  gap: 8px;
}

.lane-row {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(120px, 0.8fr) minmax(96px, auto);
  gap: 16px;
  align-items: center;
  padding: 12px 14px;
  border: 1px solid rgba(142, 169, 204, 0.18);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.035);
}

.lane-row span {
  min-width: 0;
}

.lane-row em {
  justify-self: end;
  padding: 5px 9px;
  border-radius: 999px;
  color: #07120d;
  background: var(--green);
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 900;
  white-space: nowrap;
}

.lane-head {
  border: 0;
  background: transparent;
  padding-block: 0 4px;
}

.check-list {
  display: grid;
  gap: 11px;
  padding: 0;
  margin: 26px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--muted-2);
  font-weight: 800;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 16px rgba(66, 211, 146, 0.55);
}

.process-section {
  padding-bottom: 74px;
}

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

.process-list li {
  min-width: 0;
  min-height: 210px;
  padding: 24px;
  border-top: 4px solid var(--blue-2);
  border-radius: 0 0 8px 8px;
  background: var(--panel);
}

.process-list span {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--blue-2);
  font-size: 0.9rem;
  font-weight: 900;
}

.process-list p {
  margin-bottom: 0;
  color: var(--muted);
}

.proof-section {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
  padding: 18px 0 92px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 470px);
  gap: 56px;
  align-items: center;
}

.proof-copy {
  max-width: 620px;
}

.proof-media {
  display: grid;
  grid-template-columns: 0.95fr 0.82fr;
  gap: 14px;
  align-items: end;
}

.proof-logo,
.proof-van {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.26);
}

.proof-logo {
  aspect-ratio: 1;
}

.proof-van {
  max-height: 320px;
}

.faq-section {
  padding-top: 34px;
}

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

.faq-grid article {
  min-width: 0;
  min-height: 190px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(21, 30, 45, 0.88), rgba(9, 13, 20, 0.96));
}

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

.quote-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 1fr);
  gap: 42px;
  align-items: start;
  padding: 84px max(16px, calc((100vw - var(--max)) / 2));
  border-block: 1px solid var(--line);
  background: #090d14;
}

.quote-copy {
  max-width: 500px;
}

.contact-stack {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.quote-form {
  min-width: 0;
  display: grid;
  gap: 16px;
  padding: 24px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: rgba(7, 10, 15, 0.94);
  box-shadow: var(--shadow);
}

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

label {
  display: grid;
  gap: 7px;
  color: var(--muted-2);
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(168, 177, 194, 0.34);
  border-radius: 6px;
  padding: 11px 12px;
  color: var(--text);
  background: #05070b;
}

textarea {
  min-height: 132px;
  resize: vertical;
}

select {
  cursor: pointer;
}

input::placeholder,
textarea::placeholder {
  color: #7f8999;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--blue-2);
  outline: 0;
  box-shadow: 0 0 0 3px rgba(53, 182, 255, 0.16);
}

.quote-form .button {
  width: fit-content;
  margin-top: 4px;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #030407;
}

.footer-inner {
  width: min(100% - 32px, var(--max));
  min-height: 148px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
}

.footer-inner p {
  margin: 0;
  color: var(--muted);
}

.footer-actions {
  display: grid;
  justify-items: end;
  gap: 6px;
}

@media (max-width: 1050px) {
  .header-call {
    display: none;
  }

  h1 {
    font-size: 3.25rem;
  }

  h2 {
    font-size: 2.2rem;
  }

  .hero-inner,
  .coverage-section,
  .proof-section,
  .quote-section {
    grid-template-columns: 1fr;
  }

  .dispatch-panel {
    width: 100%;
    max-width: 500px;
  }

  .service-card,
  .service-card-feature {
    grid-column: span 3;
  }
}

@media (max-width: 860px) {
  body::before {
    font-size: 9rem;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: fixed;
    inset: 76px 0 auto;
    display: none;
    margin: 0;
    padding: 16px;
    border-bottom: 1px solid var(--line);
    background: rgba(6, 8, 13, 0.98);
  }

  .nav-links.is-open {
    display: grid;
  }

  .nav-links a {
    justify-content: center;
    min-height: 48px;
  }

  .hero {
    min-height: 680px;
  }

  .hero-image {
    object-position: 62% center;
  }

  .hero-copy {
    padding-top: 18px;
  }

  h1 {
    font-size: 2.65rem;
  }

  h2 {
    font-size: 1.95rem;
  }

  .contact-rail-inner {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding: 22px 0;
  }

  .contact-rail div div {
    justify-content: flex-start;
  }

  .board-metrics {
    grid-template-columns: 1fr;
  }

  .service-card,
  .service-card-feature {
    grid-column: span 6;
  }

  .process-list {
    grid-template-columns: 1fr;
  }

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

  .proof-media {
    max-width: 470px;
  }
}

@media (max-width: 640px) {
  html {
    scroll-padding-top: 72px;
  }

  body::before {
    top: 56%;
    color: rgba(255, 255, 255, 0.08);
    font-size: 6.5rem;
  }

  .sale-popup {
    align-items: start;
    overflow-y: auto;
    padding: 10px;
  }

  .sale-popup-card {
    width: 100%;
    max-height: calc(100dvh - 20px);
    overflow-y: auto;
    padding: 24px 18px 18px;
  }

  .sale-popup-card h2 {
    padding-right: 42px;
    font-size: 1.55rem;
    line-height: 1.12;
  }

  .sale-popup-card p:not(.eyebrow) {
    font-size: 0.96rem;
  }

  .sale-popup-card .button {
    width: 100%;
  }

  .sale-popup-close {
    top: 10px;
    right: 10px;
    width: 38px;
    height: 38px;
  }

  .nav,
  .hero-inner,
  .contact-rail-inner,
  .section,
  .proof-section,
  .footer-inner {
    width: min(100% - 24px, var(--max));
  }

  .nav {
    min-height: 64px;
    gap: 10px;
  }

  .brand {
    gap: 9px;
  }

  .brand img {
    width: 52px;
    height: 36px;
  }

  .brand strong {
    font-size: 0.82rem;
  }

  .brand span span {
    font-size: 0.7rem;
  }

  .nav-toggle {
    width: 42px;
    height: 42px;
  }

  .nav-links {
    inset: 64px 0 auto;
    padding: 12px;
  }

  .hero {
    min-height: auto;
    padding: 96px 0 36px;
  }

  .hero-inner {
    gap: 24px;
    align-items: start;
  }

  .hero-copy {
    padding-top: 0;
  }

  .hero-image {
    object-position: 72% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(4, 7, 12, 0.98), rgba(4, 7, 12, 0.82)),
      linear-gradient(180deg, rgba(4, 7, 12, 0.2), rgba(4, 7, 12, 0.92) 88%);
  }

  h1 {
    margin-bottom: 16px;
    font-size: 2.05rem;
    line-height: 1.08;
  }

  h2 {
    font-size: 1.58rem;
    line-height: 1.12;
  }

  h3 {
    font-size: 1rem;
  }

  .hero-lede {
    margin-bottom: 22px;
    font-size: 0.98rem;
  }

  .hero-actions {
    gap: 10px;
  }

  .header-call,
  .button {
    min-height: 44px;
    white-space: normal;
    line-height: 1.15;
  }

  .button {
    width: 100%;
  }

  .dispatch-panel {
    width: 100%;
    padding: 18px;
  }

  .dispatch-panel dl div {
    display: grid;
    gap: 4px;
    padding: 12px;
  }

  .dispatch-panel dd {
    text-align: left;
  }

  .section,
  .coverage-section,
  .quote-section {
    padding: 50px 12px;
  }

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

  .section-heading p:not(.eyebrow),
  .coverage-copy p,
  .proof-copy p:not(.eyebrow),
  .quote-copy p {
    font-size: 0.98rem;
  }

  .service-grid {
    gap: 12px;
  }

  .service-card,
  .service-card-feature {
    grid-column: 1 / -1;
    min-height: auto;
    padding: 18px;
  }

  .service-icon {
    width: 42px;
    height: 42px;
    margin-bottom: 16px;
  }

  .coverage-section {
    gap: 28px;
  }

  .coverage-board {
    width: 100%;
  }

  .board-heading {
    align-items: flex-start;
    flex-direction: column;
    padding: 16px;
  }

  .board-metrics article,
  .lane-list {
    padding: 16px;
  }

  .lane-row {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 12px;
  }

  .lane-row em {
    justify-self: start;
  }

  .field-row,
  .proof-media {
    grid-template-columns: 1fr;
  }

  .process-section {
    padding-bottom: 50px;
  }

  .process-list li,
  .faq-grid article {
    min-height: auto;
    padding: 18px;
  }

  .proof-section {
    padding: 8px 0 52px;
    gap: 28px;
  }

  .proof-logo,
  .proof-van {
    max-height: none;
  }

  .quote-section {
    gap: 28px;
  }

  .quote-form {
    padding: 18px;
  }

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

  input,
  select,
  textarea {
    font-size: 16px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 18px;
    justify-items: start;
    padding: 30px 0;
  }

  .footer-actions {
    justify-items: start;
  }
}

@media (max-width: 380px) {
  body::before {
    font-size: 5rem;
  }

  .brand > span {
    display: none;
  }

  h1 {
    font-size: 1.85rem;
  }

  .sale-popup-card {
    padding: 22px 14px 16px;
  }
}

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