/* Shared BIG-ABE aerospace visual system for secondary pages. */
:root {
  --site-topbar-height: 34px;
  --site-nav-height: 74px;
  --abe-black: #020406;
  --abe-carbon: #070b10;
  --abe-carbon-2: #101820;
  --abe-paper: #f4f0e8;
  --abe-paper-2: #fffaf0;
  --abe-ink: #0b0f14;
  --abe-muted: #596571;
  --abe-line: rgba(255, 255, 255, 0.16);
  --abe-paper-line: #d8d1c4;
  --abe-orange: #ff5b22;
  --abe-blue: #8ed0ff;
  --abe-gold: #d7b46a;
  --abe-font: "D-DIN", "DIN 2014", "DIN Alternate", "Bahnschrift", "Arial Narrow", Arial, Helvetica, sans-serif;
  --abe-font-condensed: "D-DIN Condensed", "D-DIN", "DIN Condensed", "Arial Narrow", Arial, Helvetica, sans-serif;
  --font-display: "D-DIN Condensed", "D-DIN", "DIN Condensed", "Arial Narrow", Arial, Helvetica, sans-serif;
  --brand-mark-width: clamp(270px, 24vw, 400px);
  --brand-mark-height: clamp(54px, 5vw, 66px);
  --brand-mark-title-size: clamp(1.65rem, 2vw, 2.1rem);
  --brand-mark-subtitle-size: clamp(0.72rem, 0.82vw, 0.92rem);
}

@font-face {
  font-family: "D-DIN";
  src: local("D-DIN"), local("D-DIN Regular"), local("DDIN");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "D-DIN";
  src: local("D-DIN Bold"), local("DDIN Bold");
  font-weight: 700 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "D-DIN Condensed";
  src: local("D-DIN Condensed"), local("D-DINCondensed");
  font-weight: 400 900;
  font-style: normal;
  font-display: swap;
}

body.site-page {
  margin: 0;
  padding-top: calc(var(--site-topbar-height) + var(--site-nav-height));
  background: var(--abe-black);
  color: #fff;
  font-family: var(--abe-font);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
  overflow-x: hidden;
}

html,
body.site-page,
.site-page main {
  max-width: 100%;
  overflow-x: hidden;
}

.site-page * {
  box-sizing: border-box;
}

.site-page a {
  color: inherit;
  text-decoration: none;
}

.site-container {
  width: min(1420px, calc(100% - 64px));
  margin: 0 auto;
}

.site-topbar {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 60;
  height: 34px;
  display: flex;
  align-items: center;
  background: rgba(2, 4, 6, 0.98);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.68rem;
  font-weight: 800;
}

.site-topbar-inner,
.site-nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.site-nav {
  position: fixed;
  top: var(--site-topbar-height);
  right: 0;
  left: 0;
  z-index: 50;
  height: 74px;
  display: flex;
  align-items: center;
  background: linear-gradient(180deg, rgba(9, 14, 20, 0.94), rgba(2, 4, 6, 0.88));
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(18px);
}

html {
  scroll-padding-top: calc(var(--site-topbar-height) + var(--site-nav-height) + 18px);
}

.site-brand {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  flex: 0 0 var(--brand-mark-width);
  width: var(--brand-mark-width);
  min-width: var(--brand-mark-width);
  min-height: var(--brand-mark-height);
  padding: 0 0 0 16px;
  border: 0;
  border-left: 3px solid var(--abe-orange);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.site-brand strong,
.site-brand span {
  position: static;
  width: auto;
  height: auto;
  overflow: visible;
  clip: auto;
  clip-path: none;
  white-space: nowrap;
}

.site-brand strong {
  color: #fff;
  font-family: var(--font-display);
  font-size: var(--brand-mark-title-size);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: 0;
  text-transform: uppercase;
}

.site-brand span {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.92);
  font-size: var(--brand-mark-subtitle-size);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: 0;
}

.site-links {
  display: flex;
  align-items: center;
  gap: 30px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.site-links > a,
.site-dropdown-toggle {
  color: rgba(255, 255, 255, 0.72);
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  line-height: 1;
  text-transform: uppercase;
}

.site-links > a:hover,
.site-dropdown-toggle:hover,
.site-dropdown-toggle:focus-visible {
  color: #fff;
}

.site-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.site-dropdown::before {
  content: "";
  position: absolute;
  top: 100%;
  left: -18px;
  right: -18px;
  height: 18px;
}

.site-links > a,
.site-dropdown-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 32px;
  padding: 0;
  border: 0;
  background: transparent;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}

.site-links > a::after,
.site-dropdown-toggle::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 100%;
  height: 2px;
  background: var(--abe-orange);
  opacity: 0;
  transform: scaleX(0.08);
  transform-origin: left center;
  transition: transform 0.26s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.18s ease;
}

.site-links > a:hover::after,
.site-links > a:focus-visible::after,
.site-dropdown:hover .site-dropdown-toggle::before,
.site-dropdown:focus-within .site-dropdown-toggle::before {
  opacity: 1;
  transform: scaleX(1);
}

.site-dropdown-toggle::after {
  content: "";
  width: 6px;
  height: 6px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}

.site-dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  z-index: 100;
  width: min(380px, 90vw);
  max-height: min(72vh, 680px);
  overflow-y: auto;
  padding: 10px;
  background: rgba(5, 8, 12, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.44);
  transform: translateX(-50%) translateY(8px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: 0.18s ease;
}

.site-dropdown-menu::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 2px;
  background: var(--abe-orange);
}

