/* ==========================================================================
   MAPS TOWING — GLOBAL STYLES
   Tokens, base, icons, buttons, header, mega menus, mobile menu.
   Page-specific styles live in their own files (home.css, about.css, ...).
   ========================================================================== */

/* ---------- Design tokens (from Figma) ---------- */
:root {
  /* Primary */
  --primary-1: #ff3800;
  --primary-2: #ff821c;
  --grad-primary: linear-gradient(90deg, var(--primary-1) 0%, var(--primary-2) 100%);
  --primary-1-shade: #ff5222;
  --primary-2-shade: #ff9134;
  --grad-primary-shade: linear-gradient(90deg, var(--primary-1-shade) 0%, var(--primary-2-shade) 100%);
  --grad-secondary: linear-gradient(90deg, rgba(255, 56, 0, 0.01) 0%, rgba(255, 130, 28, 0.01) 100%);
  --grad-secondary-hover: linear-gradient(90deg, rgba(255, 56, 0, 0.06) 0%, rgba(255, 130, 28, 0.06) 100%);

  /* Black & white / graphite scale */
  --graphite-50:  #ffffff;
  --graphite-100: #f5f7fa;
  --graphite-150: #e7ebf1;
  --graphite-200: #d5dae2;
  --graphite-250: #bac2cf;
  --graphite-300: #9ca5b5;
  --graphite-350: #7d8797;
  --graphite-400: #697486;
  --graphite-450: #566171;
  --graphite-550: #353d49;
  --graphite-700: #20252d;
  --graphite-800: #171a20;
  --graphite-750: #1b1f26;
  --graphite-850: #13161b;
  --graphite-900: #0f1115;
  --graphite-950: #090a0d;

  /* Effects */
  --shadow-btn-primary: 0 4px 28px rgba(255, 56, 0, 0.24);
  --shadow-btn-primary-hover: 0 6px 32px rgba(255, 56, 0, 0.34);
  --shadow-btn-secondary: 0 4px 12px rgba(255, 56, 0, 0.06);
  --shadow-mega: 0 4px 32px rgba(0, 0, 0, 0.12);
  --shadow-card: 0 4px 8px rgba(0, 0, 0, 0.02);
  --header-bg-scrolled: rgba(9, 10, 13, 0.78);
  --menu-overlay-bg: rgba(9, 10, 13, 0.96);

  /* Radii */
  --r-16: 16px;
  --r-20: 20px;
  --r-40: 40px;

  /* Layout */
  --header-h: 96px;
  --header-h-mobile: 80px;
  --side-pad: 24px;
  --side-pad-mobile: 16px;

  /* Type */
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-display: 'Anton', sans-serif;

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- Base ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.4;
  color: var(--graphite-900);
  background: var(--graphite-50);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.no-scroll {
  overflow: hidden;
}

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

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

button {
  font-family: inherit;
  background: none;
  border: 0;
  cursor: pointer;
  color: inherit;
}

/* ---------- Icons ---------- */
.icn {
  position: relative;
  display: inline-flex;
  flex: 0 0 auto;
}

.icn img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.icn-16 { width: 16px; height: 16px; }
.icn-18 { width: 18px; height: 18px; }
.icn-20 { width: 20px; height: 20px; }
.icn-24 { width: 24px; height: 24px; }

/* Phone glyph is drawn mirrored in the source file */
.icn-flip img {
  transform: scaleX(-1);
}

/* Car-lockout icon = two vector fragments with exact Figma placement */
.icn-lockout img {
  position: absolute;
  object-fit: fill;
}

.icn-lockout .icn-lockout__body {
  left: 8.33%;
  top: 0;
  width: 83.34%;
  height: 100%;
}

.icn-lockout .icn-lockout__bar {
  left: 45.83%;
  top: 58.33%;
  width: 8.34%;
  height: 16.67%;
}

/* Location pin icon = two vector fragments with exact Figma placement */
.icn-pin img {
  position: absolute;
  object-fit: fill;
}

.icn-pin .icn-pin__outline {
  left: 8.1%;
  top: 0;
  width: 83.8%;
  height: 100%;
}

.icn-pin .icn-pin__dot {
  left: 33.33%;
  top: 25%;
  width: 33.34%;
  height: 33.33%;
}

/* Clock icon = separate ring and hands, shared by contact and about pages. */
.icn-clock {
  position: relative;
}

.icn-clock img {
  position: absolute;
}

.icn-clock .icn-clock__face {
  inset: 0;
  width: 100%;
  height: 100%;
}

.icn-clock .icn-clock__hands {
  left: 29.82%;
  top: 25%;
  width: 24.35%;
  height: 38.71%;
}

/* Breadcrumb chevron — vertical glyph rotated to point right */
.icn-chev-right {
  display: grid;
  place-items: center;
}

.icn-chev-right img {
  width: auto;
  height: 62.5%;
  transform: rotate(-90deg) scaleX(-1);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 52px;
  padding: 16px 24px;
  border-radius: var(--r-40);
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.16px;
  white-space: nowrap;
  transition: box-shadow 0.25s var(--ease), background 0.25s var(--ease), transform 0.25s var(--ease);
}

.btn-primary {
  background: var(--grad-primary);
  color: var(--graphite-50);
  box-shadow: var(--shadow-btn-primary);
}

.btn-primary:hover {
  box-shadow: var(--shadow-btn-primary-hover);
  transform: translateY(-1px);
}

.btn-secondary {
  background: var(--grad-secondary);
  border: 1px solid var(--primary-1);
  color: var(--graphite-950);
  box-shadow: var(--shadow-btn-secondary);
}

.btn-secondary:hover {
  background: var(--grad-secondary-hover);
}

.btn-outline-light {
  background: var(--grad-secondary);
  border: 1px solid var(--primary-1);
  color: var(--graphite-50);
  box-shadow: var(--shadow-btn-primary);
}

.btn-outline-light:hover {
  background: var(--grad-secondary-hover);
}

.btn--48 {
  height: 48px;
  padding: 12px 20px;
}

.btn-icon-48 {
  width: 48px;
  height: 48px;
  padding: 0;
}

.btn-block {
  width: 100%;
}

/* ---------- Logo (cropped raster, placement from Figma) ---------- */
.logo {
  position: relative;
  display: block;
  width: 210px;
  height: 56px;
  overflow: hidden;
  flex: 0 0 auto;
}

.logo img {
  position: absolute;
  width: 111.11%;
  height: 277.78%;
  left: -11.11%;
  top: -73.26%;
  max-width: none;
}

/* ---------- Section headings ---------- */
.eyebrow {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.32px;
  text-transform: uppercase;
  color: var(--primary-1);
}

.sec-head {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sec-head__text {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sec-title {
  font-size: 44px;
  font-weight: 600;
  line-height: 50px;
  color: var(--graphite-900);
}

.sec-sub {
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  color: var(--graphite-700);
}

@media (max-width: 1023.98px) {
  .eyebrow {
    font-size: 14px;
    letter-spacing: 0.28px;
  }

  .sec-title {
    font-size: 32px;
    line-height: 38px;
  }
}

/* ---------- Responsive visibility utilities ---------- */
@media (min-width: 1024px) {
  .only-mobile { display: none !important; }
}

@media (max-width: 1023.98px) {
  .only-desktop { display: none !important; }
}

/* ==========================================================================
   HEADER
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  transition: background 0.3s var(--ease);
}

.site-header.is-scrolled,
.site-header.mega-open {
  background: var(--header-bg-scrolled);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px var(--side-pad);
}

.header-content {
  display: flex;
  align-items: center;
  gap: 60px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-item {
  display: flex;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.16px;
  color: var(--graphite-50);
  transition: opacity 0.2s var(--ease);
}

.nav-link:hover {
  opacity: 0.8;
}

.nav-item.is-open .nav-link {
  opacity: 0.8;
}

.nav-link:focus-visible {
  outline: 2px solid var(--primary-2);
  outline-offset: 6px;
  border-radius: 4px;
}

.nav-chev {
  width: 10px;
  height: 5px;
}

.nav-chev img {
  transition: transform 0.25s var(--ease);
}

.nav-item.is-open .nav-chev img {
  transform: rotate(180deg);
}

.header-mobile-actions {
  display: none;
  align-items: center;
  gap: 20px;
}

.menu-toggle {
  position: relative;
  width: 24px;
  height: 24px;
}

.menu-toggle svg {
  display: block;
  width: 24px;
  height: 24px;
}

.menu-toggle img {
  position: absolute;
  left: 0;
  width: 100%;
  height: 8.33%;
}

.menu-toggle img:nth-child(1) { top: 16.67%; }
.menu-toggle img:nth-child(2) { top: 45.83%; }
.menu-toggle img:nth-child(3) { top: 75%; }

/* ==========================================================================
   MEGA MENUS
   ========================================================================== */
.mega {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  padding: 8px var(--side-pad) 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  pointer-events: none;
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease), visibility 0.25s;
}

.mega.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.mega-card {
  background: var(--graphite-50);
  border-radius: var(--r-20);
  box-shadow: var(--shadow-mega);
  padding: 20px;
}

/* Shared list styles (services + about) */
.mega-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1 1 0;
  min-width: 0;
  max-width: 328px;
}

.mega-col__title {
  padding-left: 10px;
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  text-transform: uppercase;
  color: var(--graphite-900);
}

.mega-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mega-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px 8px 10px;
  border-radius: var(--r-40);
  transition: background 0.2s var(--ease);
}

