:root {
  --bg: #050914;
  --text: #f8fbff;
  --muted: #a7b2c4;
  --red: #1d6fff;
  --red-bright: #4da5ff;
  --off: #eef4fb;
  --stone: #d8e0ea;
  --stone-soft: #f3f7fb;
  --card-light: #ffffff;
  --dark-text: #101827;
  --line-light: #c9d4e2;
  --container: 1180px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--red-bright);
  outline-offset: 4px;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.eyebrow {
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.section-title {
  font-size: clamp(32px, 5vw, 58px);
  line-height: 0.95;
  letter-spacing: -0.06em;
  text-transform: uppercase;
  font-weight: 950;
}

.section-copy {
  color: var(--muted);
  max-width: 620px;
  margin-top: 16px;
  font-size: 16px;
}

.light-copy {
  color: #4b5565;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  padding: 15px 22px;
  font-size: 12px;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: 0.25s ease;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, #0b55d9, #1d6fff);
  color: #ffffff;
  box-shadow: 0 18px 40px rgba(29, 111, 255, 0.28);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #1d6fff, #4da5ff);
  transform: translateY(-2px);
}

.btn-outline {
  border-color: rgba(255, 255, 255, 0.28);
  color: white;
  background: rgba(255, 255, 255, 0.02);
}

.btn-outline:hover {
  background: white;
  color: black;
}

.btn-dark {
  background: #080808;
  color: white;
  border-color: rgba(255, 255, 255, 0.15);
}

.btn-dark:hover {
  background: var(--red);
  border-color: var(--red);
}

.btn-light-outline {
  border-color: var(--line-light);
  color: var(--dark-text);
  background: transparent;
}

.btn-light-outline:hover {
  background: var(--dark-text);
  color: white;
  border-color: var(--dark-text);
}

.icon {
  width: 32px;
  height: 32px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: 0 0 auto;
}

.icon-red {
  color: var(--red);
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  background: linear-gradient(
    to bottom,
    rgba(5, 9, 20, 0.94),
    rgba(5, 9, 20, 0.62),
    transparent
  );
  border-bottom: 1px solid transparent;
  transition: 0.25s ease;
}

.header.scrolled {
  background: rgba(5, 9, 20, 0.95);
  backdrop-filter: blur(18px);
  border-bottom-color: rgba(147, 197, 253, 0.18);
}

.nav {
  height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}

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

.brand-text strong {
  display: block;
  color: white;
  font-size: 20px;
  line-height: 0.9;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.brand-text span {
  display: block;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-top: 5px;
}

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

.nav-links a {
  color: white;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  opacity: 0.92;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: 0.2s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.04);
  color: white;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.mobile-panel {
  display: none;
  background: rgba(5, 9, 20, 0.98);
  border-top: 1px solid rgba(147, 197, 253, 0.14);
  padding: 18px 20px 24px;
}

.mobile-panel.open {
  display: block;
}

.mobile-panel a {
  display: block;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: white;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 13px;
}

.hero {
  min-height: 860px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  background: #050914;
  padding-bottom: 130px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(5, 9, 20, 0.72) 0%,
      rgba(5, 9, 20, 0.54) 34%,
      rgba(5, 9, 20, 0.12) 68%,
      rgba(5, 9, 20, 0.08) 100%
    ),
    linear-gradient(
      to bottom,
      rgba(5, 9, 20, 0.16) 0%,
      rgba(5, 9, 20, 0.24) 58%,
      rgba(5, 9, 20, 0.58) 100%
    );
  z-index: -1;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 18% 30%, rgba(29, 111, 255, 0.24), transparent 28%),
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: auto, 90px 90px, 90px 90px;
  mask-image: linear-gradient(to bottom, black, transparent 82%);
  z-index: -1;
  opacity: 0.65;
}

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

.hero-bg img {
  height: 100%;
  object-fit: cover;
  object-position: center right;
  filter: saturate(1.05) contrast(1.06) brightness(1);
}

.hero-content {
  padding-top: 86px;
  max-width: 650px;
  position: relative;
  z-index: 2;
  margin-bottom: 40px;
}

.hero-kicker {
  display: inline-flex;
  color: #69b7ff;
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
  padding: 9px 12px;
  background: rgba(5, 9, 20, 0.48);
  border: 1px solid rgba(147, 197, 253, 0.18);
  backdrop-filter: blur(8px);
}

