:root {
  color-scheme: dark;
  --bg: #050607;
  --bg-2: #090d0f;
  --panel: rgba(13, 17, 20, 0.78);
  --panel-strong: rgba(17, 22, 26, 0.92);
  --line: rgba(255, 255, 255, 0.14);
  --line-strong: rgba(229, 38, 38, 0.48);
  --text: #f6f7f8;
  --muted: #b7bdc4;
  --dim: #818a93;
  --red: #e52626;
  --red-2: #ff3838;
  --green: #29d86e;
  --steel: #aeb8c2;
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.46);
  --radius: 8px;
  --container: 1440px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 50% -10%, rgba(229, 38, 38, 0.12), transparent 34rem),
    linear-gradient(180deg, #060708 0%, #050607 44%, #080b0d 100%);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

svg {
  width: 1.25rem;
  height: 1.25rem;
  flex: 0 0 auto;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.container {
  width: min(100% - 48px, var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  inset: 12px auto auto 12px;
  z-index: 1000;
  padding: 10px 14px;
  transform: translateY(-180%);
  border-radius: var(--radius);
  background: var(--red);
  color: #fff;
  font-weight: 800;
  transition: transform 180ms ease;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  overflow: visible;
  isolation: isolate;
  border-bottom: 1px solid rgba(229, 38, 38, 0.28);
  background: rgba(5, 6, 7, 0.86);
  backdrop-filter: blur(18px);
  transition: background 180ms ease, box-shadow 180ms ease;
}

.site-header::after {
  content: "";
  position: absolute;
  left: max(24px, calc((100vw - var(--container)) / 2 + 24px));
  bottom: -17px;
  width: 300px;
  height: 38px;
  pointer-events: none;
  background: radial-gradient(ellipse at 22% 22%, rgba(255, 48, 48, 0.42), rgba(229, 38, 38, 0.16) 42%, transparent 73%);
  filter: blur(12px);
  opacity: 0.9;
  z-index: -1;
}

.site-header.is-scrolled {
  background: rgba(5, 6, 7, 0.95);
  box-shadow: 0 12px 38px rgba(0, 0, 0, 0.42);
}

.header-inner {
  position: relative;
  z-index: 1;
  min-height: 74px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}

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

.brand-logo {
  display: block;
  width: 292px;
  max-width: 100%;
  height: auto;
}

.site-header .brand {
  position: relative;
  z-index: 2;
}

.site-header .brand::before {
  content: "";
  position: absolute;
  left: 8px;
  right: 26px;
  bottom: -10px;
  height: 24px;
  pointer-events: none;
  background: radial-gradient(ellipse at 22% 10%, rgba(255, 40, 40, 0.5), rgba(229, 38, 38, 0.18) 46%, transparent 76%);
  filter: blur(10px);
  opacity: 0.9;
  z-index: -1;
}

.site-header .brand-logo {
  width: 318px;
  transform: translateY(5px);
  filter:
    drop-shadow(0 11px 11px rgba(0, 0, 0, 0.62))
    drop-shadow(0 0 18px rgba(229, 38, 38, 0.28));
    margin-bottom: -41px;
}

.primary-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 7px;
}

.primary-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  color: #d9dde1;
  font-size: 14px;
  font-weight: 700;
  border-radius: 7px;
  transition: color 160ms ease, background 160ms ease;
}

.primary-nav a::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 3px;
  height: 2px;
  border-radius: 99px;
  background: var(--red);
  opacity: 0;
  transform: scaleX(0.5);
  transition: opacity 160ms ease, transform 160ms ease;
}

.primary-nav a:hover,
.primary-nav a:focus-visible,
.primary-nav a.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
}

.primary-nav a.active::after {
  opacity: 1;
  transform: scaleX(1);
}

.header-call {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 47px;
  padding: 0 18px;
  border: 1px solid rgba(229, 38, 38, 0.55);
  border-radius: var(--radius);
  background: rgba(229, 38, 38, 0.1);
  color: #fff;
  font-weight: 900;
  white-space: nowrap;
  box-shadow: inset 0 0 22px rgba(229, 38, 38, 0.08);
  transition: background 160ms ease, transform 160ms ease, border-color 160ms ease;
}