.site-dropdown:hover .site-dropdown-menu,
.site-dropdown:focus-within .site-dropdown-menu,
.site-dropdown.is-open .site-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.site-dropdown-menu a {
  display: block;
  padding: 14px;
  color: rgba(255, 255, 255, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.28;
}

.site-dropdown-menu a:last-child {
  border-bottom: 0;
}

.site-dropdown-menu a:hover,
.site-dropdown-menu a:focus-visible {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  outline: none;
}

@media (min-width: 901px) {
  .site-links > .site-dropdown:first-child {
    position: static;
  }

  .site-links > .site-dropdown:first-child::before {
    display: none;
  }

  .site-links > .site-dropdown:first-child .site-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 120;
    width: 100vw;
    max-height: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: clamp(12px, 1.4vw, 22px);
    padding: clamp(24px, 3vw, 44px) clamp(32px, 5vw, 82px);
    overflow: visible;
    background:
      linear-gradient(135deg, #ffffff, #f4f7fa 58%, #eef2f6),
      radial-gradient(circle at 12% 18%, rgba(255, 91, 34, 0.12), transparent 34%);
    border: 0;
    border-top: 4px solid var(--abe-orange);
    border-bottom: 1px solid rgba(11, 15, 20, 0.16);
    box-shadow: 0 34px 110px rgba(0, 0, 0, 0.34);
    transform: translateY(-18px);
    clip-path: inset(0 0 100% 0);
    transition:
      opacity 0.22s ease,
      transform 0.26s cubic-bezier(0.16, 1, 0.3, 1),
      clip-path 0.26s cubic-bezier(0.16, 1, 0.3, 1),
      visibility 0.22s ease;
  }

  .site-links > .site-dropdown:first-child .site-dropdown-menu::before {
    display: none;
  }

  .site-links > .site-dropdown:first-child:hover .site-dropdown-menu,
  .site-links > .site-dropdown:first-child:focus-within .site-dropdown-menu,
  .site-links > .site-dropdown:first-child.is-open .site-dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    clip-path: inset(0 0 0 0);
  }

  .site-links > .site-dropdown:first-child .site-dropdown-menu a {
    display: grid;
    min-height: 74px;
    align-items: center;
    padding: 18px;
    background: rgba(11, 15, 20, 0.035);
    border: 1px solid rgba(11, 15, 20, 0.13);
    color: rgba(11, 15, 20, 0.82);
    font-size: clamp(0.82rem, 0.85vw, 0.95rem);
    font-weight: 900;
    letter-spacing: 0.06em;
    line-height: 1.18;
    text-transform: uppercase;
  }

  .site-links > .site-dropdown:first-child .site-dropdown-menu a:hover,
  .site-links > .site-dropdown:first-child .site-dropdown-menu a:focus-visible {
    background: rgba(255, 91, 34, 0.12);
    border-color: rgba(255, 91, 34, 0.34);
    color: var(--abe-ink);
  }
}

.site-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.site-btn {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 1px solid rgba(255, 255, 255, 0.44);
  color: #fff;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
  transition: 0.18s ease;
}

.site-btn.primary {
  background: #fff;
  border-color: #fff;
  color: var(--abe-black);
  box-shadow: 0 12px 30px rgba(255, 255, 255, 0.16);
}

.site-btn.quote {
  background: var(--abe-orange);
  border-color: var(--abe-orange);
  color: #fff;
  box-shadow: 0 14px 34px rgba(255, 91, 34, 0.34);
}

.site-btn:hover {
  transform: translateY(-2px);
  background: var(--abe-orange);
  border-color: var(--abe-orange);
  color: #fff;
  box-shadow: 0 18px 42px rgba(255, 91, 34, 0.40);
}

.service-hero {
  min-height: calc(100vh - 108px);
  display: grid;
  align-items: center;
  padding: 82px 0 96px;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(2, 4, 6, 0.98) 0%, rgba(2, 4, 6, 0.88) 42%, rgba(2, 4, 6, 0.32) 100%),
    linear-gradient(180deg, rgba(2, 4, 6, 0.04), rgba(2, 4, 6, 0.96)),
    var(--hero-image) center/cover no-repeat;
}

.service-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.024) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.024) 1px, transparent 1px);
  background-size: 82px 82px;
  mask-image: linear-gradient(90deg, #000, rgba(0, 0, 0, 0.72), transparent);
}

.service-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 480px);
  gap: clamp(48px, 7vw, 118px);
  align-items: end;
}

.kicker {
  color: var(--abe-orange);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.service-hero h1,
.section-title,
.panel-card h2,
.service-cta h2 {
  margin: 0;
  font-family: var(--abe-font-condensed);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.service-hero h1 {
  max-width: 850px;
  font-size: clamp(3.6rem, 7vw, 7rem);
  line-height: 0.88;
  margin-bottom: 28px;
}

.service-hero p {
  max-width: 680px;
  margin: 0 0 30px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.12rem;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 820px;
}

.proof-item {
  min-height: 58px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.20);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035));
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.72rem;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.hero-panel {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: linear-gradient(180deg, rgba(17, 25, 33, 0.88), rgba(7, 11, 16, 0.76));
  box-shadow: 0 36px 110px rgba(0, 0, 0, 0.54);
  padding: 28px;
}

.hero-panel h2 {
  margin: 0 0 18px;
  font-family: var(--abe-font-condensed);
  font-size: 2.05rem;
  line-height: 1;
  text-transform: uppercase;
}

.panel-list {
  display: grid;
  gap: 12px;
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
}

.panel-list li {
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.055);
  padding: 16px;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 800;
}

.panel-list strong {
  display: block;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 4px;
}

/* Location market pages: keep city proof boxes inside the first viewport. */
.location-market-hero {
  min-height: calc(100vh - 108px);
  align-items: start;
  padding: clamp(18px, 3vh, 34px) 0 clamp(18px, 3vh, 34px);
}

.location-market-hero .service-hero-grid {
  grid-template-columns: minmax(0, 1fr) minmax(340px, 430px);
  column-gap: clamp(34px, 5vw, 82px);
  row-gap: 14px;
  align-items: center;
  overflow: hidden;
}

.location-market-hero .service-hero-grid > * {
  min-width: 0;
}

.location-market-hero .kicker {
  margin-bottom: 10px;
}

.location-market-hero h1 {
  max-width: 760px;
  font-size: clamp(3.05rem, 5.55vw, 5.85rem);
  line-height: 0.89;
  margin-bottom: 16px;
}

.location-market-hero p {
  max-width: 640px;
  margin-bottom: 18px;
  font-size: clamp(0.98rem, 1.05vw, 1.08rem);
  line-height: 1.40;
}

.location-market-hero .site-actions {
  gap: 10px;
}

.location-market-hero .hero-proof {
  margin-top: 16px;
  max-width: 720px;
  gap: 10px;
}

.location-market-hero .proof-item {
  min-height: 46px;
  padding: 9px 12px;
  font-size: 0.7rem;
  line-height: 1.18;
}

.market-review-marquee {
  width: min(720px, 100%);
  max-width: 100%;
  margin-top: 10px;
  overflow: hidden;
  position: relative;
  padding: 2px 0;
  contain: paint;
}

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

.market-review-marquee::before {
  left: 0;
  background: linear-gradient(90deg, rgba(2, 4, 6, 0.84), transparent);
}

.market-review-marquee::after {
  right: 0;
  background: linear-gradient(270deg, rgba(2, 4, 6, 0.84), transparent);
}