.hero h1 {
  font-size: clamp(54px, 7.4vw, 104px);
  line-height: 0.88;
  letter-spacing: -0.08em;
  text-transform: uppercase;
  font-weight: 1000;
  text-shadow: 0 8px 34px rgba(0, 0, 0, 0.55);
}

.hero h1 span {
  display: block;
  color: #4da5ff;
}

.hero p {
  color: rgba(255, 255, 255, 0.88);
  max-width: 560px;
  font-size: 18px;
  line-height: 1.6;
  margin: 22px 0 14px;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.45);
}

.hero-seo-line {
  color: rgba(255, 255, 255, 0.72);
  max-width: 570px;
  font-size: 14px;
  line-height: 1.6;
  margin: 0 0 30px;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.45);
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-contact-card {
  margin-top: 26px;
  display: inline-grid;
  gap: 5px;
  padding: 18px 20px;
  border: 1px solid rgba(147, 197, 253, 0.16);
  background: rgba(255, 255, 255, 0.055);
  backdrop-filter: blur(14px);
}

.hero-contact-card strong {
  color: white;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.hero-contact-card span {
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
}

.trust-strip {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: min(var(--container), calc(100% - 40px));
  background: rgba(8, 18, 38, 0.84);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(147, 197, 253, 0.16);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  box-shadow: var(--shadow);
}

.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 26px 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

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

.trust-item h3 {
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 950;
  margin-bottom: 6px;
}

.trust-item p {
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  line-height: 1.45;
}

.about {
  background: var(--off);
  color: var(--dark-text);
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 640px;
}

.about-content {
  padding: 78px max(40px, calc((100vw - var(--container)) / 2)) 78px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-image {
  position: relative;
  min-height: 560px;
  background: #111;
}

.about-image img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  object-position: center;
  filter: contrast(1.03) brightness(0.98);
}

.about-details {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 32px;
  margin-top: 34px;
}

.about-points {
  display: grid;
  gap: 20px;
}

.about-point h3 {
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 950;
  margin-bottom: 4px;
}

.about-point p {
  color: #4b5565;
  font-size: 13px;
  line-height: 1.45;
}

.stats {
  border-left: 1px solid var(--line-light);
  padding-left: 30px;
  display: grid;
  gap: 22px;
  align-content: center;
}

.stat strong {
  display: block;
  color: var(--red);
  font-size: 42px;
  line-height: 0.9;
  letter-spacing: -0.08em;
  font-weight: 1000;
}

.stat span {
  display: block;
  margin-top: 8px;
  font-size: 12px;
  line-height: 1.2;
  text-transform: uppercase;
  font-weight: 950;
}

.stars {
  color: var(--red);
  font-size: 15px;
  letter-spacing: 0.16em;
  margin-top: 8px;
}

.services,
.service-request {
  background: var(--off);
  color: var(--dark-text);
  padding: 78px 0;
}

.services {
  border-top: 1px solid var(--line-light);
}

.section-head-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 32px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line-light);
  background: var(--card-light);
}

.service-card {
  min-height: 245px;
  padding: 30px 26px 26px;
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  position: relative;
  overflow: hidden;
  transition: 0.25s ease;
  background: var(--card-light);
}

.service-card:nth-child(3n) {
  border-right: 0;
}

.service-card:nth-last-child(-n+3) {
  border-bottom: 0;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 4px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: 0.25s ease;
}

.service-card:hover {
  background: #ffffff;
  transform: translateY(-4px);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.08);
  z-index: 2;
}

.service-card:hover::after {
  transform: scaleX(1);
}

.service-card h3,
.review-card h3 {
  font-size: 15px;
  line-height: 1.15;
  text-transform: uppercase;
  font-weight: 950;
  margin-bottom: 12px;
}

.service-card p,
.review-card p {
  color: #4b5565;
  font-size: 13px;
  line-height: 1.55;
}

.learn-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--red);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  margin-top: 20px;
}

/* BRAND RUNNING BANNER */
.brand-banner {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #eef4fb 100%);
  color: #0d2037;
  padding: 30px 0 36px;
  border-top: 1px solid rgba(13, 32, 55, 0.08);
  border-bottom: 1px solid rgba(13, 32, 55, 0.08);
}