.mega-item:hover,
.mega-item:focus-visible {
  background: #f4f6f9;
}

.mega-item:focus-visible {
  outline: 2px solid var(--primary-1);
  outline-offset: 2px;
}

.mega-item__icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  flex: 0 0 auto;
  border: 1px solid var(--primary-1);
  border-radius: var(--r-40);
  background: var(--grad-secondary);
  box-shadow: var(--shadow-btn-secondary);
}

.mega-item__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.mega-item__name {
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
  color: var(--graphite-900);
}

.mega-item__desc {
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
  color: var(--graphite-450);
}

/* Services panel (full width) */
.mega-services {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.mega-services__img {
  width: 304px;
  height: 434px;
  border-radius: var(--r-16);
  object-fit: cover;
  flex: 0 0 auto;
}

.mega-services__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 36px;
  padding: 8px 0;
  width: 100%;
  max-width: 1024px;
}

.mega-cols {
  display: flex;
  gap: 20px;
}

.mega-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.mega-cta__text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-left: 10px;
  max-width: 640px;
}

.mega-cta__title {
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
  color: var(--graphite-900);
}

.mega-cta__desc {
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  color: var(--graphite-450);
}

/* About panel (anchored under its nav item, positioned by JS) */
.mega--about {
  left: auto;
  right: auto;
  width: max-content;
  padding-left: 0;
  padding-right: 0;
}

.mega-about {
  display: flex;
  gap: 24px;
}