.market-review-track {
  display: flex;
  gap: 10px;
  width: max-content;
  animation: marketReviewScroll 36s linear infinite;
  will-change: transform;
  max-width: none;
}

.market-review-track:hover {
  animation-play-state: paused;
}

.market-review-card {
  width: 360px;
  max-width: calc(100vw - 52px);
  min-height: 116px;
  flex: 0 0 360px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background:
    linear-gradient(135deg, rgba(17, 25, 33, 0.90), rgba(7, 11, 16, 0.74)),
    linear-gradient(90deg, rgba(255, 91, 34, 0.12), rgba(142, 208, 255, 0.06));
  backdrop-filter: blur(16px);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
}

.market-review-meta,
.market-review-source {
  display: flex;
  align-items: center;
  gap: 10px;
}

.market-review-meta {
  justify-content: flex-start;
}

.market-review-source {
  justify-content: space-between;
}

.market-review-initials {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  flex: 0 0 30px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--abe-ink);
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1;
}

.market-review-badge {
  color: var(--abe-orange);
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.market-review-stars {
  margin-left: auto;
  color: var(--abe-gold);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.market-review-card p {
  max-width: none;
  margin: 7px 0 8px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.84rem;
  line-height: 1.30;
}

.market-review-source strong {
  color: #fff;
  font-size: 0.7rem;
  text-transform: uppercase;
}

.market-review-source span {
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.64rem;
  font-weight: 800;
  text-transform: uppercase;
  text-align: right;
}

@keyframes marketReviewScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.location-market-hero .hero-panel {
  padding: 20px;
}

.location-market-hero .hero-panel h2 {
  margin-bottom: 12px;
  font-size: 1.78rem;
}

.location-market-hero .panel-list {
  gap: 8px;
  margin-bottom: 13px;
}

.location-market-hero .panel-list li {
  padding: 10px 11px;
  font-size: 0.88rem;
  line-height: 1.36;
}

.market-promo-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 0 0 13px;
}

.market-promo-ticket {
  position: relative;
  min-height: 82px;
  display: block;
  padding: 12px 12px 10px;
  border: 1px solid rgba(255, 91, 34, 0.55);
  background:
    linear-gradient(135deg, rgba(255, 91, 34, 0.18), rgba(142, 208, 255, 0.08)),
    rgba(255, 255, 255, 0.055);
  color: #fff;
  overflow: hidden;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.market-promo-ticket:hover,
.market-promo-ticket:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.7);
  background:
    linear-gradient(135deg, rgba(255, 91, 34, 0.28), rgba(142, 208, 255, 0.12)),
    rgba(255, 255, 255, 0.07);
  outline: none;
}

.market-promo-ticket::before,
.market-promo-ticket::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: rgba(2, 4, 6, 0.96);
  transform: translateY(-50%);
}

.market-promo-ticket::before {
  left: -8px;
}

.market-promo-ticket::after {
  right: -8px;
}

.market-promo-ticket span {
  display: block;
  color: var(--abe-gold);
  font-size: 0.56rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.market-promo-ticket strong {
  display: block;
  font-family: var(--abe-font-condensed);
  font-size: 1.1rem;
  line-height: 0.96;
  text-transform: uppercase;
  margin-bottom: 7px;
}

.market-promo-ticket small {
  display: block;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.62rem;
  font-weight: 800;
  line-height: 1.25;
  text-transform: uppercase;
}

.market-locator-map {
  width: min(100%, 1040px);
  margin: 8px auto 0;
  padding: clamp(9px, 1vw, 13px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.055);
}

.location-market-hero .market-locator-map {
  grid-column: 1 / -1;
  justify-self: center;
}

.market-locator-map[hidden] {
  display: none;
}

.market-locator-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 9px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

.market-locator-heading strong {
  color: var(--abe-blue);
}

.market-locator-stage {
  position: relative;
  aspect-ratio: 1256 / 790;
  min-height: clamp(320px, 38vw, 560px);
  overflow: hidden;
  background:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    #070d14;
  background-size: 42px 42px, 42px 42px, auto;
}

.market-locator-viewport {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 97%;
  height: 97%;
  transform: translate(-50%, -50%);
  transform-origin: center center;
}

.market-locator-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(2, 4, 6, 0.08), transparent 28%, rgba(2, 4, 6, 0.12)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 48%, rgba(2, 4, 6, 0.14));
}

.market-locator-viewport img {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: fill;
  opacity: 0.68;
  filter: invert(1) grayscale(1) contrast(1.15) brightness(1.58);
  pointer-events: none;
  user-select: none;
}

.market-locator-marker-layer {
  position: absolute;
  inset: 0;
  z-index: 3;
}

.market-locator-state-marker {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 3;
  width: clamp(16px, 2.05vw, 26px);
  height: clamp(16px, 2.05vw, 26px);
  display: grid;
  place-items: center;
  border: 2px solid #fff;
  border-radius: 999px;
  background: var(--abe-orange);
  color: #fff;
  box-shadow: 0 0 0 4px rgba(255, 91, 34, 0.18), 0 12px 26px rgba(0, 0, 0, 0.34);
  font-size: clamp(0.42rem, 0.68vw, 0.62rem);
  font-weight: 900;
  line-height: 1;
  transform: translate(-50%, -50%);
}

.market-locator-state-marker[data-state="connecticut"],
.market-locator-state-marker[data-state="delaware"],
.market-locator-state-marker[data-state="maryland"],
.market-locator-state-marker[data-state="massachusetts"],
.market-locator-state-marker[data-state="new-hampshire"],
.market-locator-state-marker[data-state="new-jersey"],
.market-locator-state-marker[data-state="rhode-island"],
.market-locator-state-marker[data-state="vermont"] {
  width: clamp(12px, 4.8vw, 19px);
  height: clamp(12px, 4.8vw, 19px);
  font-size: clamp(0.36rem, 0.55vw, 0.48rem);
}

.market-locator-state-marker.is-selected {
  background: var(--abe-blue);
  box-shadow: 0 0 0 5px rgba(142, 208, 255, 0.24), 0 16px 30px rgba(0, 0, 0, 0.4);
}

.market-locator-state-marker strong {
  position: absolute;
  left: 50%;
  top: calc(100% + 4px);
  padding: 4px 9px;
  border-radius: 999px;
  background: var(--abe-blue);
  color: #fff;
  font-size: 0.58rem;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
  transform: translateX(-50%);
}