.banner-title {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 34px;
  align-items: center;
  margin-bottom: 26px;
  color: #1d6fff;
  font-size: 0.88rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.banner-title span {
  height: 1px;
  background: rgba(13, 32, 55, 0.24);
}

.brand-marquee-window {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.brand-marquee-window::before,
.brand-marquee-window::after {
  content: "";
  position: absolute;
  top: 0;
  width: 140px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.brand-marquee-window::before {
  left: 0;
  background: linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
}

.brand-marquee-window::after {
  right: 0;
  background: linear-gradient(270deg, #eef4fb 0%, rgba(238, 244, 251, 0) 100%);
}

.brand-marquee-track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 78px;
  animation: brandScroll 34s linear infinite;
}

.brand-logo {
  width: 170px;
  height: 88px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
  border-radius: 0;
}

.brand-logo img {
  display: block;
  max-width: 132px;
  max-height: 72px;
  object-fit: contain;
  background: transparent;
  filter: none;
  opacity: 1;
  transition: transform 0.25s ease;
}

.brand-logo:hover img {
  transform: scale(1.05);
}

.make-disclaimer {
  color: #5a6778;
  font-size: 11px;
  line-height: 1.45;
  margin: 18px auto 0;
  max-width: 920px;
  text-align: center;
}

@keyframes brandScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.service-request {
  background: var(--stone-soft);
}

.service-request-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 34px;
  align-items: start;
}

.request-notes {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.request-notes div {
  padding: 20px;
  background: var(--card-light);
  border: 1px solid var(--line-light);
}

.request-notes strong {
  display: block;
  color: var(--dark-text);
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 950;
  margin-bottom: 6px;
}

.request-notes span {
  display: block;
  color: #4b5565;
  font-size: 13px;
  line-height: 1.5;
}

.request-notes a[href^="tel"] {
  color: #1d6fff !important;
}

.request-form {
  background: var(--card-light);
  border: 1px solid var(--line-light);
  padding: 30px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.08);
}

.form-row {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
}

.form-row.two-col {
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-row label {
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  color: var(--dark-text);
  letter-spacing: 0.04em;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  border: 1px solid var(--line-light);
  background: #ffffff;
  color: var(--dark-text);
  padding: 14px;
  font-size: 14px;
  outline: none;
  transition: 0.2s ease;
  border-radius: 0;
}

.form-row textarea {
  resize: vertical;
  min-height: 130px;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: var(--red);
  background: white;
  box-shadow: 0 0 0 3px rgba(29, 111, 255, 0.14);
}

.form-submit {
  width: 100%;
  margin-top: 4px;
}

.form-disclaimer {
  color: #64748b;
  font-size: 12px;
  line-height: 1.45;
  margin-top: 14px;
}

.reviews {
  padding: 78px 0;
  background:
    radial-gradient(circle at 18% 20%, rgba(29, 111, 255, 0.16), transparent 32%),
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    #050914;
  background-size: auto, 84px 84px, 84px 84px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.center-head {
  text-align: center;
  margin-bottom: 34px;
}

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

.review-card {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.08),
    rgba(255, 255, 255, 0.035)
  );
  border: 1px solid rgba(147, 197, 253, 0.16);
  padding: 30px;
  min-height: 250px;
  backdrop-filter: blur(14px);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  position: relative;
  overflow: hidden;
}

.review-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: var(--red);
  opacity: 0.85;
}

.quote-mark {
  color: var(--red);
  font-size: 48px;
  line-height: 0.7;
  font-weight: 1000;
  margin-bottom: 18px;
}

.review-card p {
  color: rgba(255, 255, 255, 0.76);
  font-size: 15px;
  line-height: 1.65;
}

.review-card strong {
  display: block;
  color: white;
  margin-top: 18px;
  font-size: 13px;
  text-transform: uppercase;
}

.review-card small {
  display: block;
  color: rgba(255, 255, 255, 0.42);
  margin-top: 7px;
  font-size: 12px;
}

.location {
  background: url("../imgs/request-garage-clean.png") left center / cover no-repeat;
  color: #ffffff;
  padding: 88px 0 92px;
}

.location .section-head-row {
  margin-bottom: 34px;
}

.location .section-head-row > div {
  max-width: 660px;
  margin-left: auto;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.location .eyebrow {
  color: #69b7ff;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.45);
}

.location .section-title {
  color: #ffffff;
  text-shadow: 0 5px 30px rgba(0, 0, 0, 0.65);
}

.location .section-copy {
  color: rgba(255, 255, 255, 0.9);
  max-width: 620px;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.55);
}

.location-grid {
  width: 76%;
  margin-left: auto;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 28px;
  align-items: stretch;
  margin-top: 34px;
}

.location-card {
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(8, 15, 28, 0.62);
  color: #ffffff;
  padding: 34px;
  display: grid;
  gap: 22px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.location-detail h3 {
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 950;
  margin-bottom: 6px;
  color: #ffffff;
}

.location-detail p,
.location-detail a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  line-height: 1.55;
}

.location-detail a:hover {
  color: #69b7ff;
}

.location-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.location .btn-light-outline {
  border-color: rgba(255, 255, 255, 0.28);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.04);
}