.mega-about__img {
  width: 304px;
  height: 270px;
  border-radius: var(--r-16);
  object-fit: cover;
  flex: 0 0 auto;
}

.mega-about__col {
  flex: 0 0 auto;
  width: 328px;
  max-width: none;
  justify-content: center;
  padding: 8px 0;
}

/* ==========================================================================
   MOBILE MENU OVERLAY
   ========================================================================== */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 1100;
  background: var(--menu-overlay-bg);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s var(--ease), visibility 0.3s;
}

.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu__bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-h-mobile);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  background: var(--header-bg-scrolled);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.menu-close {
  width: 24px;
  height: 24px;
}

.mobile-menu__scroll {
  position: absolute;
  top: var(--header-h-mobile);
  bottom: 96px;
  left: 0;
  right: 0;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 8px 16px 24px;
}

/* Accordions */
.mm-acc {
  border-bottom: 1px solid var(--graphite-750);
}

.mm-acc__toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
  color: var(--graphite-50);
  text-align: left;
  min-height: 64px;
  padding: 20px 0;
  transition: color 0.25s var(--ease);
}

.mm-acc__chev {
  width: 10px;
  height: 5px;
}

.mm-acc.is-open .mm-acc__toggle {
  color: var(--primary-1);
}

.mm-acc__chev .chev-open { display: none; }
.mm-acc.is-open .mm-acc__chev .chev-closed { display: none; }
.mm-acc.is-open .mm-acc__chev .chev-open { display: block; }

.mm-acc__panel {
  display: grid;
  grid-template-rows: 0fr;
  visibility: hidden;
  pointer-events: none;
  transition: grid-template-rows 0.3s var(--ease), visibility 0s linear 0.3s;
}

.mm-acc.is-open .mm-acc__panel {
  grid-template-rows: 1fr;
  visibility: visible;
  pointer-events: auto;
  transition-delay: 0s;
}

.mm-acc__panel-inner {
  overflow: hidden;
  min-height: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 0;
  transition: padding-bottom 0.3s var(--ease);
}

.mm-acc.is-open .mm-acc__panel-inner {
  padding-bottom: 20px;
}

.mm-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  color: var(--graphite-150);
}

.mm-item::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary-1);
  flex: 0 0 auto;
}

.mm-viewall {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 16px;
  font-weight: 500;
  color: var(--primary-1);
}

.mm-viewall .icn {
  width: 14px;
  height: 12px;
}

.mm-link {
  display: block;
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
  color: var(--graphite-50);
  border-bottom: 1px solid var(--graphite-750);
  min-height: 64px;
  padding: 20px 0;
}

.mobile-menu__cta {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--graphite-850);
  padding: 24px 16px;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (min-width: 1024px) {
  .mobile-menu {
    display: none;
  }
}

@media (max-width: 1023.98px) {
  .header-content,
  .mega {
    display: none;
  }

  .header-mobile-actions {
    display: flex;
  }

  .header-inner {
    padding: 16px;
  }

  .logo,
  .logo--mobile {
    width: 170px;
    height: 45.33px;
  }
}

/* ==========================================================================
   SHARED: BLOG CARDS (homepage + archive)
   ========================================================================== */
.blog__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.blog-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
}

/* [hidden] guard: author display:flex above would otherwise defeat the
   blog filter/search toggling card.hidden (blog.js). */
.blog-card[hidden] {
  display: none;
}

.blog-card__img {
  position: relative;
  display: block;
  height: 260px;
  border-radius: var(--r-16);
  overflow: hidden;
}

.blog-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s var(--ease);
}

.blog-card__btn {
  position: absolute;
  top: 20px;
  right: 20px;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: var(--r-40);
  background: var(--grad-primary);
  box-shadow: var(--shadow-btn-primary);
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
}

.blog-card:hover .blog-card__btn,
.blog-card:focus-visible .blog-card__btn {
  opacity: 1;
  transform: translateY(0);
}

.blog-card:hover .blog-card__img > img,
.blog-card:focus-visible .blog-card__img > img {
  transform: scale(1.02);
}

.blog-card__btn .icn {
  width: 16px;
  height: 16px;
}

.blog-card:focus-visible {
  outline: 2px solid var(--primary-1);
  outline-offset: 4px;
  border-radius: var(--r-16);
}

.blog-card__date {
  font-size: 14px;
  line-height: 19px;
  color: var(--graphite-450);
}

.blog-card__text {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.blog-card__title {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 24px;
  font-weight: 600;
  line-height: 28px;
  color: var(--graphite-900);
}

.blog-card__desc {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 16px;
  line-height: 22px;
  color: var(--graphite-700);
}

@media (max-width: 1023.98px) {
  .blog__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .blog-card__img {
    height: 210px;
  }

  .blog-card__title {
    font-size: 20px;
    line-height: 24px;
  }
}

/* ==========================================================================
   SHARED: Rankings strip (contact + service pages)
   ========================================================================== */
/* Rankings */
.ranks {
  padding: 72px var(--side-pad);
}

.ranks__card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 44px;
  background: var(--graphite-50);
  border: 1px solid var(--graphite-150);
  border-radius: var(--r-16);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}

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

.ranks__num {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 400;
  line-height: 52px;
  letter-spacing: 0.72px;
  color: var(--primary-2);
}

.ranks__text {
  display: flex;
  flex-direction: column;
}

.ranks__label {
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
  color: var(--graphite-850);
}

.ranks__sub {
  font-size: 14px;
  line-height: 19px;
  color: var(--graphite-550);
}