.header-call svg {
  color: var(--red-2);
}

.header-call:hover,
.header-call:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(255, 56, 56, 0.9);
  background: rgba(229, 38, 38, 0.18);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  align-items: center;
  justify-content: center;
}

.nav-toggle svg + svg {
  display: none;
}

.hero {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background-image:
    linear-gradient(90deg, rgba(5, 6, 7, 0.98) 0%, rgba(5, 6, 7, 0.88) 31%, rgba(5, 6, 7, 0.38) 57%, rgba(5, 6, 7, 0.18) 100%),
    linear-gradient(180deg, rgba(5, 6, 7, 0.22), rgba(5, 6, 7, 0.9)),
    image-set(url("../images/hero-elevator-red.webp") type("image/webp"), url("../images/hero-elevator-red.png") type("image/png"));
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center right;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(229, 38, 38, 0.12), transparent 18%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.028) 0 1px, transparent 1px 240px);
  opacity: 0.68;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 28px;
  align-items: start;
  padding-top: 72px;
  padding-bottom: 34px;
}

.hero-content {
  width: min(760px, 100%);
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  color: var(--red-2);
  font-size: 14px;
  font-weight: 950;
  text-transform: uppercase;
}

.eyebrow span,
.section-kicker span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 6px rgba(229, 38, 38, 0.14);
}

.hero h1 {
  margin: 0;
  max-width: 810px;
  font-size: 64px;
  line-height: 1.04;
  font-weight: 950;
  letter-spacing: 0;
}

.hero h1 span {
  color: var(--red-2);
}

.hero-lede {
  margin: 26px 0 0;
  max-width: 760px;
  color: #fff;
  font-size: 22px;
  font-weight: 850;
}

.hero-copy {
  margin: 16px 0 0;
  max-width: 650px;
  color: #d4d9df;
  font-size: 17px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 56px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 950;
  color: #fff;
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.btn svg {
  width: 28px;
  height: 28px;
}

.btn span {
  display: grid;
  line-height: 1.15;
}

.btn small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 750;
}

.btn-primary {
  background: linear-gradient(135deg, var(--red), var(--red-2));
  box-shadow: 0 16px 36px rgba(229, 38, 38, 0.3);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 46px rgba(229, 38, 38, 0.42);
}

.btn-secondary,
.btn-outline {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(10, 14, 17, 0.78);
  box-shadow: inset 0 0 18px rgba(255, 255, 255, 0.03);
}

.btn-secondary svg {
  color: var(--green);
}

.btn-secondary:hover,
.btn-secondary:focus-visible,
.btn-outline:hover,
.btn-outline:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.08);
}

.hero-metrics {
  width: min(745px, 100%);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(9, 13, 15, 0.74);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
  overflow: hidden;
}

.hero-metrics div {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-areas: "icon strong" "icon span";
  align-items: center;
  gap: 0 11px;
  min-height: 76px;
  padding: 14px 18px;
  border-right: 1px solid var(--line);
}

.hero-metrics div:last-child {
  border-right: 0;
}

.hero-metrics svg {
  grid-area: icon;
  width: 31px;
  height: 31px;
  padding: 6px;
  border: 1px solid rgba(229, 38, 38, 0.45);
  border-radius: 50%;
  color: var(--red-2);
  background: rgba(229, 38, 38, 0.1);
}

.hero-metrics strong {
  grid-area: strong;
  font-size: 14px;
  line-height: 1.2;
}

.hero-metrics span {
  grid-area: span;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.3;
}

.quick-connect {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  background:
    radial-gradient(circle at 88% 8%, rgba(229, 38, 38, 0.18), transparent 32%),
    linear-gradient(145deg, rgba(12, 15, 18, 0.96), rgba(7, 8, 10, 0.94) 48%, rgba(20, 3, 6, 0.93));
  box-shadow: var(--shadow);
  backdrop-filter: blur(24px) saturate(135%);
  -webkit-backdrop-filter: blur(24px) saturate(135%);
}