.location .btn-light-outline:hover {
  background: #ffffff;
  color: #101827;
}

.map-card {
  min-height: 390px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
}

.map-card iframe {
  width: 100%;
  height: 100%;
  min-height: 390px;
  border: 0;
  display: block;
  opacity: 0.92;
}

.footer {
  background:
    radial-gradient(circle at 18% 20%, rgba(29, 111, 255, 0.17), transparent 30%),
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    #050914;
  background-size: auto, 88px 88px, 88px 88px;
  padding: 58px 0 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-card-feature {
  display: grid;
  grid-template-columns: 0.95fr 1.25fr;
  gap: 34px;
  align-items: center;
  padding: 24px;
  border: 1px solid rgba(147, 197, 253, 0.16);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035));
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.32);
  overflow: hidden;
}

.footer-card-copy h2 {
  font-size: clamp(30px, 4vw, 52px);
  line-height: 0.95;
  letter-spacing: -0.06em;
  text-transform: uppercase;
  font-weight: 1000;
  margin-bottom: 14px;
}

.footer-card-copy p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 15px;
  max-width: 520px;
  margin-bottom: 22px;
}

.footer-business-card {
  border: 1px solid rgba(147, 197, 253, 0.16);
  background: #111;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
  overflow: hidden;
}

.footer-business-card img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.48);
  font-size: 12px;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 700;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  transition: 0.2s ease;
}

.footer-bottom a:hover {
  color: var(--red);
  border-bottom-color: var(--red);
}

.mobile-call-bar {
  display: none;
}

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

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

  .trust-strip {
    position: relative;
    left: auto;
    bottom: auto;
    transform: none;
    margin: -70px auto 0;
    grid-template-columns: repeat(2, 1fr);
  }

  .hero {
    min-height: 760px;
    padding-bottom: 100px;
  }

  .about,
  .service-request-grid,
  .location-grid,
  .footer-card-feature {
    grid-template-columns: 1fr;
  }

  .about-content {
    padding: 70px 40px;
  }

  .about-image,
  .about-image img {
    min-height: 430px;
  }

  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-card:nth-child(3n) {
    border-right: 1px solid var(--line-light);
  }

  .service-card:nth-child(2n) {
    border-right: 0;
  }

  .service-card:nth-last-child(-n+3) {
    border-bottom: 1px solid var(--line-light);
  }

  .service-card:nth-last-child(-n+2) {
    border-bottom: 0;
  }

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

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

  body {
    overflow-x: hidden;
    padding-bottom: 84px;
  }

  .container {
    width: min(100% - 28px, var(--container));
  }

  .header {
    background: rgba(5, 9, 20, 0.96);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(147, 197, 253, 0.16);
  }

  .nav {
    height: 74px;
    gap: 12px;
  }

  .brand {
    min-width: 0;
  }

  .brand-text strong {
    font-size: 16px;
    line-height: 1;
  }

  .brand-text span {
    font-size: 10px;
    letter-spacing: 0.14em;
  }

  .nav-actions .btn {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    border-radius: 12px;
  }

  .hero {
    min-height: auto;
    display: block;
    padding: 118px 0 34px;
  }

  .hero::before {
  background:
    linear-gradient(
      to bottom,
      rgba(5, 9, 20, 0.38) 0%,
      rgba(5, 9, 20, 0.66) 48%,
      rgba(5, 9, 20, 0.92) 100%
    ),
    linear-gradient(
      90deg,
      rgba(5, 9, 20, 0.74),
      rgba(5, 9, 20, 0.18)
    );
}
  .hero-bg {
    height: 460px;
    bottom: auto;
  }