.ranks__line {
  position: relative;
  width: 1px;
  height: 51px;
  flex: none;
}

.ranks__line img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 51px;
  height: 1px;
  transform: translate(-50%, -50%) rotate(90deg);
}

@media (max-width: 1023.98px) {
  .ranks {
    padding: 72px var(--side-pad-mobile);
  }

  .ranks__card {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 24px;
  }

  .ranks__line {
    width: 100%;
    height: 1px;
  }

  .ranks__line img {
    width: 100%;
    transform: translate(-50%, -50%);
  }
}

/* ==========================================================================
   SHARED: How it works (homepage + service pages)
   ========================================================================== */
/* ---------- How it works section ---------- */
.hiw {
  display: flex;
  flex-direction: column;
  gap: 36px;
  padding: 72px var(--side-pad) 144px;
}

.hiw__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.hiw__head .sec-head {
  max-width: 650px;
}

.hiw__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}

.hiw__media {
  position: relative;
  flex: 0 1 650px;
  min-width: 0;
  aspect-ratio: 650 / 426;
  border-radius: var(--r-16);
  overflow: hidden;
}

.hiw__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.2s var(--ease);
}

.hiw__dashes {
  position: absolute;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  display: flex;
  gap: 20px;
}

.hiw-dash {
  position: relative;
  width: 10.667px;
  height: 8px;
}

@media (min-width: 1024px) {
  .hiw__content {
    align-items: flex-start;
  }

  .hiw__media {
    position: sticky;
    top: 128px;
  }
}

.hiw-dash img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transition: opacity 0.25s var(--ease);
}

.hiw-dash__on { opacity: 0; }
.hiw-dash.is-active .hiw-dash__on { opacity: 1; }
.hiw-dash.is-active .hiw-dash__off { opacity: 0; }

.hiw__steps {
  flex: 0 1 678px;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hiw-step {
  display: flex;
  align-items: stretch;
  gap: 20px;
  width: 100%;
  padding: 0;
  text-align: left;
  cursor: pointer;
  transition: opacity 0.25s var(--ease);
}

.hiw-step:not(.is-active) {
  opacity: 0.72;
}

.hiw-step:hover,
.hiw-step:focus-visible,
.hiw-step.is-active {
  opacity: 1;
}

.hiw-step:focus-visible {
  outline: 2px solid var(--primary-1);
  outline-offset: 6px;
  border-radius: 4px;
}

.hiw-step__rail {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 8px;
  flex: 0 0 auto;
  padding-top: 12px;
}

.hiw-step__dot {
  width: 8px;
  height: 8px;
}

.hiw-step__line {
  flex: 1;
  min-height: 0;
  width: 2px;
  object-fit: fill;
}

.hiw-step__body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.hiw-step__pill {
  padding: 4px 12px;
  border-radius: 12px;
  background: var(--graphite-150);
  font-size: 16px;
  font-weight: 600;
  line-height: 23px;
  color: var(--graphite-700);
  transition: box-shadow 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease);
}

.hiw-step.is-active .hiw-step__pill {
  background: var(--grad-primary);
  color: var(--graphite-50);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
}

.hiw-step__info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hiw-step__title {
  font-size: 24px;
  font-weight: 600;
  line-height: 28px;
  color: var(--graphite-900);
}

.hiw-step__desc {
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  color: var(--graphite-700);
}

@media (max-width: 1023.98px) {
  .hiw {
    gap: 24px;
    padding: 72px var(--side-pad-mobile) 144px;
  }

  .hiw__head {
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
  }

  .hiw__call {
    width: 100%;
    height: 48px;
    padding: 12px 20px;
  }

  .hiw__content {
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
  }

  .hiw__media {
    flex: 0 0 auto;
    aspect-ratio: auto;
    height: 220px;
  }

  .hiw__dashes {
    bottom: 16px;
  }

  .hiw__steps {
    flex: 0 0 auto;
    gap: 20px;
  }

  .hiw-step__title {
    font-size: 20px;
    line-height: 24px;
  }
}

/* ==========================================================================
   SHARED: Service archive cards (services archive + related services)
   ========================================================================== */
/* Card */
.svc-arch-card {
  display: flex;
  flex-direction: column;
  background: var(--graphite-50);
  border: 1px solid var(--graphite-150);
  border-radius: var(--r-16);
  filter: drop-shadow(0 4px 4px rgba(0, 0, 0, 0.02));
  overflow: hidden;
  transition: border-color 0.25s var(--ease), filter 0.25s var(--ease), transform 0.25s var(--ease);
}

/* [hidden] guard: author display:flex above would otherwise defeat the
   services filter/search toggling card.hidden (services.js). */
.svc-arch-card[hidden] {
  display: none;
}

.svc-arch-card:hover,
.svc-arch-card:focus-visible {
  border-color: var(--primary-1);
  filter: drop-shadow(0 8px 12px rgba(0, 0, 0, 0.06));
  transform: translateY(-2px);
}

.svc-arch-card:focus-visible {
  outline: 2px solid var(--primary-1);
  outline-offset: 3px;
}

.svc-arch-card__media {
  position: relative;
  display: block;
  height: 210px;
}

.svc-arch-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.svc-arch-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.32) 100%);
}

.svc-arch-card__body {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 24px;
}

.svc-arch-card__text {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1 1 0;
  min-width: 0;
}

.svc-arch-card__title {
  font-size: 24px;
  font-weight: 600;
  line-height: 28px;
  color: var(--graphite-950);
}

