:root {
  color-scheme: dark;
  font-family: "Arial Narrow", "Roboto Condensed", "Inter Tight", Arial, sans-serif;
  background: #050607;
  color: #f5f7fb;
  --blue: #0577ff;
  --blue-2: #0a52d5;
  --ink: #050607;
  --panel: #0b0d10;
  --panel-2: #11151b;
  --line: rgba(255, 255, 255, 0.18);
  --muted: #aeb7c4;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  background:
    radial-gradient(circle at 70% 0%, rgba(5, 119, 255, 0.18), transparent 28rem),
    linear-gradient(180deg, #050607 0%, #090b0f 58%, #050607 100%);
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.22;
  background-image:
    linear-gradient(135deg, rgba(255, 255, 255, 0.035) 25%, transparent 25%),
    linear-gradient(315deg, rgba(255, 255, 255, 0.035) 25%, transparent 25%);
  background-size: 8px 8px;
  z-index: -1;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 322px 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 138px;
  padding: 0 clamp(20px, 5vw, 68px);
  background: rgba(3, 4, 6, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  min-width: 0;
}

.brand img {
  width: 281px;
  height: 112px;
  object-fit: contain;
  object-position: left center;
}

.nav {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 2.4vw, 36px);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.nav a {
  position: relative;
  padding: 34px 0;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 24px;
  height: 3px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--blue);
  transition: transform 180ms ease;
}

.nav a:hover::after,
.nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-call,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 28px;
  border: 1px solid var(--blue);
  background: var(--blue);
  color: #fff;
  font-size: 15px;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.header-call:hover,
.btn:hover {
  transform: translateY(-2px);
  background: #1282ff;
}

.btn-outline {
  background: rgba(2, 6, 12, 0.58);
  border-color: rgba(255, 255, 255, 0.72);
}

.btn-outline:hover {
  background: rgba(5, 119, 255, 0.16);
  border-color: var(--blue);
}

.btn.slim {
  min-width: 190px;
  margin: 28px auto 0;
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 720px;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid rgba(5, 119, 255, 0.5);
}

.hero-media,
.hero-media img,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 68% center;
  filter: saturate(1.05) contrast(1.05);
}

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

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(2, 3, 5, 0.96) 0%, rgba(2, 3, 5, 0.83) 34%, rgba(2, 3, 5, 0.22) 72%, rgba(2, 3, 5, 0.72) 100%),
    linear-gradient(180deg, rgba(2, 3, 5, 0.12), rgba(2, 3, 5, 0.88));
}

.hero::after,
.final-cta::before,
.trust-strip::before {
  content: "";
  position: absolute;
  width: 220px;
  height: 100%;
  transform: skewX(-24deg);
  background: linear-gradient(90deg, transparent, rgba(5, 119, 255, 0.92), rgba(5, 119, 255, 0.28), transparent);
  opacity: 0.7;
  pointer-events: none;
}

.hero::after {
  right: 25%;
  top: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(690px, calc(100% - 40px));
  margin-left: clamp(22px, 6vw, 84px);
  padding-top: 38px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 15px;
  font-weight: 900;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0;
}

.eyebrow.center {
  text-align: center;
}

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

h1 {
  margin-bottom: 24px;
  font-size: clamp(50px, 7.2vw, 98px);
  line-height: 0.91;
  max-width: 720px;
  font-weight: 1000;
  text-transform: uppercase;
  text-shadow: 0 3px 0 rgba(255, 255, 255, 0.18), 0 28px 56px rgba(0, 0, 0, 0.52);
}

h1 span,
.final-cta h2 {
  color: var(--blue);
}

.hero-copy {
  width: min(480px, 100%);
  color: #e5e9f0;
  font-family: Arial, sans-serif;
  font-size: 20px;
  line-height: 1.55;
}

.hero-actions,
.hero-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}

.hero-actions {
  margin-top: 30px;
}

.hero-contact {
  margin-top: 28px;
  color: #f8fbff;
  font-size: 14px;
  font-weight: 900;
}

.hero-contact a,
.coverage-note a,
.footer a {
  color: #fff;
}

.hero-contact span {
  color: var(--muted);
}