.quick-connect-trigger {
  position: fixed;
  right: 14px;
  top: 50%;
  z-index: 190;
  width: 188px;
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 12px 20px;
  transform: translateY(-50%);
  border: 1px solid rgba(255, 56, 56, 0.72);
  border-radius: 999px;
  background:
    radial-gradient(circle at 20% 22%, rgba(255, 103, 103, 0.55), transparent 22%),
    linear-gradient(135deg, rgba(255, 56, 56, 0.96), rgba(126, 4, 10, 0.98));
  color: #fff;
  box-shadow:
    0 18px 42px rgba(0, 0, 0, 0.48),
    0 0 38px rgba(229, 38, 38, 0.56),
    0 0 86px rgba(229, 38, 38, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
  cursor: pointer;
  overflow: visible;
  isolation: isolate;
}

.quick-connect-trigger::before {
  content: "";
  position: absolute;
  inset: 6px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: inherit;
  pointer-events: none;
}

.quick-connect-trigger::after {
  content: "";
  position: absolute;
  inset: -18px -24px -18px -30px;
  z-index: -1;
  background: radial-gradient(ellipse at 62% 50%, rgba(255, 38, 38, 0.66), rgba(229, 38, 38, 0.28) 38%, transparent 70%);
  filter: blur(14px);
  animation: quickGlow 2.1s ease-in-out infinite;
}

.quick-connect-trigger svg {
  width: 27px;
  height: 27px;
  flex: 0 0 auto;
  filter: drop-shadow(0 0 10px rgba(255, 42, 42, 0.72));
}

.quick-connect-trigger > span:last-child {
  font-size: 13px;
  font-weight: 950;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
}

.trigger-pulse {
  position: absolute;
  left: -8px;
  top: 50%;
  width: 16px;
  height: 16px;
  transform: translateY(-50%);
  border-radius: 50%;
  background: var(--red-2);
  box-shadow:
    0 0 0 5px rgba(229, 38, 38, 0.26),
    0 0 24px rgba(255, 45, 45, 0.9),
    inset 0 0 6px rgba(255, 255, 255, 0.18);
  animation: quickPulse 1.2s ease-out infinite;
}

.quick-connect-trigger:hover,
.quick-connect-trigger:focus-visible {
  background:
    radial-gradient(circle at 20% 22%, rgba(255, 118, 118, 0.62), transparent 22%),
    linear-gradient(135deg, rgba(255, 68, 68, 1), rgba(148, 6, 12, 1));
  box-shadow:
    0 22px 54px rgba(0, 0, 0, 0.58),
    0 0 50px rgba(255, 56, 56, 0.7),
    0 0 104px rgba(229, 38, 38, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.quick-connect-backdrop {
  position: fixed;
  inset: 0;
  z-index: 180;
  pointer-events: none;
  background: rgba(0, 0, 0, 0.38);
  opacity: 0;
  transition: opacity 180ms ease;
}

.quick-connect-tray {
  position: fixed;
  top: 92px;
  right: 18px;
  bottom: 18px;
  z-index: 220;
  width: min(660px, calc(100vw - 48px));
  max-height: calc(100vh - 110px);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  align-content: start;
  overflow-y: auto;
  padding: 28px;
  opacity: 0;
  pointer-events: none;
  transform: translateX(calc(100% + 42px));
  transition: transform 220ms cubic-bezier(.2, .8, .2, 1), opacity 180ms ease;
  border-color: rgba(229, 38, 38, 0.46);
  background:
    radial-gradient(circle at 88% 8%, rgba(255, 50, 50, 0.2), transparent 28%),
    linear-gradient(145deg, rgba(9, 11, 14, 0.97), rgba(8, 8, 10, 0.94) 42%, rgba(25, 3, 7, 0.94));
  box-shadow:
    -24px 0 72px rgba(0, 0, 0, 0.58),
    0 0 64px rgba(229, 38, 38, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.quick-connect-tray::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background:
    radial-gradient(circle at 82% 8%, rgba(229, 38, 38, 0.18), transparent 34%),
    linear-gradient(90deg, rgba(229, 38, 38, 0.16), transparent 26%);
}

.quick-connect-tray > * {
  position: relative;
  z-index: 1;
}

.quick-connect-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  cursor: pointer;
}

.quick-connect-close:hover,
.quick-connect-close:focus-visible {
  border-color: rgba(255, 56, 56, 0.74);
  background: rgba(229, 38, 38, 0.18);
}

.quick-connect-close svg {
  width: 20px;
  height: 20px;
}

body.quick-connect-open .quick-connect-backdrop {
  opacity: 1;
  pointer-events: auto;
}

body.quick-connect-open .quick-connect-tray {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

body.quick-connect-open .quick-connect-trigger {
  transform: translateY(-50%) translateX(-666px);
}

@keyframes quickPulse {
  0% {
    transform: translateY(-50%) scale(0.75);
    opacity: 1;
  }
  70% {
    transform: translateY(-50%) scale(1.65);
    opacity: 0.08;
  }
  100% {
    transform: translateY(-50%) scale(1.75);
    opacity: 0;
  }
}

@keyframes quickGlow {
  0%, 100% {
    opacity: 0.55;
  }
  50% {
    opacity: 1;
  }
}

.panel-head {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  text-align: center;
}

.panel-head svg {
  width: 30px;
  height: 30px;
  color: var(--red-2);
}

.panel-head h2 {
  margin: 0;
  font-size: 18px;
  text-transform: uppercase;
}

.panel-head p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.qr-block {
  min-width: 0;
  margin-top: 0;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.qr-label {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 14px;
  font-weight: 900;
}

.qr-label svg {
  width: 29px;
  height: 29px;
  padding: 6px;
  border-radius: 6px;
  background: var(--red);
  color: #fff;
}

.qr-label.success svg {
  background: var(--green);
}

.qr-block img {
  width: min(210px, 100%);
  height: auto;
  margin: 15px auto 0;
  border-radius: 16px;
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.42));
}

.qr-block p {
  margin: 12px 0 0;
  color: var(--muted);
  text-align: center;
  font-size: 13px;
}

.qr-block a {
  color: #fff;
  font-weight: 950;
}

.emergency-card {
  grid-column: 1 / -1;
  display: grid;
  gap: 8px;
  margin-top: 0;
  padding: 18px;
  border: 1px solid rgba(229, 38, 38, 0.72);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(229, 38, 38, 0.2), rgba(229, 38, 38, 0.06));
}

.emergency-card span {
  color: var(--red-2);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.emergency-card strong {
  display: flex;
  align-items: center;
  gap: 10px;
}

.emergency-card small {
  color: #fff;
  font-weight: 850;
}

.status-section {
  padding: 34px 0 20px;
}

.status-panel {
  position: relative;
  min-height: 216px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(12, 17, 20, 0.86), rgba(7, 9, 11, 0.9));
  box-shadow: var(--shadow);
  padding: 28px;
}

.status-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(7, 9, 11, 0.96) 0%, rgba(7, 9, 11, 0.72) 38%, rgba(7, 9, 11, 0.24) 100%),
    url("../images/status-map-texture.webp");
  background-size: cover;
  background-position: center right;
  opacity: 0.92;
}