.svc-arch-card__desc {
  font-size: 14px;
  line-height: 19px;
  color: var(--graphite-450);
}

.svc-arch-card__btn {
  display: grid;
  place-items: center;
  flex: none;
  width: 40px;
  height: 40px;
  border: 1px solid var(--primary-1);
  border-radius: var(--r-40);
  background: var(--grad-secondary);
  box-shadow: 0 4px 12px rgba(255, 56, 0, 0.06);
  transition: background 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.svc-arch-card__btn .icn {
  width: 10px;
  height: 10px;
}

.svc-arch-card__btn .icn img {
  transform: rotate(45deg);
  transition: transform 0.25s var(--ease);
}

.svc-arch-card:hover .svc-arch-card__btn,
.svc-arch-card:focus-visible .svc-arch-card__btn {
  background: var(--grad-secondary-hover);
  box-shadow: 0 6px 18px rgba(255, 56, 0, 0.14);
}

.svc-arch-card:hover .svc-arch-card__btn .icn img,
.svc-arch-card:focus-visible .svc-arch-card__btn .icn img {
  transform: rotate(0deg);
}

@media (max-width: 1023.98px) {
  .svc-arch-card__media {
    height: 160px;
  }

  .svc-arch-card__body {
    padding: 20px;
  }

  .svc-arch-card__title {
    font-size: 20px;
    line-height: 24px;
  }

  .svc-arch-card__btn {
    width: 40px;
    height: 40px;
  }

  .svc-arch-card__btn .icn {
    width: 10px;
    height: 10px;
  }
}

/* ==========================================================================
   SHARED: Hero search + filter chips (blog + services)
   ========================================================================== */
/* Hero search */
.hero-search {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-search__field {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 440px;
  height: 52px;
  padding: 12px 16px;
  border: 1px solid var(--graphite-200);
  border-radius: 32px;
  cursor: text;
}

.hero-search__field input {
  flex: 1;
  min-width: 0;
  background: none;
  border: 0;
  outline: none;
  font-family: var(--font);
  font-size: 16px;
  line-height: 22px;
  color: var(--graphite-50);
}

.hero-search__field input::placeholder {
  color: var(--graphite-400);
}

.hero-search__btn {
  height: 52px;
  padding: 16px 24px;
  border-radius: var(--r-40);
  background: var(--graphite-250);
  font-size: 16px;
  font-weight: 500;
  color: var(--graphite-100);
  transition: background 0.25s var(--ease), box-shadow 0.25s var(--ease), color 0.25s var(--ease);
}

.hero-search__btn.is-ready {
  background: var(--grad-primary);
  color: var(--graphite-50);
  box-shadow: var(--shadow-btn-primary);
}

/* Archive layout */
.blog-archive {
  display: flex;
  flex-direction: column;
  gap: 36px;
  padding: 72px var(--side-pad) 144px;
}

/* Filter chips */
.chips-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip {
  padding: 8px 20px;
  border: 1px solid var(--graphite-250);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.02);
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
  color: var(--graphite-700);
  white-space: nowrap;
  transition: background 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease);
}

.chip:hover {
  border-color: var(--primary-1);
}

.chip.is-active {
  background: var(--grad-primary-shade);
  border-color: transparent;
  color: var(--graphite-50);
}

@media (max-width: 1023.98px) {
  .hero-search {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .hero-search__field {
    width: 100%;
    height: 48px;
  }

  .hero-search__btn {
    height: 48px;
    padding: 12px 20px;
  }
}

/* ==========================================================================
   SHARED: Dark situation/coverage cards (service + single area)
   ========================================================================== */
/* --- Common situations --- */
.situations {
  background: var(--graphite-950);
  display: flex;
  flex-direction: column;
  gap: 36px;
  padding: 72px var(--side-pad);
}

.situations__head {
  align-self: center;
}

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

.sit-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: var(--graphite-850);
  border: 1px solid var(--graphite-700);
  border-radius: var(--r-16);
}

.sit-card__icn {
  display: grid;
  place-items: center;
  flex: none;
  width: 52px;
  height: 52px;
  border: 1px solid var(--primary-1);
  border-radius: var(--r-40);
  background: var(--grad-secondary);
  box-shadow: 0 4px 28px rgba(255, 56, 0, 0.24);
}

.sit-card__icn > img,
.sit-card__icn .icn-car,
.sit-card__icn .icn-trans {
  width: 20px;
  height: 20px;
}

.sit-card__icn .icn-car {
  position: relative;
  display: block;
}

.sit-card__icn .icn-trans {
  position: relative;
  display: block;
}

.icn-trans__box {
  position: absolute;
  inset: 33.33%;
  width: auto;
  height: auto;
}

.icn-trans__gear {
  position: absolute;
  inset: 0 5%;
  width: auto;
  height: auto;
}

.sit-card__title {
  font-size: 18px;
  font-weight: 500;
  line-height: 22px;
  color: var(--graphite-50);
}

.sec-head--center {
  align-items: center;
  text-align: center;
}

.sec-head--center .sec-head__text {
  align-items: center;
}

.situations .sec-title {
  color: var(--graphite-50);
}

.situations .sec-sub {
  color: var(--graphite-250);
}

@media (max-width: 1023.98px) {
  .situations {
    gap: 24px;
    padding: 72px var(--side-pad-mobile);
  }

  .situations__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .sit-card__icn {
    width: 48px;
    height: 48px;
  }

  .sit-card__icn > img,
  .sit-card__icn .icn-car,
  .sit-card__icn .icn-trans {
    width: 16px;
    height: 16px;
  }
}