.market-locator-state-marker[data-state="alabama"] strong,
.market-locator-state-marker[data-state="florida"] strong,
.market-locator-state-marker[data-state="georgia"] strong,
.market-locator-state-marker[data-state="louisiana"] strong,
.market-locator-state-marker[data-state="mississippi"] strong,
.market-locator-state-marker[data-state="texas"] strong {
  top: auto;
  bottom: calc(100% + 4px);
}

.market-locator-inset {
  position: absolute;
  left: 12px;
  bottom: 12px;
  z-index: 4;
  width: min(214px, 40%);
  padding: 10px;
  border-radius: 8px;
  background: rgba(244, 240, 232, 0.96);
  color: var(--abe-ink);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.28);
}

.market-locator-inset > span {
  display: block;
  margin-bottom: 7px;
  font-size: 0.55rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.market-locator-inset-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.market-locator-inset-state {
  position: relative;
  min-height: 70px;
  overflow: hidden;
  border: 1px solid rgba(142, 208, 255, 0.46);
  border-radius: 7px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.76), rgba(238, 246, 255, 0.90));
}

.market-locator-inset-state::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 56%;
  width: 70%;
  height: 44%;
  background: rgba(7, 13, 20, 0.42);
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.18));
  transform: translate(-50%, -50%);
}

.market-locator-inset-state[data-state="alaska"]::before {
  width: 78%;
  height: 52%;
  clip-path: polygon(5% 56%, 16% 26%, 35% 18%, 54% 28%, 70% 16%, 92% 30%, 83% 50%, 66% 54%, 58% 82%, 38% 64%, 24% 84%, 18% 62%);
}

.market-locator-inset-state[data-state="hawaii"]::before {
  width: 78%;
  height: 44%;
  background:
    radial-gradient(circle at 17% 62%, rgba(7, 13, 20, 0.42) 0 8%, transparent 9%),
    radial-gradient(circle at 32% 54%, rgba(7, 13, 20, 0.42) 0 7%, transparent 8%),
    radial-gradient(circle at 47% 48%, rgba(7, 13, 20, 0.42) 0 8%, transparent 9%),
    radial-gradient(circle at 64% 40%, rgba(7, 13, 20, 0.42) 0 10%, transparent 11%),
    radial-gradient(circle at 82% 30%, rgba(7, 13, 20, 0.42) 0 12%, transparent 13%);
  filter: drop-shadow(0 4px 7px rgba(0, 0, 0, 0.18));
}

.market-locator-inset-state > strong {
  position: absolute;
  left: 8px;
  top: 7px;
  z-index: 2;
  color: var(--abe-ink);
  font-size: 0.58rem;
}

.market-locator-inset-state .market-locator-state-marker {
  left: 50%;
  top: 62%;
  width: 24px;
  height: 24px;
  font-size: 0.54rem;
}

.content-section {
  padding: 118px 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0) 240px),
    var(--abe-paper);
  color: var(--abe-ink);
}

.section-header-clean {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 520px);
  gap: 72px;
  align-items: end;
  margin-bottom: 52px;
}

.section-title {
  max-width: 900px;
  font-size: clamp(3rem, 5vw, 5.25rem);
  line-height: 0.92;
}

.section-header-clean p {
  margin: 0;
  color: var(--abe-muted);
  font-size: 1.05rem;
}

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

.capability-card,
.panel-card {
  background: var(--abe-paper-2);
  border: 1px solid var(--abe-paper-line);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.64) inset;
  padding: 32px;
}

.capability-card h3 {
  margin: 0 0 12px;
  font-family: var(--abe-font-condensed);
  font-size: 2rem;
  line-height: 0.96;
  text-transform: uppercase;
}

.capability-card p,
.capability-card li,
.panel-card p,
.panel-card li {
  color: var(--abe-muted);
}

.capability-card ul,
.panel-card ul {
  display: grid;
  gap: 9px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.capability-card li,
.panel-card li {
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(11, 15, 20, 0.08);
}

.capability-card li::before,
.panel-card li::before {
  content: "- ";
  color: var(--abe-orange);
  font-weight: 900;
}

.dark-band {
  padding: 118px 0;
  background:
    linear-gradient(90deg, rgba(2, 4, 6, 0.98), rgba(2, 4, 6, 0.78)),
    var(--band-image) center/cover no-repeat;
  color: #fff;
}

.dark-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(44px, 7vw, 104px);
  align-items: center;
}

.dark-panel {
  min-height: 520px;
  display: grid;
  align-content: end;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background:
    linear-gradient(180deg, transparent, rgba(2, 4, 6, 0.94)),
    var(--detail-image) center/cover no-repeat;
}

.dark-panel h2 {
  margin: 0;
  font-family: var(--abe-font-condensed);
  font-size: clamp(2.6rem, 4vw, 4.5rem);
  line-height: 0.9;
  text-transform: uppercase;
}

.dark-copy h2 {
  max-width: 780px;
  font-family: var(--abe-font-condensed);
  font-size: clamp(3rem, 5vw, 5.5rem);
  line-height: 0.9;
  text-transform: uppercase;
  margin: 0 0 24px;
}

.dark-copy p,
.dark-copy li {
  color: rgba(255, 255, 255, 0.72);
}

.service-cta {
  min-height: 460px;
  display: grid;
  align-items: center;
  padding: 96px 0;
  background:
    linear-gradient(90deg, rgba(2, 4, 6, 0.98), rgba(2, 4, 6, 0.58)),
    url("https://images.unsplash.com/photo-1581092334651-ddf26d9a09d0?auto=format&fit=crop&w=2200&q=95&fm=jpg") center/cover no-repeat;
}

.service-cta h2 {
  max-width: 860px;
  font-size: clamp(3.2rem, 6vw, 6.4rem);
  line-height: 0.86;
  margin-bottom: 22px;
}

.service-cta p {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.72);
  margin: 0 0 26px;
}

.site-footer {
  padding: 46px 0;
  background: var(--abe-black);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.62);
}

.site-footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