.status-panel > * {
  position: relative;
  z-index: 1;
}

.status-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(780px, 100%);
  margin-top: 22px;
}

.status-grid article {
  min-height: 95px;
  padding: 0 28px 0 0;
  margin-right: 28px;
  border-right: 1px solid var(--line);
}

.status-grid article:last-child {
  border-right: 0;
  margin-right: 0;
}

.status-grid strong {
  display: block;
  color: var(--red-2);
  font-size: 38px;
  line-height: 1;
  font-weight: 950;
  transition: text-shadow 180ms ease, transform 180ms ease;
}

.status-grid strong[data-live-count] {
  font-variant-numeric: tabular-nums;
}

.status-grid strong.is-live-changing {
  transform: translateY(-1px);
  text-shadow: 0 0 24px rgba(255, 56, 56, 0.72);
}

.status-grid span {
  display: block;
  margin-top: 8px;
  font-weight: 850;
}

.status-grid small {
  display: block;
  margin-top: 5px;
  color: var(--muted);
}

.service-locations {
  position: absolute;
  top: 50%;
  right: 40px;
  z-index: 1;
  margin: 0;
  padding: 0;
  transform: translateY(-50%);
  list-style: none;
  display: grid;
  gap: 10px;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.service-locations li {
  display: flex;
  align-items: center;
  gap: 9px;
}

.service-locations li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 5px rgba(229, 38, 38, 0.14);
}