.hero-bg img {
  height: 100%;
  object-position: 68% center;
  opacity: 1;
  filter: saturate(1.05) contrast(1.06) brightness(0.94);
}

  .hero-content {
    padding-top: 0;
    max-width: 100%;
    position: relative;
    z-index: 2;
  }

  .hero-kicker {
    font-size: 13px;
    line-height: 1.25;
    margin-bottom: 14px;
  }

  .hero h1 {
    font-size: clamp(48px, 15vw, 72px);
    line-height: 0.88;
    letter-spacing: -0.075em;
  }

  .hero p {
    font-size: 16px;
    line-height: 1.62;
    margin: 18px 0 12px;
  }

  .hero-seo-line {
    font-size: 13px;
    line-height: 1.55;
    margin-bottom: 24px;
  }

  .hero-buttons {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .hero-buttons .btn {
    width: 100%;
    min-height: 50px;
  }

  .hero-contact-card {
    width: 100%;
    margin-top: 20px;
    border-radius: 18px;
  }

  .trust-strip {
    position: relative;
    left: auto;
    bottom: auto;
    transform: none;
    width: min(100% - 28px, var(--container));
    margin: 0 auto;
    grid-template-columns: 1fr;
    border-radius: 22px;
    overflow: hidden;
  }

  .trust-item {
    padding: 18px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

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

  .about,
  .services,
  .service-request,
  .reviews,
  .location {
    padding: 56px 0;
  }

  .about {
    display: block;
    min-height: auto;
  }

  .about-content {
    padding: 0 20px;
  }

  .about-image,
  .about-image img {
    min-height: 320px;
  }

  .about-details {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .stats {
    border-left: 0;
    border-top: 1px solid var(--line-light);
    padding-left: 0;
    padding-top: 24px;
    grid-template-columns: 1fr;
  }

  .stat strong {
    font-size: 36px;
  }

  .section-head-row {
    display: block;
    margin-bottom: 26px;
  }

  .section-head-row .btn {
    margin-top: 18px;
    width: 100%;
  }

  .section-title {
    font-size: clamp(34px, 11vw, 48px);
    line-height: 0.95;
  }

  .section-copy {
    font-size: 15px;
    line-height: 1.65;
  }

  .service-grid,
  .service-request-grid,
  .review-grid,
  .location-grid,
  .footer-card-feature {
    grid-template-columns: 1fr;
  }

  .location .section-head-row > div {
  max-width: 100%;
  margin-left: 0;
}

.location-grid {
  width: 100%;
  margin-left: 0;
  grid-template-columns: 1fr;
}
  .service-card,
  .review-card,
  .location-card,
  .request-form {
    padding: 22px;
  }

  .service-card,
  .service-card:nth-child(3n),
  .service-card:nth-child(2n) {
    border-right: 0;
  }

  .service-card {
    border-bottom: 1px solid var(--line-light);
  }

  .service-card:last-child {
    border-bottom: 0;
  }

  .brand-banner {
    padding: 28px 0 32px;
  }

  .banner-title {
    grid-template-columns: 1fr;
    gap: 12px;
    text-align: center;
    font-size: 0.76rem;
  }

  .brand-marquee-window::before,
  .brand-marquee-window::after {
    width: 60px;
  }

  .brand-marquee-track {
    gap: 34px;
    animation-duration: 24s;
  }

  .brand-logo {
    width: 132px;
    height: 78px;
    padding: 0;
  }

  .brand-logo img {
    max-width: 106px;
    max-height: 58px;
  }

  .make-disclaimer {
    font-size: 10px;
  }

  .form-row.two-col {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .form-row input,
  .form-row select,
  .form-row textarea {
    font-size: 16px;
    padding: 15px 14px;
  }

  .request-notes {
    margin-bottom: 22px;
  }

  .map-card,
  .map-card iframe {
    min-height: 300px;
  }

  .footer {
    padding: 48px 0 104px;
  }

  .footer-card-feature {
    padding: 18px;
    gap: 22px;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .mobile-call-bar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 1000;
    padding: 10px;
    background: rgba(5, 9, 20, 0.94);
    border: 1px solid rgba(147, 197, 253, 0.16);
    border-radius: 20px;
    backdrop-filter: blur(18px);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
  }

  .mobile-call-bar a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    border-radius: 14px;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    text-decoration: none;
    color: #fff;
  }

  .mobile-call-bar a:first-child {
    background: linear-gradient(135deg, #1d6fff, #0b3d91);
  }

  .mobile-call-bar a:last-child {
    background: rgba(255, 255, 255, 0.1);
  }
}

@media (max-width: 420px) {
  .hero {
    padding-top: 108px;
  }

  .hero-bg {
    height: 430px;
  }

  .hero h1 {
    font-size: clamp(42px, 14vw, 58px);
  }

  .section-title {
    font-size: clamp(31px, 10vw, 42px);
  }

  .service-card,
  .review-card,
  .location-card,
  .request-form {
    padding: 20px;
  }
}

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

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