.trust-strip {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 30px clamp(20px, 5vw, 68px);
  background: linear-gradient(90deg, #0a0c10, #141821, #0a0c10);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.trust-strip::before {
  left: -80px;
  top: 0;
  height: 120%;
}

.trust-item {
  position: relative;
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
  padding: 8px 24px;
  border-right: 1px solid var(--line);
}

.trust-item:last-child {
  border-right: 0;
}

.trust-mark {
  display: block;
  width: 44px;
  height: 44px;
  border: 3px solid var(--blue);
  background: rgba(5, 119, 255, 0.08);
  transform: rotate(45deg);
}

.trust-item h3,
.service-card h3,
.step h3,
.review strong,
.footer h3 {
  margin-bottom: 6px;
  font-size: 16px;
  font-weight: 1000;
  text-transform: uppercase;
}

.trust-item p,
.service-card p,
.step p,
.review p,
.footer p,
.why-panel li,
.coverage-note {
  color: var(--muted);
  font-family: Arial, sans-serif;
  font-size: 14px;
  line-height: 1.55;
}

.section {
  padding: 76px clamp(20px, 5vw, 68px);
}

.section h2,
.why-panel h2,
.reviews h2,
.final-cta h2 {
  margin-bottom: 10px;
  color: #fff;
  font-size: clamp(36px, 5vw, 58px);
  line-height: 0.98;
  text-align: center;
  text-transform: uppercase;
}

.section-lede {
  margin: 0 auto 42px;
  color: #c8d0dc;
  font-family: Arial, sans-serif;
  text-align: center;
}

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

.service-card {
  min-height: 226px;
  padding: 28px 22px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.015)),
    #090b0e;
}

.service-icon {
  display: block;
  width: 74px;
  height: 74px;
  margin: -2px 0 22px -4px;
  object-fit: cover;
  border: 1px solid rgba(5, 119, 255, 0.24);
  background: #050607;
  box-shadow: 0 0 26px rgba(5, 119, 255, 0.16);
}

.service-card:hover {
  border-color: rgba(5, 119, 255, 0.9);
  box-shadow: inset 0 0 0 1px rgba(5, 119, 255, 0.32), 0 20px 50px rgba(0, 0, 0, 0.35);
}

.split-section {
  display: grid;
  grid-template-columns: 1.08fr 1fr;
  gap: 54px;
  align-items: center;
  padding: 20px clamp(20px, 5vw, 68px) 78px;
}

.image-panel {
  border: 1px solid var(--line);
  overflow: hidden;
  background: #080a0d;
}

.image-panel img,
.process-photo img,
.area-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.why-panel h2 {
  text-align: left;
}

.why-panel ul {
  display: grid;
  gap: 18px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.why-panel li {
  position: relative;
  padding-left: 34px;
}

.why-panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 18px;
  height: 18px;
  border: 2px solid var(--blue);
  background: rgba(5, 119, 255, 0.12);
  transform: rotate(45deg);
}

.process {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent);
}

.process-photo,
.area-photo {
  max-width: 1180px;
  height: 360px;
  margin: 36px auto 18px;
  border: 1px solid rgba(5, 119, 255, 0.38);
  overflow: hidden;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  max-width: 1180px;
  margin: 0 auto;
}

.step {
  padding: 24px;
  border: 1px solid var(--line);
  background: rgba(7, 9, 12, 0.78);
}

.step strong {
  color: var(--blue);
  font-size: 54px;
  line-height: 1;
  font-style: italic;
}

.areas {
  background: #050607;
}

.area-list {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  max-width: 1180px;
  margin: 18px auto 0;
}

.area-list span {
  padding: 18px 10px;
  border: 1px solid rgba(5, 119, 255, 0.46);
  background: rgba(5, 119, 255, 0.08);
  font-weight: 1000;
  text-align: center;
  text-transform: uppercase;
}

.coverage-note {
  margin: 22px 0 0;
  text-align: center;
}

.coverage-note a {
  color: var(--blue);
  font-weight: 900;
}

.reviews {
  display: grid;
  grid-template-columns: 1fr repeat(3, 1.15fr);
  gap: 18px;
  align-items: stretch;
  padding: 72px clamp(20px, 5vw, 68px);
  background: linear-gradient(90deg, #07090c, #10151e, #07090c);
  border-block: 1px solid var(--line);
}

.reviews h2 {
  text-align: left;
}

.review {
  padding: 28px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.035);
}