.section {
  padding: 42px 0;
}

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

.section-heading h2,
.amc-copy h2 {
  margin: 0;
  color: #fff;
  font-size: 34px;
  line-height: 1.12;
  font-weight: 950;
  letter-spacing: 0;
}

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

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  color: #fff;
  font-weight: 900;
}

.text-link svg {
  width: 18px;
  height: 18px;
  padding: 2px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.09);
}

.process-grid,
.services-grid {
  display: grid;
  gap: 20px;
}

.process-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.services-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.process-card,
.service-card,
.price-card,
.industry-grid article {
  position: relative;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(17, 23, 27, 0.86), rgba(7, 9, 11, 0.88));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.process-card:hover,
.service-card:hover,
.price-card:hover,
.industry-grid article:hover {
  transform: translateY(-4px);
  border-color: rgba(229, 38, 38, 0.45);
  background: linear-gradient(180deg, rgba(21, 28, 32, 0.94), rgba(8, 11, 13, 0.95));
}

.process-card {
  min-height: 170px;
  padding: 24px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px 16px;
  align-items: start;
}

.process-card .card-icon {
  grid-row: span 3;
}

.card-icon {
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--red), #a30f15);
  box-shadow: 0 14px 28px rgba(229, 38, 38, 0.24);
  color: #fff;
}

.card-icon svg {
  width: 34px;
  height: 34px;
}

.process-card strong {
  color: #fff;
  font-size: 25px;
  line-height: 1;
}

.process-card h3,
.service-card h3,
.industry-grid h3 {
  margin: 0;
  font-size: 17px;
  line-height: 1.25;
}

.process-card p,
.service-card p,
.industry-grid p,
.amc-copy,
.price-card p,
.price-card li,
.footer-brand p {
  color: var(--muted);
}

.process-card p,
.service-card p,
.industry-grid p {
  margin: 0;
  font-size: 14px;
}

.service-card {
  min-height: 188px;
  padding: 24px;
  display: grid;
  align-content: start;
  justify-items: center;
  text-align: center;
  gap: 13px;
}

.services-section {
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.025), transparent);
}

.amc-wrap {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 32px;
  align-items: stretch;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(13, 17, 20, 0.82), rgba(8, 11, 13, 0.88));
  box-shadow: var(--shadow);
}

.amc-copy {
  align-self: center;
}