@media (max-width: 1180px) {
  .site-container {
    width: min(100% - 40px, 1420px);
  }

  .site-links {
    display: none;
  }

  .service-hero-grid,
  .section-header-clean,
  .dark-grid,
  .capability-grid {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    max-width: 680px;
  }

  .quote-page-heading {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

@media (max-width: 900px) {
  :root {
    --brand-mark-width: min(100%, 320px);
    --brand-mark-height: 44px;
    --brand-mark-title-size: clamp(1.5rem, 5.2vw, 2rem);
    --brand-mark-subtitle-size: clamp(0.66rem, 2.1vw, 0.82rem);
  }
}

@media (max-width: 760px) {
  .site-container {
    width: min(100% - 28px, 1420px);
  }

  .site-topbar {
    height: auto;
    padding: 8px 0;
  }

  .site-actions {
    display: none;
  }

  .service-hero {
    min-height: auto;
    padding: 64px 0 76px;
  }

  .service-hero h1,
  .section-title,
  .dark-copy h2,
  .service-cta h2 {
    font-size: 3.05rem;
    line-height: 0.98;
  }

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

  .content-section,
  .dark-band {
    padding: 78px 0;
  }

  .dark-panel {
    min-height: 340px;
  }
}

@media (max-width: 380px) {
  :root {
    --brand-mark-title-size: 1.45rem;
  }
}

@media (max-width: 1180px) {
  .location-market-hero {
    min-height: auto;
    padding: 32px 0 44px;
  }

  .location-market-hero .service-hero-grid {
    grid-template-columns: 1fr;
    row-gap: 18px;
    align-items: start;
  }

  .location-market-hero h1 {
    max-width: 820px;
    font-size: clamp(3rem, 8.8vw, 5rem);
  }

  .location-market-hero .hero-proof {
    max-width: 820px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .market-review-marquee {
    width: min(820px, 100%);
  }

  .location-market-hero .hero-panel {
    width: 100%;
    max-width: 820px;
  }

  .market-promo-stack {
    max-width: 620px;
  }
}

@media (max-width: 760px) {
  .location-market-hero {
    padding: 26px 0 36px;
  }

  .location-market-hero h1 {
    font-size: clamp(2.75rem, 12vw, 3.85rem);
    line-height: 0.94;
    margin-bottom: 12px;
  }

  .location-market-hero p {
    margin-bottom: 14px;
    font-size: 0.94rem;
    line-height: 1.35;
  }

  .location-market-hero .hero-proof {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .location-market-hero .proof-item {
    min-height: 40px;
    padding: 8px 7px;
    font-size: 0.58rem;
  }

  .market-review-card {
    width: 285px;
    min-height: 118px;
    flex-basis: 285px;
    padding: 10px;
  }

  .market-review-meta,
  .market-review-source {
    align-items: flex-start;
    gap: 5px;
  }

  .market-review-meta {
    align-items: center;
  }

  .market-review-initials {
    width: 28px;
    height: 28px;
    flex-basis: 28px;
    font-size: 0.64rem;
  }

  .market-review-badge {
    font-size: 0.54rem;
  }

  .market-review-stars {
    font-size: 0.68rem;
  }

  .market-review-card p {
    font-size: 0.86rem;
  }

  .market-review-source span {
    text-align: left;
  }

  .location-market-hero .hero-panel {
    padding: 18px;
  }

  .location-market-hero .hero-panel h2 {
    font-size: 1.6rem;
  }

  .location-market-hero .panel-list li {
    padding: 10px;
    font-size: 0.82rem;
  }

  .market-promo-stack {
    grid-template-columns: 1fr;
  }

  .market-promo-ticket {
    min-height: 72px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .market-review-track {
    animation: none;
  }
}

/* ==========================================================
   BIG-ABE NON-TEMPLATE SECONDARY PAGE SYSTEM
   Shared service pages now read as operations documents:
   command heroes, numbered diagnostic panels, and service
   records instead of repeated generic landing-page cards.
   ========================================================== */
body.site-page {
  background:
    radial-gradient(circle at 16% 0%, rgba(255, 91, 34, 0.08), transparent 28%),
    radial-gradient(circle at 88% 12%, rgba(142, 208, 255, 0.08), transparent 30%),
    var(--abe-black);
}

.site-nav {
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.24);
}

.site-links > a::after,
.site-dropdown-toggle::before {
  bottom: -1px;
}

.quote-request-page {
  background:
    radial-gradient(circle at 14% 4%, rgba(255, 91, 34, 0.10), transparent 30%),
    radial-gradient(circle at 86% 6%, rgba(142, 208, 255, 0.10), transparent 32%),
    var(--abe-black);
}

.quote-page-section {
  min-height: calc(100svh - 74px);
  padding: clamp(42px, 5vw, 76px) 0 clamp(64px, 8vw, 110px);
}

.quote-page-shell {
  display: grid;
  gap: clamp(24px, 3vw, 40px);
}

.quote-page-heading {
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(280px, 0.38fr);
  gap: clamp(28px, 6vw, 96px);
  align-items: end;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.quote-page-heading h1 {
  max-width: 880px;
  margin: 0;
  color: #fff;
  font-family: var(--abe-font-condensed);
  font-size: clamp(2.7rem, 5.25vw, 5.7rem);
  font-weight: 900;
  line-height: 0.90;
  letter-spacing: 0;
  text-transform: uppercase;
}

.quote-page-heading p {
  max-width: 520px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(0.98rem, 1.05vw, 1.08rem);
  font-weight: 700;
  line-height: 1.58;
}

.quote-contact-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.74fr) minmax(620px, 0.92fr);
  gap: clamp(28px, 4vw, 54px);
  align-items: start;
}

.quote-contact-panel,
.quote-form-card {
  min-width: 0;
}

.quote-contact-panel {
  display: grid;
  gap: 22px;
}

.quote-contact-map {
  position: relative;
  min-height: clamp(300px, 38vw, 470px);
  display: flex;
  align-items: flex-end;
  padding: clamp(24px, 3vw, 38px);
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(2, 4, 6, 0.04), rgba(2, 4, 6, 0.12)),
    linear-gradient(rgba(11, 15, 20, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11, 15, 20, 0.08) 1px, transparent 1px),
    #eef2f6;
  background-size: auto, 54px 54px, 54px 54px, auto;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.30);
}

.quote-contact-map::before,
.quote-contact-map::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.quote-contact-map::before {
  inset: 18%;
  border: 2px solid rgba(255, 91, 34, 0.36);
  transform: rotate(-8deg);
}

.quote-contact-map::after {
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.26), transparent 34%, rgba(255, 91, 34, 0.08)),
    radial-gradient(circle at 48% 44%, rgba(255, 91, 34, 0.16), transparent 24%);
}

.quote-contact-map strong {
  position: relative;
  z-index: 1;
  color: var(--abe-ink);
  font-family: var(--abe-font-condensed);
  font-size: clamp(2.4rem, 5vw, 5.3rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.86;
  text-transform: uppercase;
}

.quote-map-pin {
  position: absolute;
  left: 52%;
  top: 42%;
  z-index: 2;
  width: 24px;
  height: 24px;
  border: 5px solid #fff;
  background: var(--abe-orange);
  border-radius: 999px;
  box-shadow: 0 10px 28px rgba(255, 91, 34, 0.44);
  transform: translate(-50%, -50%);
}

.quote-map-pin::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 100%;
  width: 2px;
  height: 58px;
  background: linear-gradient(var(--abe-orange), transparent);
  transform: translateX(-50%);
}