.stars {
  margin-bottom: 16px;
  color: #ffd24a;
}

.final-cta {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: center;
  padding: 48px clamp(20px, 5vw, 68px);
  overflow: hidden;
  background:
    linear-gradient(100deg, rgba(5, 119, 255, 0.36), transparent 38%),
    #07090d;
  border-bottom: 1px solid var(--line);
}

.final-cta::before {
  left: 5%;
  top: 0;
}

.final-cta > * {
  position: relative;
  z-index: 1;
}

.final-cta h2 {
  text-align: left;
}

.final-cta p {
  margin: 0;
  color: #d7dde8;
  font-family: Arial, sans-serif;
}

.footer {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 64px;
  padding: 54px clamp(20px, 5vw, 68px) 42px;
  background: #030405;
}

.footer img {
  width: 170px;
  height: 70px;
  object-fit: contain;
  object-position: left center;
}

.copyright {
  grid-column: 1 / -1;
  margin: -22px 0 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #7f8b9b;
  font-family: Arial, sans-serif;
  font-size: 13px;
  text-align: center;
}

.copyright a {
  color: #9fcbff;
  font-weight: 700;
}

.copyright a:hover {
  color: #fff;
}

.privacy-hero {
  position: relative;
  overflow: hidden;
  padding: 118px clamp(20px, 8vw, 110px) 72px;
  border-bottom: 1px solid rgba(5, 119, 255, 0.42);
  background:
    linear-gradient(90deg, rgba(2, 3, 5, 0.96), rgba(2, 3, 5, 0.72)),
    url("../public/assets/hero-van.jpg") center right / cover no-repeat;
}

.privacy-hero::after {
  content: "";
  position: absolute;
  top: 0;
  right: 16%;
  width: 220px;
  height: 100%;
  transform: skewX(-24deg);
  background: linear-gradient(90deg, transparent, rgba(5, 119, 255, 0.82), rgba(5, 119, 255, 0.22), transparent);
  opacity: 0.62;
  pointer-events: none;
}

.privacy-hero > * {
  position: relative;
  z-index: 1;
}

.privacy-hero h1 {
  max-width: 760px;
  margin-bottom: 18px;
}

.privacy-hero p:last-child {
  max-width: 680px;
  color: #d7dde8;
  font-family: Arial, sans-serif;
  font-size: 20px;
  line-height: 1.55;
}

.privacy-content {
  display: grid;
  gap: 22px;
  max-width: 980px;
  margin: 0 auto;
  padding: 72px clamp(20px, 5vw, 68px) 84px;
}

.privacy-updated {
  margin-bottom: 8px;
  color: var(--blue);
  font-family: Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
}

.privacy-content article {
  padding: 26px 28px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012)),
    #080a0d;
}

.privacy-content h2 {
  margin-bottom: 10px;
  color: #fff;
  font-size: 24px;
  line-height: 1.1;
  text-transform: uppercase;
}

.privacy-content p {
  margin-bottom: 0;
  color: #c7d0de;
  font-family: Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
}

.privacy-content a {
  color: #9fcbff;
  font-weight: 700;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(10px);
}

.modal-backdrop[hidden] {
  display: none !important;
}

.quote-modal {
  position: relative;
  width: min(720px, 100%);
  max-height: min(780px, calc(100vh - 40px));
  overflow: auto;
  padding: 36px;
  border: 1px solid rgba(5, 119, 255, 0.55);
  background: #080a0e;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.6);
}

.quote-modal h2 {
  margin-bottom: 24px;
  font-size: 34px;
  text-transform: uppercase;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 18px;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  background: transparent;
  color: #fff;
  font-size: 30px;
  cursor: pointer;
}

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

form[hidden] {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  display: none !important;
}

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