/* ==========================================================================
   SHARED: Hubs map + location cards (contact + areas we serve)
   ========================================================================== */
/* Hubs / map */
.hubs {
  display: flex;
  flex-direction: column;
  gap: 36px;
  padding: 72px var(--side-pad);
}

.hubs > .sec-head {
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.hubs > .sec-head .sec-head__text-wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 650px;
}

.hubs > .sec-head > .btn {
  flex: 0 0 auto;
  width: auto;
}

.hubs > .sec-head > .btn .icn,
.hubs > .btn .icn {
  width: 14px;
  height: 12px;
}

.hubs__body {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
}

.hubs__cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 0 0 360px;
}

.loc-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  padding: 16px;
  background: var(--graphite-50);
  border: 1px solid var(--graphite-150);
  border-radius: var(--r-16);
  text-align: left;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.loc-card.is-active {
  border-color: var(--primary-1);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
}

.loc-card__hub {
  display: flex;
  align-items: center;
  gap: 8px;
}

.loc-card__pin--orange { display: none; }
.loc-card.is-active .loc-card__pin--orange { display: block; }
.loc-card.is-active .loc-card__pin--gray { display: none; }

.loc-card__hub-text {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  font-weight: 500;
  color: var(--graphite-450);
}

.loc-card.is-active .loc-card__hub-text {
  color: var(--primary-1);
}

.loc-card__dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: currentColor;
}

.loc-card__addr {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.loc-card__title {
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
  color: var(--graphite-750);
}

.loc-card.is-active .loc-card__title {
  color: var(--graphite-850);
}

.loc-card__sub {
  font-size: 16px;
  line-height: 22px;
  color: var(--graphite-400);
}

.loc-card.is-active .loc-card__sub {
  color: var(--graphite-700);
}

.hubs__map {
  position: relative;
  flex: 0 1 992px;
  min-width: 0;
  height: 400px;
  border-radius: var(--r-16);
  overflow: hidden;
}

.hubs__map-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hubs__marker {
  position: absolute;
  left: 30.2%;
  top: 48.6%;
  width: 27px;
  height: 41px;
}

.hubs__marker img { position: absolute; }
.hubs__marker-shadow { left: 11.11%; right: 11.11%; top: 72.07%; bottom: 2.32%; width: 77.78%; height: 25.61%; }
.hubs__marker-pin  { inset: 0 0 14.02% 0; width: 100%; height: 85.98%; }
.hubs__marker-pin2 { inset: 0 0 14% 0; width: 100%; height: 86%; }
.hubs__marker-dot  { left: 29.63%; top: 19.51%; width: 40.74%; height: 26.83%; }

@media (max-width: 1023.98px) {
  .hubs {
    gap: 24px;
    padding: 72px var(--side-pad-mobile);
  }

  .hubs > .sec-head {
    flex-direction: column;
    align-items: stretch;
  }

  .hubs__body {
    flex-direction: column;
    gap: 24px;
  }

  .hubs__cards {
    flex: none;
    width: 100%;
    gap: 8px;
  }

  .loc-card {
    gap: 16px;
  }

  .loc-card__addr {
    gap: 2px;
  }

  .loc-card__sub {
    font-size: 14px;
    line-height: 19px;
  }

  .hubs__map {
    flex: none;
    width: 100%;
    height: 400px;
  }
}

/* ==========================================================================
   SHARED: Areas we serve (homepage + about)
   ========================================================================== */
/* ---------- Areas we serve section ---------- */
.areas {
  display: flex;
  align-items: center;
  gap: 35px;
  padding-left: var(--side-pad);
  background: var(--graphite-950);
  overflow: hidden;
}

.areas__content {
  flex: 0 1 650px;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  padding: 72px 0;
}

.areas .sec-title {
  color: var(--graphite-50);
}

.areas .sec-sub {
  color: var(--graphite-150);
}

.areas__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.area-chip {
  padding: 8px 20px;
  border: 1px solid var(--graphite-400);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.02);
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
  color: var(--graphite-150);
  white-space: nowrap;
}

.areas__map {
  position: relative;
  flex: 1 1 0;
  min-width: 0;
  align-self: stretch;
  min-height: 557px;
}

.areas__map img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.areas__map-fade {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 61% 134% at 53% 50%, rgba(9, 10, 13, 0) 0%, rgba(9, 10, 13, 1) 100%);
}

@media (max-width: 1023.98px) {
  .areas {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding: 0 var(--side-pad-mobile);
  }

  .areas__content {
    flex: 0 0 auto;
    padding: 72px 0 32px;
  }

  .areas__btn {
    width: 100%;
    height: 48px;
    padding: 12px 20px;
  }

  .areas__map {
    flex: 0 0 auto;
    align-self: auto;
    width: 100%;
    min-height: 0;
    aspect-ratio: 731 / 557;
  }

  .areas__map-fade {
    background: radial-gradient(ellipse 79% 62% at 53.5% 47%, rgba(9, 10, 13, 0) 0%, rgba(9, 10, 13, 1) 100%);
  }
}

/* ==========================================================================
   SHARED: Reviews head + cards (homepage slider + about static)
   ========================================================================== */
/* ---------- Reviews section ---------- */
.rev {
  display: flex;
  flex-direction: column;
  gap: 36px;
  padding: 72px var(--side-pad);
  background: var(--graphite-950);
}