.quote-contact-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.quote-contact-card {
  min-height: 176px;
  padding: 22px;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--abe-ink);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.20);
}

.quote-contact-card span,
.quote-form-card-heading span {
  display: block;
  margin-bottom: 10px;
  color: var(--abe-orange);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1.1;
  text-transform: uppercase;
}

.quote-contact-card a,
.quote-contact-card strong {
  display: block;
  color: var(--abe-ink);
  font-size: clamp(1.1rem, 1.55vw, 1.5rem);
  font-weight: 900;
  line-height: 1.08;
}

.quote-contact-card p {
  margin: 12px 0 0;
  color: rgba(11, 15, 20, 0.64);
  font-weight: 800;
  line-height: 1.45;
}

.quote-form-card {
  overflow: hidden;
  background: #21479e;
  border: 1px solid rgba(255, 255, 255, 0.20);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.34);
}

.quote-form-card-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  padding: 26px 26px 18px;
  color: #fff;
}

.quote-form-card-heading h2 {
  margin: 0;
  font-family: var(--abe-font-condensed);
  font-size: clamp(2.1rem, 3vw, 3.15rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.9;
  text-transform: uppercase;
}

.quote-form-card-heading a {
  flex: 0 0 auto;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.10em;
  text-transform: uppercase;
}

.quote-form-card-heading a:hover,
.quote-form-card-heading a:focus-visible {
  color: #fff;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
  outline: none;
}

.quote-consent-note {
  margin: 0;
  padding: 18px 26px 24px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.45;
}

.quote-intake-form {
  display: grid;
  gap: 14px;
  padding: 0 26px 8px;
}

.quote-intake-form label {
  display: grid;
  gap: 7px;
}

.quote-intake-form label > span {
  color: rgba(255, 255, 255, 0.90);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.quote-intake-form input,
.quote-intake-form select,
.quote-intake-form textarea {
  width: 100%;
  min-height: 52px;
  padding: 0 14px;
  border: 2px solid rgba(2, 4, 6, 0.92);
  background: #fff;
  color: var(--abe-ink);
  font-size: 1rem;
  font-weight: 800;
  outline: none;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.26);
}

.quote-intake-form textarea {
  min-height: 128px;
  padding-top: 14px;
  resize: vertical;
}

.quote-intake-form input:focus,
.quote-intake-form select:focus,
.quote-intake-form textarea:focus {
  border-color: var(--abe-orange);
  box-shadow:
    0 0 0 3px rgba(255, 91, 34, 0.25),
    inset 0 0 0 1px rgba(255, 255, 255, 0.28);
}

.quote-submit-button {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
  padding: 0 22px;
  border: 0;
  background: var(--abe-orange);
  color: #fff;
  cursor: pointer;
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.10em;
  line-height: 1;
  text-transform: uppercase;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}

.quote-submit-button:hover,
.quote-submit-button:focus-visible {
  background: #ff6c39;
  box-shadow: 0 18px 42px rgba(255, 91, 34, 0.34);
  outline: none;
  transform: translateY(-2px);
}

.quote-submit-button:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
  box-shadow: none;
}

.quote-form-status {
  min-height: 22px;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.82rem;
  font-weight: 900;
  line-height: 1.35;
}

.schedule-service-page {
  background:
    radial-gradient(circle at 10% 0%, rgba(255, 91, 34, 0.12), transparent 30%),
    radial-gradient(circle at 88% 7%, rgba(142, 208, 255, 0.12), transparent 32%),
    linear-gradient(180deg, rgba(4, 8, 12, 0.98), rgba(11, 15, 20, 1));
}

.schedule-page-section {
  padding-top: 58px;
}

.schedule-service-layout {
  display: grid;
  grid-template-columns: minmax(310px, 0.55fr) minmax(620px, 0.8fr);
  gap: clamp(28px, 4vw, 54px);
  align-items: start;
}

.schedule-context-panel {
  min-width: 0;
  display: grid;
  gap: 18px;
}

.schedule-hours-card {
  min-height: 300px;
  display: grid;
  align-content: end;
  gap: 18px;
  overflow: hidden;
  padding: clamp(28px, 4vw, 46px);
  position: relative;
  background:
    linear-gradient(135deg, rgba(255, 91, 34, 0.88), rgba(255, 91, 34, 0.54)),
    linear-gradient(140deg, rgba(255, 255, 255, 0.09), transparent 38%),
    #1b2129;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.32);
}

.schedule-hours-card::before {
  content: "";
  position: absolute;
  inset: 22px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  pointer-events: none;
}

.schedule-hours-card span,
.schedule-info-grid span {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1.1;
  text-transform: uppercase;
}

.schedule-hours-card strong {
  position: relative;
  z-index: 1;
  display: block;
  font-family: var(--abe-font-condensed);
  font-size: 5.8rem;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.84;
  text-transform: uppercase;
}

.schedule-hours-card p {
  position: relative;
  z-index: 1;
  max-width: 420px;
  margin: 0;
  color: rgba(255, 255, 255, 0.90);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.5;
}

.schedule-info-grid {
  display: grid;
  gap: 16px;
}

.schedule-info-grid > div {
  padding: 22px;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--abe-ink);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.20);
}

.schedule-info-grid span {
  color: var(--abe-orange);
}

.schedule-info-grid p {
  margin: 12px 0 0;
  color: rgba(11, 15, 20, 0.66);
  font-weight: 800;
  line-height: 1.48;
}

.schedule-form-card {
  background:
    linear-gradient(145deg, rgba(33, 71, 158, 0.96), rgba(15, 32, 74, 0.98)),
    #21479e;
}

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

.schedule-intake-form select[name="preferredTime"] {
  cursor: pointer;
}