.check-list,
.price-card ul {
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.check-list li,
.price-card li {
  display: flex;
  gap: 9px;
  align-items: flex-start;
}

.check-list li::before,
.price-card li::before {
  content: "";
  width: 16px;
  height: 16px;
  margin-top: 3px;
  flex: 0 0 auto;
  border: 1px solid var(--red-2);
  border-radius: 50%;
  background:
    linear-gradient(135deg, transparent 42%, var(--red-2) 42% 58%, transparent 58%),
    linear-gradient(45deg, transparent 49%, var(--red-2) 49% 59%, transparent 59%);
}

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

.price-card {
  min-height: 318px;
  display: grid;
  align-content: start;
  padding: 30px 26px 22px;
}

.price-card h3 {
  margin: 0;
  font-size: 19px;
  text-transform: uppercase;
}

.price-card p {
  margin: 8px 0 0;
}

.price-card strong {
  display: block;
  margin-top: 24px;
  font-size: 31px;
  line-height: 1;
}

.price-card strong span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.price-card .btn {
  align-self: end;
  width: 100%;
  min-height: 50px;
  margin-top: 25px;
  padding: 0 16px;
}

.price-card.featured {
  border-color: rgba(255, 56, 56, 0.78);
  background:
    linear-gradient(180deg, rgba(34, 12, 14, 0.94), rgba(8, 11, 13, 0.96));
  box-shadow: 0 22px 62px rgba(229, 38, 38, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.plan-ribbon {
  position: absolute;
  left: -1px;
  right: -1px;
  top: -1px;
  min-height: 36px;
  display: grid;
  place-items: center;
  border-radius: 8px 8px 0 0;
  background: linear-gradient(90deg, var(--red), var(--red-2));
  color: #fff;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.price-card.featured h3 {
  margin-top: 31px;
}

.proof-strip {
  padding: 28px 0;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border: 1px solid rgba(229, 38, 38, 0.42);
  border-radius: var(--radius);
  background: linear-gradient(90deg, rgba(229, 38, 38, 0.12), rgba(15, 19, 23, 0.74), rgba(229, 38, 38, 0.08));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.proof-grid div {
  min-height: 116px;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-areas: "icon number" "icon label";
  align-items: center;
  gap: 0 14px;
  padding: 22px 28px;
  border-right: 1px solid var(--line);
}

.proof-grid div:last-child {
  border-right: 0;
}

.proof-grid svg {
  grid-area: icon;
  width: 45px;
  height: 45px;
  color: var(--red-2);
}

.proof-grid strong {
  grid-area: number;
  font-size: 27px;
  line-height: 1.1;
}

.proof-grid span {
  grid-area: label;
  color: var(--muted);
  font-size: 13px;
}

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

.industry-grid article {
  min-height: 118px;
  padding: 20px 16px;
  display: grid;
  align-content: start;
  gap: 8px;
}

.industry-grid svg {
  width: 34px;
  height: 34px;
  color: var(--steel);
}

.site-footer {
  margin-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(180deg, rgba(4, 5, 6, 0.95), #030405);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.7fr 0.85fr 1.2fr 0.7fr;
  gap: 34px;
  padding: 44px 0 34px;
}

.footer-grid h2 {
  margin: 0 0 15px;
  color: #fff;
  font-size: 16px;
}

.footer-grid nav,
.footer-grid address {
  display: grid;
  align-content: start;
  gap: 8px;
  font-style: normal;
}

.footer-grid a,
.footer-grid span {
  color: var(--muted);
  font-size: 14px;
}

.footer-grid a:hover,
.footer-grid a:focus-visible {
  color: #fff;
}

.footer-brand{
  text-align: center;
}

.footer-brand .brand {
  margin-bottom: 18px;
}

.footer-brand .brand-logo {
  width: 130px;
}

.footer-brand p {
  max-width: 310px;
  margin: 0;
  font-size: 14px;
}

address a,
address span {
  display: flex;
  align-items: flex-start;
  gap: 9px;
}

address svg {
  width: 18px;
  height: 18px;
  color: var(--red-2);
  margin-top: 2px;
}

.footer-emergency {
  align-self: start;
  justify-self: end;
  width: 170px;
  height: 170px;
  display: grid;
  place-items: center;
  align-content: center;
  border: 4px solid rgba(229, 38, 38, 0.82);
  border-right-color: rgba(229, 38, 38, 0.22);
  border-radius: 50%;
  color: #fff;
  text-align: center;
}

.footer-emergency svg {
  width: 34px;
  height: 34px;
  color: var(--red-2);
}

.footer-emergency strong {
  color: var(--red-2);
  font-size: 37px;
  line-height: 1;
}

.footer-emergency span {
  color: #fff;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.footer-bottom {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-radius: 8px 8px 0 0;
  background: linear-gradient(90deg, rgba(229, 38, 38, 0.24), rgba(55, 11, 14, 0.58));
  padding: 0 18px;
  color: var(--muted);
  font-size: 13px;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom div {
  display: flex;
  gap: 22px;
}

.footer-bottom a:hover,
.footer-bottom a:focus-visible {
  color: #fff;
}

:focus-visible {
  outline: 3px solid rgba(255, 56, 56, 0.7);
  outline-offset: 3px;
}

@media (max-width: 1240px) {
  .header-inner {
    gap: 16px;
  }

  .site-header .brand-logo {
    width: 292px;
  }

  .site-header::after {
    width: 270px;
  }

  .primary-nav a {
    padding-inline: 10px;
  }

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

  .services-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .amc-wrap {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1.3fr 0.8fr 0.9fr 1.2fr;
  }

  .footer-emergency {
    justify-self: start;
  }
}

@media (max-width: 1040px) {
  .header-inner {
    grid-template-columns: auto auto auto;
    justify-content: space-between;
  }

  .nav-toggle {
    display: inline-flex;
    grid-column: 3;
    grid-row: 1;
    position: relative;
    z-index: 2;
    order: 3;
  }

  .header-call {
    grid-column: 2;
    grid-row: 1;
    position: relative;
    z-index: 2;
    order: 2;
  }

  .brand {
    grid-column: 1;
    grid-row: 1;
    position: relative;
    z-index: 2;
  }

  .primary-nav {
    position: fixed;
    grid-column: 1 / -1;
    inset: 74px 24px auto;
    display: grid;
    gap: 6px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(7, 9, 11, 0.98);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 160ms ease, transform 160ms ease;
  }

  body.nav-open .primary-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  body.nav-open .nav-toggle svg:first-child {
    display: none;
  }

  body.nav-open .nav-toggle svg + svg {
    display: block;
  }

  .primary-nav a {
    min-height: 48px;
    padding-inline: 14px;
  }

  .hero {
    background-position: 62% center;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    padding-top: 54px;
  }

  .hero-content {
    width: min(720px, 100%);
  }

  .quick-connect:not(.quick-connect-tray) {
    display: none;
  }

  .process-grid,
  .pricing-grid,
  .proof-grid,
  .industry-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .status-grid article {
    min-height: auto;
    margin: 0;
    padding: 0 20px 18px 0;
  }

  .service-locations {
    right: 28px;
  }
}

@media (max-width: 820px) {
  .container {
    width: min(100% - 32px, var(--container));
  }

  .header-inner {
    min-height: 68px;
  }

  .brand-logo {
    width: 238px;
    
  }

  .site-header .brand-logo {
    width: 238px;
    transform: translateY(4px);
    
  }

  .site-header::after {
    bottom: -14px;
    width: 220px;
    height: 32px;
  }

  .header-call {
    min-height: 42px;
    padding-inline: 12px;
    font-size: 0;
  }

  .header-call svg {
    width: 22px;
    height: 22px;
  }

  .primary-nav {
    top: 68px;
  }

  body.quick-connect-open .quick-connect-trigger {
    opacity: 0;
    pointer-events: none;
  }

  .hero {
    min-height: 595px;
    background-position: 68% center;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(5, 6, 7, 0.26), rgba(5, 6, 7, 0.86)),
      linear-gradient(90deg, rgba(255, 255, 255, 0.026) 0 1px, transparent 1px 170px);
  }

  .hero h1 {
    font-size: 44px;
  }

  .hero-lede {
    font-size: 19px;
  }

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

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

  .hero-metrics div {
    min-height: 70px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .hero-metrics div:last-child {
    border-bottom: 0;
  }

  .status-panel {
    padding: 22px;
  }

  .status-panel::before {
    background-image:
      linear-gradient(180deg, rgba(7, 9, 11, 0.96), rgba(7, 9, 11, 0.62)),
      url("../images/status-map-texture.webp");
  }

  .service-locations {
    position: relative;
    top: auto;
    right: auto;
    transform: none;
    grid-template-columns: repeat(2, max-content);
    margin-top: 22px;
  }

  .section {
    padding: 34px 0;
  }

  .section-heading h2,
  .amc-copy h2 {
    font-size: 28px;
  }

  .section-heading.split {
    display: grid;
  }

  .services-grid,
  .process-grid,
  .pricing-grid,
  .proof-grid,
  .industry-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .amc-wrap {
    padding: 24px;
  }

  .proof-grid div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .proof-grid div:last-child {
    border-bottom: 0;
  }

  .footer-grid {
    padding-top: 36px;
  }

  .footer-emergency {
    justify-self: start;
  }

  .footer-bottom {
    height: auto;
    min-height: 74px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 24px, var(--container));
  }

  .header-inner {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 0;
    align-items: center;
    min-height: 68px;
    padding: 8px 0 10px;
  }

  .brand {
    grid-column: 1;
    grid-row: 1;
    justify-self: center;
    min-width: 0;
  }

  .brand-logo {
    width: 210px;
  }

  .site-header .brand-logo {
    width: 210px;
    transform: translateY(2px);
  }

  .site-header .brand::before {
    bottom: -7px;
    height: 18px;
  }

  .site-header::after {
    left: 18px;
    bottom: -11px;
    width: 190px;
    height: 25px;
    opacity: 0.72;
  }

  .header-call {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
    grid-column: 1;
    grid-row: 1;
    justify-self: end;
    width: 42px;
    height: 42px;
    border-color: rgba(255, 56, 56, 0.38);
    background: rgba(229, 38, 38, 0.1);
    box-shadow: 0 0 22px rgba(229, 38, 38, 0.16);
  }

  .primary-nav {
    position: fixed;
    inset: 68px 12px auto;
    grid-column: 1 / -1;
    display: grid;
    gap: 6px;
    justify-self: stretch;
    box-sizing: border-box;
    width: auto;
    max-width: none;
    max-height: calc(100vh - 92px);
    overflow-y: auto;
    padding: 14px;
    border: 1px solid rgba(229, 38, 38, 0.32);
    border-radius: var(--radius);
    background: rgba(7, 9, 11, 0.98);
    box-shadow:
      0 24px 58px rgba(0, 0, 0, 0.66),
      0 0 36px rgba(229, 38, 38, 0.16);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 160ms ease, transform 160ms ease;
    scrollbar-width: thin;
  }

  .primary-nav::-webkit-scrollbar {
    width: 5px;
  }

  .primary-nav a {
    width: 100%;
    min-height: 44px;
    justify-content: flex-start;
    padding: 0 13px;
    font-size: 14px;
  }

  .hero {
    min-height: auto;
    background-image:
      linear-gradient(90deg, rgba(5, 6, 7, 0.98), rgba(5, 6, 7, 0.72)),
      linear-gradient(180deg, rgba(5, 6, 7, 0.16), rgba(5, 6, 7, 0.9)),
      image-set(url("../images/hero-elevator-red.webp") type("image/webp"), url("../images/hero-elevator-red.png") type("image/png"));
    background-position: 70% center;
  }

  .hero-grid {
    padding-top: 36px;
    padding-bottom: 22px;
  }

  .quick-connect-trigger {
    top: auto;
    right: 12px;
    bottom: 18px;
    width: 166px;
    min-height: 56px;
    padding: 0 16px;
    border-radius: 999px;
    border-right: 1px solid rgba(255, 56, 56, 0.72);
    transform: none;
  }

  .quick-connect-trigger::before {
    inset: 6px;
    border-radius: inherit;
  }

  .quick-connect-trigger::after {
    inset: -18px;
    border-radius: inherit;
  }

  .quick-connect-trigger svg {
    width: 28px;
    height: 28px;
  }

  .quick-connect-trigger > span:last-child {
    position: static;
    width: auto;
    height: auto;
    overflow: visible;
    clip: auto;
    font-size: 11px;
    white-space: nowrap;
  }

  .trigger-pulse {
    left: -5px;
    top: 50%;
    width: 15px;
    height: 15px;
  }

  .quick-connect-tray {
    top: 84px;
    right: 12px;
    bottom: 12px;
    width: min(342px, calc(100vw - 24px));
    max-height: calc(100vh - 96px);
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 22px;
  }

  body.quick-connect-open .quick-connect-trigger {
    transform: translateY(10px);
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero h1 span {
    display: block;
  }

  .eyebrow,
  .section-kicker {
    font-size: 12px;
  }

  .hero-actions {
    display: grid;
    margin-top: 28px;
  }

  .btn {
    width: 100%;
    min-height: 54px;
    padding-inline: 16px;
  }

  .hero-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 26px;
  }

  .hero-metrics div {
    grid-template-columns: 1fr;
    grid-template-areas: "icon" "strong" "span";
    justify-items: center;
    text-align: center;
    min-height: 96px;
    padding: 12px 7px;
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }

  .hero-metrics div:last-child {
    grid-column: 1 / -1;
    border-right: 0;
    border-top: 1px solid var(--line);
    min-height: 84px;
  }

  .hero-metrics svg {
    margin-bottom: 7px;
  }

  .hero-metrics strong {
    font-size: 12px;
  }

  .hero-metrics span {
    font-size: 11px;
  }

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

  .status-grid article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .status-grid article:last-child {
    border-bottom: 0;
  }

  .service-locations {
    grid-template-columns: 1fr;
  }

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

  .process-card .card-icon {
    grid-row: auto;
  }

  .price-card strong {
    font-size: 27px;
  }

  .footer-bottom div {
    flex-wrap: wrap;
    gap: 12px 18px;
  }
}

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