.rev .sec-title {
  max-width: 650px;
  color: var(--graphite-50);
}

.rev .sec-sub {
  max-width: 650px;
  color: var(--graphite-150);
}

.rev__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.rev__intro {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
}

.rev__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.rev__people {
  display: flex;
  align-items: center;
  gap: 16px;
}

.rev__stars {
  display: flex;
}

.rev__stars img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.rev__score {
  font-size: 18px;
  font-weight: 600;
  line-height: 22px;
  color: var(--graphite-50);
}

.rev__avatars {
  display: flex;
  align-items: center;
}

.rev__avatar,
.rev__more {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  flex: 0 0 auto;
}

.rev__avatar {
  object-fit: cover;
  object-position: 50% 25%;
}

.rev__avatar:not(:last-of-type),
.rev__avatars .rev__avatar {
  margin-right: -12px;
}

.rev__more {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  font-size: 14px;
  font-weight: 500;
  color: var(--graphite-50);
}

.rev__more img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rev__more {
  isolation: isolate;
}

.rev__more img { z-index: -1; }

.rev-card {
  flex: 0 0 calc((100% - 32px) / 3);
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
  min-height: 250px;
  padding: 24px;
  border: 1px solid var(--graphite-700);
  border-radius: var(--r-16);
  background: var(--graphite-850);
}

.rev-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.rev-card__stars {
  width: 118px;
  height: 22px;
  object-fit: contain;
}

.rev-card__date {
  font-size: 14px;
  line-height: 19px;
  color: var(--graphite-250);
  white-space: nowrap;
}

.rev-card__info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.rev-card__quote {
  font-size: 16px;
  line-height: 22px;
  color: var(--graphite-150);
}

.rev-card__author {
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
  color: var(--graphite-50);
}

@media (max-width: 1023.98px) {
  .rev {
    gap: 24px;
    padding: 72px var(--side-pad-mobile);
  }

  .rev__head {
    flex-direction: column;
    align-items: stretch;
  }

  .rev-card {
    flex-basis: 100%;
  }
}

/* ==========================================================================
   SHARED: FAQ (homepage + contact)
   ========================================================================== */
/* ---------- FAQ section ---------- */
.faq {
  display: flex;
  justify-content: center;
  padding: 144px var(--side-pad);
}

.faq__inner {
  width: 100%;
  max-width: 650px;
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.faq__head {
  text-align: center;
  align-items: center;
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  width: 100%;
  border-bottom: 1px solid var(--graphite-200);
  padding-bottom: 16px;
}

.faq-item__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  padding: 0;
  text-align: left;
}

.faq-item__q:focus-visible {
  outline: 2px solid var(--primary-1);
  outline-offset: 6px;
  border-radius: 4px;
}

.faq-item__text {
  flex: 1;
  min-width: 0;
  font-size: 18px;
  font-weight: 600;
  line-height: 22px;
  color: var(--graphite-800);
  transition: color 0.2s var(--ease);
}

.faq-item.is-open .faq-item__text {
  color: var(--graphite-900);
}

.faq-item__btn {
  position: relative;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  border: 1px solid var(--primary-1);
  border-radius: var(--r-40);
  background: var(--grad-secondary);
  box-shadow: var(--shadow-btn-secondary);
  transition: background 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
}

.faq-item.is-open .faq-item__btn {
  border-color: rgba(255, 56, 0, 0);
  background: var(--grad-primary);
  box-shadow: var(--shadow-btn-primary);
}

.faq-item__plus {
  position: absolute;
  width: 13px;
  height: 13px;
  object-fit: contain;
  transition: opacity 0.2s var(--ease);
}

.faq-item__minus {
  position: absolute;
  width: 10px;
  height: 2px;
  object-fit: contain;
  transition: opacity 0.2s var(--ease);
}

.faq-item__minus { opacity: 0; }
.faq-item.is-open .faq-item__minus { opacity: 1; }
.faq-item.is-open .faq-item__plus { opacity: 0; }

.faq-item__a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s var(--ease);
}

.faq-item.is-open .faq-item__a {
  grid-template-rows: 1fr;
}

.faq-item__a-inner {
  overflow: hidden;
  min-height: 0;
}

.faq-item__a-inner p {
  padding-top: 6px;
  padding-right: 56px;
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  color: var(--graphite-700);
}

@media (max-width: 1023.98px) {
  .faq {
    padding: 144px var(--side-pad-mobile);
  }

  .faq__inner {
    gap: 24px;
  }

  .faq-item__a-inner p {
    padding-right: 0;
  }
}

/* ==========================================================================
   PAGE HERO (inner pages)
   ========================================================================== */
.page-hero {
  position: relative;
  height: 580px;
  background: var(--graphite-850);
  overflow: hidden;
}

.page-hero__glow {
  position: absolute;
  top: -133px;
  right: -148px;
  width: 629px;
  height: 629px;
  pointer-events: none;
}

.page-hero__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding: 156px var(--side-pad) 52px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
}

.breadcrumb__home {
  display: inline-flex;
  transition: opacity 0.2s var(--ease);
}

.breadcrumb__home:hover {
  opacity: 0.8;
}

.breadcrumb__current,
.breadcrumb a {
  font-size: 14px;
  font-weight: 500;
  line-height: 19px;
  color: var(--graphite-200);
}

.breadcrumb a.breadcrumb__mid {
  color: var(--graphite-300);
  transition: color 0.2s var(--ease);
}

.breadcrumb a.breadcrumb__mid:hover {
  color: var(--graphite-200);
}