@media (max-width: 1180px) {
  .quote-page-heading,
  .quote-contact-layout,
  .schedule-service-layout {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .quote-contact-cards,
  .schedule-field-grid {
    grid-template-columns: 1fr;
  }

  .schedule-hours-card strong {
    font-size: 4.6rem;
  }
}

@media (max-width: 760px) {
  .schedule-page-section {
    padding-top: 42px;
  }

  .schedule-hours-card {
    min-height: 240px;
  }

  .schedule-hours-card strong {
    font-size: 3.5rem;
  }
}

.service-page.residential-page { --page-accent: var(--abe-orange); --page-accent-soft: rgba(255, 91, 34, 0.16); }
.service-page.appliance-repair-page { --page-accent: var(--abe-orange); --page-accent-soft: rgba(255, 91, 34, 0.16); }
.service-page.refrigeration-repair-page { --page-accent: var(--abe-blue); --page-accent-soft: rgba(142, 208, 255, 0.16); }
.service-page.hvac-repair-page { --page-accent: #ffffff; --page-accent-soft: rgba(255, 255, 255, 0.12); }
.service-page.commercial-page { --page-accent: var(--abe-blue); --page-accent-soft: rgba(142, 208, 255, 0.16); }
.service-page.industrial-page { --page-accent: var(--abe-gold); --page-accent-soft: rgba(215, 180, 106, 0.18); }
.service-page.protection-plan-page { --page-accent: var(--abe-orange); --page-accent-soft: rgba(255, 91, 34, 0.16); }
.service-page.maintenance-page { --page-accent: var(--abe-gold); --page-accent-soft: rgba(215, 180, 106, 0.18); }
.service-page.warranty-support-page { --page-accent: var(--abe-blue); --page-accent-soft: rgba(142, 208, 255, 0.16); }
.service-page.financing-page { --page-accent: #ffffff; --page-accent-soft: rgba(255, 255, 255, 0.12); }
.service-page.membership-plan-page { --page-accent: var(--abe-orange); --page-accent-soft: rgba(255, 91, 34, 0.16); }
.service-page.emergency-response-page { --page-accent: #ff3b20; --page-accent-soft: rgba(255, 59, 32, 0.18); }
.company-page { --page-accent: var(--abe-orange); --page-accent-soft: rgba(255, 91, 34, 0.16); }
.location-page { --page-accent: var(--abe-blue); --page-accent-soft: rgba(142, 208, 255, 0.16); }

.service-hero {
  min-height: calc(100vh - 108px);
  padding: clamp(56px, 8vh, 90px) 0 clamp(72px, 9vh, 108px);
  align-items: center;
  background:
    linear-gradient(90deg, rgba(1, 3, 5, 0.99) 0%, rgba(1, 3, 5, 0.92) 40%, rgba(1, 3, 5, 0.44) 100%),
    linear-gradient(180deg, rgba(1, 3, 5, 0.04), rgba(1, 3, 5, 0.97)),
    radial-gradient(circle at 76% 26%, var(--page-accent-soft, rgba(142, 208, 255, 0.16)), transparent 30%),
    var(--hero-image) center/cover no-repeat;
}

.service-hero::before {
  background:
    linear-gradient(rgba(255, 255, 255, 0.024) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.024) 1px, transparent 1px),
    linear-gradient(116deg, transparent 0 50%, rgba(255, 255, 255, 0.065) 50% 50.25%, transparent 50.25% 100%);
  background-size: 82px 82px, 82px 82px, 100% 100%;
  mask-image: linear-gradient(90deg, #000 0%, rgba(0, 0, 0, 0.8) 58%, transparent 100%);
}

.service-hero::after {
  content: "";
  position: absolute;
  left: max(32px, calc((100vw - 1420px) / 2));
  right: max(32px, calc((100vw - 1420px) / 2));
  bottom: 30px;
  height: 1px;
  background: linear-gradient(90deg, var(--page-accent, var(--abe-orange)), rgba(255, 255, 255, 0.24), transparent);
  pointer-events: none;
}

.service-hero-grid {
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, 500px);
  align-items: center;
}

.service-hero-grid::before {
  content: "BIG-ABE SERVICE OPERATIONS";
  position: absolute;
  left: 0;
  top: -34px;
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.045);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.kicker {
  color: var(--page-accent, var(--abe-orange));
  letter-spacing: 0.13em;
}

.service-hero h1 {
  max-width: 930px;
  font-size: clamp(4rem, 7.2vw, 7.4rem);
  line-height: 0.84;
  text-wrap: balance;
}

.service-hero h1::after {
  content: "";
  display: block;
  width: min(220px, 34vw);
  height: 3px;
  margin-top: 22px;
  background: linear-gradient(90deg, var(--page-accent, var(--abe-orange)), transparent);
}

.service-hero p {
  max-width: 720px;
  font-size: clamp(1rem, 1.16vw, 1.18rem);
  line-height: 1.45;
}

.hero-proof {
  gap: 0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.035);
}

.proof-item {
  border: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.13);
  background: transparent;
}

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

.hero-panel {
  position: relative;
  padding: 30px;
  background:
    linear-gradient(180deg, rgba(18, 27, 36, 0.94), rgba(6, 10, 15, 0.80));
}

.hero-panel::before {
  content: "OPERATIONS STACK";
  display: block;
  margin: -2px 0 14px;
  color: var(--page-accent, var(--abe-orange));
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.hero-panel::after {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, var(--page-accent, var(--abe-orange)), transparent);
}

.panel-list {
  counter-reset: panel-step;
}

.panel-list li {
  counter-increment: panel-step;
  position: relative;
  padding-left: 54px;
}

.panel-list li::before {
  content: counter(panel-step, decimal-leading-zero);
  position: absolute;
  left: 15px;
  top: 17px;
  color: var(--page-accent, var(--abe-orange));
  font-size: 0.68rem;
  font-weight: 900;
}

.content-section {
  background:
    linear-gradient(180deg, rgba(2, 4, 6, 0.08), transparent 130px),
    var(--abe-paper);
}

.section-header-clean {
  align-items: start;
}

.section-title {
  text-wrap: balance;
}

.capability-grid {
  counter-reset: capability-step;
  gap: 0;
  border: 1px solid var(--abe-paper-line);
  background: var(--abe-paper-2);
}

.capability-card {
  counter-increment: capability-step;
  position: relative;
  min-height: 330px;
  border: 0;
  border-right: 1px solid var(--abe-paper-line);
  border-bottom: 1px solid var(--abe-paper-line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.70), rgba(255, 255, 255, 0)),
    var(--abe-paper-2);
}

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