label {
  display: grid;
  gap: 8px;
  color: #dfe5ef;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

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

input,
textarea,
select {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: #0e1218;
  color: #fff;
  padding: 14px 16px;
}

textarea {
  resize: vertical;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: #9fcbff;
  font-family: Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
}

button:disabled {
  cursor: wait;
  opacity: 0.72;
}

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

  .site-header {
    grid-template-columns: 254px 1fr auto;
    min-height: 108px;
  }

  .brand img {
    width: 213px;
    height: 88px;
  }

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

  .menu-toggle {
    justify-self: end;
    display: grid;
    gap: 5px;
    width: 48px;
    height: 44px;
    padding: 10px;
    border: 1px solid var(--line);
    background: transparent;
  }

  .menu-toggle span {
    display: block;
    height: 2px;
    background: #fff;
  }

  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    padding: 18px 20px 26px;
    background: rgba(3, 4, 6, 0.98);
    border-bottom: 1px solid var(--line);
  }

  .nav--open {
    display: grid;
    gap: 0;
  }

  .nav a {
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav a::after {
    display: none;
  }

  .header-call {
    display: none;
  }

  .hero {
    min-height: 720px;
    align-items: flex-end;
  }

  .hero-media img {
    object-position: 67% center;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(2, 3, 5, 0.2), rgba(2, 3, 5, 0.95) 58%),
      linear-gradient(90deg, rgba(2, 3, 5, 0.9), rgba(2, 3, 5, 0.2));
  }

  .hero-content {
    margin: 0;
    padding: 0 20px 42px;
    width: 100%;
  }

  .trust-strip,
  .service-grid,
  .steps,
  .area-list,
  .reviews,
  .footer,
  .split-section {
    grid-template-columns: 1fr 1fr;
  }

  .reviews > div:first-child,
  .footer > div:first-child,
  .split-section > * {
    grid-column: 1 / -1;
  }

  .trust-item:nth-child(2) {
    border-right: 0;
  }
}

@media (max-width: 640px) {
  html,
  body {
    overflow-x: clip;
  }

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

  .site-header {
    position: sticky;
    top: 0;
    grid-template-columns: 189px 1fr;
    min-height: 92px;
    padding: 0 14px;
  }

  .brand img {
    width: 172px;
    height: 75px;
  }

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

  h1 {
    font-size: clamp(32px, 10.4vw, 46px);
    line-height: 0.94;
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .hero {
    display: block;
    min-height: 0;
    max-width: 100vw;
    overflow-x: hidden;
    background: #050607;
  }

  .hero-media {
    position: relative;
    inset: auto;
    height: clamp(245px, 68vw, 330px);
    overflow: hidden;
  }

  .hero-media img {
    position: absolute;
    inset: 0;
    object-position: 58% center;
  }

  .hero-overlay {
    top: 0;
    bottom: auto;
    height: clamp(245px, 68vw, 330px);
    background:
      linear-gradient(180deg, rgba(2, 3, 5, 0.04), rgba(2, 3, 5, 0.16) 60%, #050607 100%),
      linear-gradient(90deg, rgba(2, 3, 5, 0.1), rgba(2, 3, 5, 0.02) 54%, rgba(2, 3, 5, 0.12));
  }

  .hero::after {
    top: 0;
    right: 18%;
    height: clamp(245px, 68vw, 330px);
    opacity: 0.35;
  }

  .hero-content {
    margin: 0;
    padding: 28px 20px 42px;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    background: #050607;
  }

  .eyebrow,
  .hero-copy,
  .hero-contact,
  .hero-contact a {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .hero-copy {
    font-size: 17px;
  }

  .hero-actions,
  .final-cta {
    align-items: stretch;
    flex-direction: column;
  }

  .btn {
    width: 100%;
    max-width: 100%;
  }

  .trust-strip,
  .service-grid,
  .steps,
  .area-list,
  .reviews,
  .footer {
    grid-template-columns: 1fr;
  }

  .footer {
    gap: 28px;
    padding: 44px 20px max(18px, env(safe-area-inset-bottom));
  }

  .footer > div {
    margin: 0;
  }

  .footer p {
    margin-bottom: 0;
  }

  .copyright {
    margin: 0;
    padding-top: 18px;
  }

  .trust-item {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding-inline: 0;
  }

  .section {
    padding-block: 58px;
  }

  .privacy-hero {
    padding: 82px 20px 50px;
  }

  .privacy-hero p:last-child {
    font-size: 17px;
  }

  .privacy-content {
    padding-block: 46px 58px;
  }

  .privacy-content article {
    padding: 22px 20px;
  }

  .process-photo,
  .area-photo {
    height: 260px;
  }

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

  .wide {
    grid-column: auto;
  }
}