.breadcrumb__current {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.page-hero__head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  max-width: 750px;
}

.page-hero__title-wrap {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.page-hero__title {
  font-size: 72px;
  font-weight: 700;
  line-height: 78px;
  color: var(--graphite-50);
  text-shadow: 0 4px 32px rgba(255, 56, 0, 0.12), 0 4px 40px rgba(0, 0, 0, 0.32);
}

.page-hero__title span {
  color: var(--primary-2);
}

.page-hero__sub {
  max-width: 700px;
  font-size: 16px;
  line-height: 22px;
  color: var(--graphite-250);
}

.page-hero__meta {
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
  color: var(--graphite-150);
}

.page-hero--center .page-hero__glow {
  top: 96px;
  right: auto;
  left: 50%;
  transform: translateX(-50%);
  width: 1000px;
  height: 1000px;
}

.page-hero__head--center {
  align-items: center;
  align-self: center;
  text-align: center;
}

.page-hero__head--center .page-hero__title-wrap {
  align-items: center;
}

.page-hero__head--center .page-hero__sub {
  max-width: 600px;
}

@media (max-width: 1023.98px) {
  .page-hero__glow {
    top: 362px;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    width: 534px;
    height: 523px;
  }

  .page-hero--center .page-hero__glow {
    top: 232px;
    width: 534px;
    height: 523px;
  }

  .page-hero__inner {
    padding: 96px var(--side-pad-mobile) 40px;
  }

  .page-hero__title {
    font-size: 44px;
    font-weight: 600;
    line-height: 50px;
  }
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  display: flex;
  flex-direction: column;
  gap: 72px;
  padding: 48px var(--side-pad);
  background: var(--graphite-950);
}

/* CTA card */
.footer-cta {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  min-height: 218px;
  padding: 32px;
  border-radius: var(--r-16);
  background: var(--graphite-850);
  overflow: hidden;
}

.footer-cta__glow {
  position: absolute;
  top: -133px;
  right: -116px;
  width: 485px;
  height: 485px;
  pointer-events: none;
}

.footer-cta__text {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 650px;
}

.footer-cta__title {
  font-size: 44px;
  font-weight: 600;
  line-height: 50px;
  color: var(--graphite-50);
}

.footer-cta__title span {
  color: var(--primary-2);
}

.footer-cta__sub {
  font-size: 16px;
  line-height: 23px;
  letter-spacing: 0.16px;
  color: #b2b2b2;
}

.footer-cta__btn {
  position: relative;
  flex: 0 0 auto;
}

/* Main columns */
.footer-main {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.footer-main__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--graphite-750);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 400px;
}

.footer-brand p {
  font-size: 16px;
  line-height: 22px;
  color: var(--graphite-150);
}

.footer-links {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  flex: 0 1 848px;
  min-width: 0;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-col__title {
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
  text-transform: uppercase;
  color: var(--graphite-300);
}

.footer-col__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col__list a {
  font-size: 16px;
  font-weight: 500;
  color: var(--graphite-50);
  transition: color 0.2s var(--ease);
}

.footer-col__list a:hover,
.footer-viewall:hover {
  color: var(--primary-2);
}

.footer-col--services .footer-col__list {
  margin-bottom: 12px;
}

.footer-viewall {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 500;
  color: var(--graphite-50);
  transition: color 0.2s var(--ease);
}

.footer-viewall .icn {
  width: 14px;
  height: 12px;
}

@media (prefers-reduced-motion: reduce) {
  .mega,
  .mobile-menu,
  .mm-acc__panel,
  .blog-card__img img,
  .blog-card__btn,
  .hiw__photo,
  .hiw-step,
  .hiw-step__pill,
  .svc-arch-card,
  .svc-arch-card__btn .icn img,
  .faq-item__a {
    transition-duration: 0.01ms;
  }
}

.footer-col--contact {
  gap: 16px;
  max-width: 336px;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-contact__item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-contact__label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
  color: var(--graphite-200);
}

.footer-contact__value {
  padding-left: 24px;
  font-size: 16px;
  line-height: 22px;
  color: var(--graphite-50);
}

.footer-contact__value--phone {
  font-weight: 500;
  color: var(--primary-1);
}

/* Bottom bar */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-bottom__left {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 14px;
  line-height: 19px;
  color: var(--graphite-400);
}

.footer-credit a {
  font-weight: 500;
  color: var(--graphite-150);
  text-decoration: underline;
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 24px;
}

.footer-legal a {
  font-size: 14px;
  font-weight: 500;
  line-height: 19px;
  color: var(--graphite-200);
  transition: color 0.2s var(--ease);
}

.footer-legal a:hover {
  color: var(--primary-2);
}

.footer-legal__dot {
  width: 4px;
  height: 4px;
}

@media (max-width: 1023.98px) {
  .site-footer {
    padding: 48px 24px;
  }

  .footer-cta {
    flex-direction: column;
    align-items: stretch;
    gap: 72px;
    min-height: 360px;
    padding: 32px 16px;
  }

  .footer-cta__glow {
    top: 230px;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-cta__title {
    font-size: 32px;
    line-height: 38px;
  }

  .footer-cta__btn {
    width: 100%;
    height: 48px;
    padding: 12px 20px;
  }

  .footer-main__top {
    flex-direction: column;
    gap: 36px;
  }

  .footer-links {
    flex-direction: column;
    flex: 0 0 auto;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    text-align: center;
  }

  .footer-bottom__left {
    flex-direction: column;
    gap: 20px;
  }
}