.capability-card::before {
  content: "WORK ORDER " counter(capability-step, decimal-leading-zero);
  display: inline-flex;
  width: fit-content;
  margin-bottom: 22px;
  padding: 7px 10px;
  border-left: 3px solid var(--page-accent, var(--abe-orange));
  background: rgba(11, 15, 20, 0.06);
  color: var(--abe-ink);
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.capability-card h3 {
  font-size: clamp(1.9rem, 2.4vw, 2.55rem);
  line-height: 0.9;
}

.capability-card li {
  min-height: 32px;
  border-bottom: 1px solid rgba(11, 15, 20, 0.08);
  padding-bottom: 8px;
}

.capability-card li::before {
  color: var(--page-accent, var(--abe-orange));
}

.service-plan-detail-section {
  padding: 104px 0 118px;
  background:
    linear-gradient(180deg, rgba(2, 4, 6, 0.04), transparent 170px),
    var(--abe-paper);
  color: var(--abe-ink);
}

.service-plan-header {
  margin-bottom: 42px;
}

.comparison-grid,
.service-program-grid,
.plan-grid {
  display: grid;
  gap: 0;
  border: 1px solid var(--abe-paper-line);
  background: var(--abe-paper-line);
}

.comparison-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 22px;
}

.service-program-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 22px;
}

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

.comparison-card,
.service-program-card,
.plan-card {
  display: grid;
  align-content: start;
  gap: 14px;
  min-width: 0;
  min-height: 100%;
  padding: clamp(24px, 2.4vw, 34px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.76), rgba(255, 255, 255, 0)),
    var(--abe-paper-2);
  border-right: 1px solid var(--abe-paper-line);
  border-bottom: 1px solid var(--abe-paper-line);
}

.comparison-card h3,
.service-program-card h3,
.plan-card h3 {
  margin: 0;
  color: var(--abe-ink);
  font-family: var(--abe-font-condensed);
  font-size: clamp(1.55rem, 2vw, 2.35rem);
  font-weight: 900;
  line-height: 0.94;
  text-transform: uppercase;
}

.comparison-card p,
.comparison-card li,
.service-program-card p,
.service-program-card li,
.plan-card p,
.plan-card li {
  color: var(--abe-muted);
  font-weight: 800;
  line-height: 1.45;
}

.comparison-card ul,
.service-program-card ul,
.plan-card ul {
  display: grid;
  gap: 9px;
  margin: 4px 0 0;
  padding: 0;
  list-style: none;
}

.comparison-card li,
.service-program-card li,
.plan-card li {
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(11, 15, 20, 0.08);
}

.comparison-card li::before,
.service-program-card li::before,
.plan-card li::before {
  content: "- ";
  color: var(--page-accent, var(--abe-orange));
  font-weight: 900;
}

.service-program-card a {
  width: fit-content;
  margin-top: 8px;
  border-bottom: 2px solid var(--page-accent, var(--abe-orange));
  color: var(--abe-ink);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.plan-card {
  position: relative;
}

.plan-card.featured {
  background:
    linear-gradient(180deg, rgba(255, 91, 34, 0.12), rgba(255, 255, 255, 0)),
    var(--abe-paper-2);
}

.plan-badge {
  width: fit-content;
  padding: 7px 10px;
  background: var(--page-accent, var(--abe-orange));
  color: #fff;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.plan-price {
  color: var(--abe-ink);
  font-family: var(--abe-font-condensed);
  font-size: clamp(2.25rem, 3vw, 3.45rem);
  font-weight: 900;
  line-height: 0.9;
}

.plan-price span {
  color: var(--abe-muted);
  font-size: 0.95rem;
  font-weight: 900;
}

.plan-card .site-btn {
  width: 100%;
  margin-top: auto;
}

@media (max-width: 1180px) {
  .comparison-grid,
  .service-program-grid,
  .plan-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .service-plan-detail-section {
    padding: 78px 0;
  }

  .comparison-grid,
  .service-program-grid,
  .plan-grid {
    grid-template-columns: 1fr;
  }
}

.dark-band {
  background:
    linear-gradient(90deg, rgba(1, 3, 5, 0.98), rgba(1, 3, 5, 0.72)),
    radial-gradient(circle at 78% 28%, var(--page-accent-soft, rgba(142, 208, 255, 0.12)), transparent 30%),
    var(--band-image) center/cover no-repeat;
}

.dark-panel {
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.34);
}

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

.operations-list li {
  min-height: 118px;
}

.inline-section-action {
  display: flex;
  justify-content: flex-start;
  margin-top: 30px;
}

.technician-preview {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.52), rgba(255, 255, 255, 0) 180px),
    var(--abe-paper);
}

.service-cta {
  background:
    linear-gradient(90deg, rgba(1, 3, 5, 0.98), rgba(1, 3, 5, 0.76)),
    radial-gradient(circle at 82% 42%, var(--page-accent-soft, rgba(255, 91, 34, 0.14)), transparent 30%),
    #020406;
  text-align: left;
}

.service-cta .site-container {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 34px;
  align-items: end;
}

.service-cta h2 {
  max-width: 820px;
}

.service-cta p {
  margin-left: 0;
}

.location-market-hero .service-hero-grid::before {
  content: "BIG-ABE MARKET DISPATCH";
}

.location-market-hero .hero-panel::before {
  content: "LOCAL DISPATCH PROFILE";
}

.hyperlocal-page .service-hero-grid::before {
  content: "LOCAL CONVERSION FUNNEL";
}

.hyperlocal-page .hero-panel::before {
  content: "LOCAL CUSTOMER INTENT";
}

@media (max-width: 1180px) {
  .service-hero-grid {
    grid-template-columns: 1fr;
  }

  .service-hero-grid::before {
    top: -28px;
  }

  .capability-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    border: 0;
    background: transparent;
  }

  .capability-card,
  .capability-card:nth-child(3n) {
    border: 1px solid var(--abe-paper-line);
  }

  .service-cta .site-container {
    grid-template-columns: 1fr;
  }

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

  .operations-list li {
    min-height: auto;
  }
}

@media (max-width: 760px) {
  .site-topbar {
    height: 34px;
    overflow: hidden;
  }

  .site-topbar-inner > div:first-child {
    display: none;
  }

  .site-topbar-inner {
    justify-content: center;
    text-align: center;
  }

  .site-topbar-inner > div:last-child {
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 0.62rem;
  }

  .service-hero {
    padding-top: 58px;
    padding-bottom: 62px;
  }

  .service-hero-grid::before {
    position: static;
    width: fit-content;
    margin-bottom: 18px;
  }

  .service-hero h1 {
    font-size: clamp(3rem, 14vw, 4.7rem);
  }

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

  .proof-item,
  .proof-item:last-child {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  }

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

  .hero-panel {
    padding: 22px;
  }

  .panel-list li {
    padding-left: 46px;
  }
}
