:root {
  --blue: #0878f9;
  --blue-deep: #0457d6;
  --blue-soft: #e9f4ff;
  --cyan: #33c5ff;
  --lime: #9dff1c;
  --lime-deep: #6fc900;
  --navy: #071d36;
  --navy-2: #0b2949;
  --ink: #10263d;
  --muted: #64768a;
  --line: #dbe7f1;
  --ice: #f4f9fe;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(10, 47, 82, 0.14);
  --shadow-soft: 0 12px 35px rgba(10, 47, 82, 0.09);
  --radius-sm: 12px;
  --radius: 22px;
  --radius-lg: 34px;
  --container: 1240px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
}

:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--blue) 60%, white);
  outline-offset: 3px;
}

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

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 10px;
  left: 10px;
  transform: translateY(-160%);
  padding: 10px 16px;
  border-radius: 8px;
  background: var(--navy);
  color: white;
  transition: transform 0.2s ease;
}

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

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

.section {
  padding: 112px 0;
}

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

h1,
h2,
h3 {
  color: var(--navy);
  font-weight: 750;
  letter-spacing: -0.045em;
  line-height: 1.05;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2.25rem, 5vw, 4.8rem);
}

h3 {
  margin-bottom: 10px;
  font-size: 1.35rem;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--blue-deep);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 24px;
  height: 2px;
  border-radius: 2px;
  background: var(--lime-deep);
  box-shadow: 7px 0 0 rgba(111, 201, 0, 0.25);
}

.eyebrow.light {
  color: #bfe2ff;
}

.eyebrow.light > span {
  background: var(--lime);
}

.button {
  position: relative;
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 12px 21px;
  font-size: 0.93rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
  overflow: hidden;
}

.button::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 25%, rgba(255, 255, 255, 0.34) 50%, transparent 75%);
  transform: translateX(-130%);
  transition: transform 0.6s ease;
}

.button:hover::after {
  transform: translateX(130%);
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: linear-gradient(135deg, var(--blue), var(--blue-deep));
  box-shadow: 0 13px 30px rgba(8, 120, 249, 0.26);
  color: white;
}

.button-primary:hover {
  box-shadow: 0 18px 38px rgba(8, 120, 249, 0.35);
}

.button-large {
  min-height: 58px;
  padding-inline: 27px;
}

.button-ghost {
  border-color: rgba(10, 45, 75, 0.2);
  background: rgba(255, 255, 255, 0.66);
  color: var(--navy);
  backdrop-filter: blur(14px);
}

.button-outline {
  border-color: #bfd0df;
  background: white;
  color: var(--navy);
}

.button-outline:hover {
  border-color: var(--blue);
  color: var(--blue-deep);
}

.button-lime {
  background: var(--lime);
  box-shadow: 0 14px 35px rgba(157, 255, 28, 0.24);
  color: #102900;
}

.button-white {
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.1);
  color: white;
  backdrop-filter: blur(12px);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Header */
.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 92px;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 9px max(24px, calc((100vw - var(--container)) / 2));
  border-bottom: 1px solid transparent;
  transition: background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, min-height 0.3s ease;
}

.site-header.scrolled,
.site-header.solid-header {
  min-height: 80px;
  border-color: rgba(181, 207, 229, 0.68);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 8px 30px rgba(11, 41, 73, 0.08);
  backdrop-filter: blur(20px) saturate(140%);
}

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

.brand-image-wrap {
  width: 76px;
  height: 72px;
  display: grid;
  place-items: center;
}

.brand-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 7px 13px rgba(7, 29, 54, 0.13));
}

.header-actions {
  position: static;
  min-width: 0;
  display: flex;
  flex: 1 1 auto;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
}

.limelight-nav {
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 2px;
  border: 1px solid rgba(154, 184, 207, 0.46);
  border-radius: 999px;
  padding: 5px;
  background: rgba(255, 255, 255, 0.66);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8), 0 9px 30px rgba(8, 52, 90, 0.06);
  backdrop-filter: blur(12px);
  isolation: isolate;
  transform: translate(-50%, -50%);
}

.limelight-nav a {
  position: relative;
  z-index: 2;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0 15px;
  color: #446078;
  font-size: 0.82rem;
  font-weight: 760;
  white-space: nowrap;
  transition: color 0.25s ease;
}

.limelight-nav a:hover,
.limelight-nav a.active {
  color: var(--blue-deep);
}

.nav-light {
  position: absolute;
  z-index: 1;
  left: 5px;
  top: 5px;
  width: 66px;
  height: 38px;
  border: 1px solid rgba(8, 120, 249, 0.22);
  border-radius: 999px;
  background: radial-gradient(circle at 50% 120%, rgba(157, 255, 28, 0.72), transparent 52%), linear-gradient(180deg, #fff, #dff0ff);
  box-shadow: 0 0 22px rgba(8, 120, 249, 0.22), inset 0 -2px 8px rgba(8, 120, 249, 0.09);
  transition: transform 0.38s cubic-bezier(0.22, 1, 0.36, 1), width 0.38s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform, width;
}

.nav-light::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 50%;
  width: 20px;
  height: 3px;
  transform: translateX(-50%);
  border-radius: 99px;
  background: var(--lime-deep);
  box-shadow: 0 0 12px var(--lime);
}

.phone-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--navy);
  font-size: 0.84rem;
  font-weight: 850;
  white-space: nowrap;
}

.phone-link svg {
  width: 19px;
  fill: none;
  stroke: var(--blue);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.header-cta {
  min-height: 44px;
  padding-inline: 17px;
  white-space: nowrap;
}

.menu-toggle {
  width: 48px;
  height: 48px;
  display: none;
  place-items: center;
  gap: 4px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: white;
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  width: 20px;
  height: 2px;
  display: block;
  border-radius: 3px;
  background: var(--navy);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

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

/* Inspection hero */
.inspection-hero {
  position: relative;
  min-height: 840px;
  display: grid;
  align-items: center;
  padding: 138px 0 72px;
  background:
    radial-gradient(circle at 83% 18%, rgba(51, 197, 255, 0.2), transparent 29%),
    radial-gradient(circle at 64% 83%, rgba(157, 255, 28, 0.11), transparent 26%),
    linear-gradient(145deg, #ffffff 0%, #f1f8ff 72%, #e7f4ff 100%);
  overflow: hidden;
}

.hero-grid,
.schedule-hero-grid,
.final-cta-grid {
  position: absolute;
  inset: 0;
  opacity: 0.36;
  background-image: linear-gradient(rgba(8, 120, 249, 0.09) 1px, transparent 1px), linear-gradient(90deg, rgba(8, 120, 249, 0.09) 1px, transparent 1px);
  background-size: 74px 74px;
  mask-image: linear-gradient(90deg, black, transparent 68%);
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(390px, 0.86fr) minmax(500px, 1.14fr);
  align-items: center;
  gap: clamp(38px, 5vw, 72px);
}

.hero-copy {
  padding-bottom: 8px;
}

.hero-copy h1 {
  margin-bottom: 22px;
  font-size: clamp(3.5rem, 5.4vw, 6.35rem);
  letter-spacing: -0.065em;
  line-height: 0.94;
}

.hero-copy h1 em {
  color: var(--blue-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.69em;
  font-weight: 500;
  letter-spacing: -0.045em;
}

.hero-lede {
  max-width: 590px;
  margin-bottom: 28px;
  color: #3c5871;
  font-size: clamp(1.03rem, 1.35vw, 1.22rem);
  line-height: 1.65;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.hero-proof {
  display: flex;
  gap: 0;
  margin-top: 38px;
}

.hero-proof span {
  display: grid;
  gap: 1px;
  padding: 0 24px;
  border-right: 1px solid rgba(16, 65, 102, 0.19);
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1.3;
  text-transform: uppercase;
}

.hero-proof span:first-child {
  padding-left: 0;
}

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

.hero-proof strong {
  color: var(--navy);
  font-size: 1.13rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  text-transform: none;
}

.hero-visual {
  position: relative;
  min-width: 0;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: -22px 24px 22px -22px;
  border: 1px solid rgba(8, 120, 249, 0.15);
  border-radius: 38px;
  background: linear-gradient(145deg, rgba(8, 120, 249, 0.1), rgba(157, 255, 28, 0.08));
  transform: rotate(-2.2deg);
}

.hero-photo-frame {
  position: relative;
  aspect-ratio: 1.17 / 1;
  border: 7px solid rgba(255, 255, 255, 0.9);
  border-radius: 36px;
  background: #dceefe;
  box-shadow: 0 34px 85px rgba(8, 51, 91, 0.2);
  overflow: hidden;
}

.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-visual:hover .hero-photo {
  transform: scale(1.025);
}

.hero-photo-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(7, 29, 54, 0.18) 100%);
  pointer-events: none;
}

.hero-scan-line {
  position: absolute;
  z-index: 3;
  top: 0;
  bottom: 0;
  left: 8%;
  width: 2px;
  background: var(--lime);
  box-shadow: 0 0 16px var(--lime), 16px 0 48px rgba(157, 255, 28, 0.22), -16px 0 48px rgba(8, 120, 249, 0.2);
  animation: hero-scan 6.4s ease-in-out infinite;
}

@keyframes hero-scan {
  0%, 100% { left: 8%; opacity: 0.2; }
  50% { left: 92%; opacity: 0.92; }
}

.hero-hotspot {
  content: "";
  position: absolute;
  z-index: 6;
  display: flex;
  align-items: center;
  gap: 9px;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.hotspot-scan { top: 25%; right: 7%; }
.hotspot-notes { top: 38%; left: 27%; }
.hotspot-team { top: 58%; left: 54%; }

.hotspot-dot {
  position: relative;
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  border: 5px solid white;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 4px 15px rgba(7, 29, 54, 0.32);
}

.hotspot-dot::after {
  content: "";
  position: absolute;
  inset: -9px;
  border: 1px solid rgba(157, 255, 28, 0.9);
  border-radius: 50%;
  animation: hotspot-pulse 2s ease-out infinite;
}

@keyframes hotspot-pulse {
  0% { transform: scale(0.65); opacity: 1; }
  100% { transform: scale(1.45); opacity: 0; }
}

.hotspot-label {
  border: 1px solid rgba(255, 255, 255, 0.56);
  border-radius: 999px;
  padding: 7px 11px;
  background: rgba(7, 29, 54, 0.8);
  box-shadow: 0 10px 26px rgba(7, 29, 54, 0.2);
  color: white;
  font-size: 0.68rem;
  font-weight: 850;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(-7px);
  transition: opacity 0.35s ease, transform 0.35s ease;
  backdrop-filter: blur(9px);
}

.hero-hotspot.active .hotspot-dot {
  background: var(--lime);
  box-shadow: 0 0 22px rgba(157, 255, 28, 0.95);
}

.hero-hotspot.active .hotspot-label {
  opacity: 1;
  transform: translateX(0);
}

.hero-status-card {
  position: absolute;
  z-index: 7;
  right: 22px;
  bottom: 22px;
  width: min(325px, calc(100% - 44px));
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 20px;
  padding: 17px 18px 15px;
  background: rgba(255, 255, 255, 0.93);
  box-shadow: 0 20px 45px rgba(7, 29, 54, 0.2);
  backdrop-filter: blur(16px);
}

.hero-status-card > p {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 7px;
  color: var(--blue-deep);
  font-size: 0.66rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-status-card > strong {
  display: block;
  color: var(--navy);
  font-size: 1.02rem;
  letter-spacing: -0.02em;
}

.hero-status-card > span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.45;
}

.hero-step-controls {
  display: flex;
  gap: 6px;
  margin-top: 13px;
}

.hero-step-controls button {
  min-width: 38px;
  min-height: 28px;
  border: 1px solid #c9dce9;
  border-radius: 999px;
  background: white;
  color: #71879a;
  font-size: 0.64rem;
  font-weight: 900;
  cursor: pointer;
  transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.hero-step-controls button:hover {
  transform: translateY(-1px);
}

.hero-step-controls button.active {
  border-color: var(--blue);
  background: var(--blue);
  color: white;
}

/* Trust strip */
.trust-strip {
  position: relative;
  z-index: 10;
  border-top: 1px solid #d6e7f4;
  border-bottom: 1px solid #d6e7f4;
  background: white;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.trust-grid > div {
  min-height: 154px;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 28px 34px;
  border-right: 1px solid #dfebf4;
}

.trust-grid > div:first-child { padding-left: 0; }
.trust-grid > div:last-child { border-right: 0; padding-right: 0; }

.trust-icon {
  width: 52px;
  height: 52px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid #bee0ff;
  border-radius: 16px;
  background: linear-gradient(145deg, white, #eaf6ff);
  box-shadow: inset 0 -7px 18px rgba(8, 120, 249, 0.08);
  color: var(--blue);
  font-size: 0.88rem;
  font-weight: 900;
}

.trust-grid p {
  display: grid;
  gap: 4px;
  margin: 0;
}

.trust-grid strong {
  color: var(--navy);
  font-size: 0.99rem;
  letter-spacing: -0.015em;
}

.trust-grid small {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.45;
}

/* Services */
.services-section {
  background: linear-gradient(180deg, #fff 0%, #f4f9fe 100%);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.65fr);
  align-items: end;
  gap: 70px;
  margin-bottom: 66px;
}

.section-heading h2 {
  max-width: 820px;
  margin-bottom: 0;
}

.section-heading > p {
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 1.02rem;
}

.section-heading.compact {
  grid-template-columns: 1fr auto;
  align-items: center;
}

.interactive-services {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(390px, 0.95fr);
  gap: 50px;
  align-items: stretch;
}

.service-list {
  position: relative;
  align-self: center;
  border-top: 1px solid #cbdde9;
}

.service-row {
  position: relative;
  z-index: 2;
  width: 100%;
  min-height: 92px;
  display: grid;
  grid-template-columns: 40px 1fr 32px;
  align-items: center;
  gap: 15px;
  border: 0;
  border-bottom: 1px solid #cbdde9;
  padding: 14px 10px;
  background: transparent;
  text-align: left;
  cursor: pointer;
  transition: color 0.3s ease, padding 0.3s ease;
}

.service-row:hover,
.service-row.active {
  padding-inline: 18px;
}

.service-row.active {
  color: white;
}

.service-highlight {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 92px;
  border-radius: 13px;
  background: linear-gradient(105deg, var(--blue-deep), var(--blue));
  box-shadow: 0 14px 30px rgba(8, 120, 249, 0.18);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), height 0.35s ease;
}

.service-highlight::after {
  content: "";
  position: absolute;
  top: 10px;
  bottom: 10px;
  left: 5px;
  width: 3px;
  border-radius: 6px;
  background: var(--lime);
  box-shadow: 0 0 12px var(--lime);
}

.service-index {
  color: #8196aa;
  font-size: 0.69rem;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.service-row.active .service-index {
  color: #bfe6ff;
}

.service-main {
  display: grid;
  gap: 3px;
}

.service-main strong {
  color: var(--navy);
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.service-main small {
  color: var(--muted);
  font-size: 0.79rem;
  line-height: 1.35;
}

.service-row.active .service-main strong,
.service-row.active .service-main small {
  color: white;
}

.service-arrow {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(100, 118, 138, 0.28);
  border-radius: 50%;
  color: var(--blue);
  transition: transform 0.25s ease, background-color 0.25s ease;
}

.service-row.active .service-arrow {
  border-color: var(--lime);
  background: var(--lime);
  color: #153400;
  transform: rotate(45deg);
}

.service-preview {
  min-height: 620px;
  display: flex;
  flex-direction: column;
  border: 1px solid #cfe1ee;
  border-radius: var(--radius-lg);
  background: white;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.service-preview-image {
  position: relative;
  height: 310px;
  background: #dceefe;
  overflow: hidden;
}

.service-preview-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.28s ease, transform 0.6s ease;
}

.service-preview-image.changing img {
  opacity: 0.2;
  transform: scale(1.06);
}

.preview-scan {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(157, 255, 28, 0.34), transparent);
  transform: translateX(-100%);
}

.service-preview-image.changing .preview-scan {
  animation: preview-scan 0.7s ease;
}

@keyframes preview-scan {
  to { transform: translateX(100%); }
}

.preview-tag {
  position: absolute;
  left: 20px;
  bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  padding: 7px 11px;
  background: rgba(7, 29, 54, 0.8);
  color: white;
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.service-preview-copy {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 31px 34px 34px;
}

.preview-kicker {
  margin-bottom: 8px;
  color: var(--blue);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.service-preview-copy h3 {
  font-size: 1.75rem;
}

.service-preview-copy > p:not(.preview-kicker) {
  margin-bottom: 20px;
  color: var(--muted);
}

.service-preview-copy ul {
  display: grid;
  gap: 8px;
  margin: 0 0 25px;
  padding: 0;
  list-style: none;
}

.service-preview-copy li {
  position: relative;
  padding-left: 25px;
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 700;
}

.service-preview-copy li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;
  width: 17px;
  height: 17px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #e8fbd1;
  color: #4d9800;
  font-size: 0.65rem;
  font-weight: 900;
}

.service-preview-copy > a,
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  color: var(--blue-deep);
  font-size: 0.9rem;
  font-weight: 850;
}

.service-preview-copy > a span,
.text-link span {
  transition: transform 0.25s ease;
}

.service-preview-copy > a:hover span,
.text-link:hover span {
  transform: translateX(5px);
}

/* Reporting */
.report-section {
  background: white;
}

.report-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.8fr);
  gap: clamp(55px, 8vw, 110px);
  align-items: center;
}

.report-visual {
  position: relative;
  padding: 0 38px 50px 0;
}

.report-photo-main {
  position: relative;
  min-height: 610px;
  border-radius: 30px;
  background: #e4f0f9;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.report-photo-main > img {
  width: 100%;
  height: 100%;
  min-height: 610px;
  object-fit: cover;
  object-position: center;
}

.scan-beam {
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: var(--lime);
  box-shadow: 0 0 25px rgba(157, 255, 28, 0.95), 14px 0 50px rgba(8, 120, 249, 0.19);
  animation: report-scan 5s ease-in-out infinite;
}

@keyframes report-scan {
  0%, 100% { left: 8%; opacity: 0.35; }
  50% { left: 92%; opacity: 0.85; }
}

.photo-pin {
  position: absolute;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 7px solid rgba(255, 255, 255, 0.88);
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 5px 18px rgba(0, 41, 77, 0.28);
  cursor: pointer;
}

.photo-pin span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime);
}

.photo-pin::after {
  content: "";
  position: absolute;
  inset: -10px;
  border: 1px solid rgba(157, 255, 28, 0.8);
  border-radius: 50%;
  animation: pin-pulse 2s ease-out infinite;
}

@keyframes pin-pulse {
  0% { transform: scale(0.7); opacity: 1; }
  100% { transform: scale(1.5); opacity: 0; }
}

.pin-one { top: 23%; right: 18%; }
.pin-two { top: 43%; left: 47%; }

.finding-card {
  position: absolute;
  z-index: 4;
  right: 23px;
  bottom: 24px;
  width: min(310px, calc(100% - 46px));
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 18px;
  padding: 18px;
  background: rgba(7, 29, 54, 0.86);
  box-shadow: 0 15px 40px rgba(7, 29, 54, 0.27);
  color: white;
  backdrop-filter: blur(14px);
}

.finding-status {
  display: inline-flex;
  margin-bottom: 10px;
  border-radius: 99px;
  padding: 4px 8px;
  background: var(--lime);
  color: #173800;
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.finding-card strong {
  display: block;
  font-size: 1rem;
}

.finding-card p {
  margin: 5px 0 0;
  color: #cde4f5;
  font-size: 0.77rem;
  line-height: 1.45;
}

.report-mini-card {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 220px;
  border: 1px solid #c9dfed;
  border-radius: 20px;
  padding: 20px;
  background: white;
  box-shadow: var(--shadow-soft);
}

.report-mini-card > span {
  color: var(--muted);
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.report-mini-card strong {
  display: block;
  margin-top: 4px;
  color: var(--navy);
  font-size: 1.35rem;
}

.report-lines {
  display: grid;
  gap: 5px;
  margin-top: 14px;
}

.report-lines i {
  height: 5px;
  border-radius: 5px;
  background: #dfeaf2;
}

.report-lines i:first-child { width: 75%; background: linear-gradient(90deg, var(--blue), #8cc9ff); }
.report-lines i:nth-child(2) { width: 92%; }
.report-lines i:nth-child(3) { width: 58%; }

.report-copy > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.05rem;
}

.feature-stack {
  display: grid;
  gap: 0;
  margin: 34px 0;
  border-top: 1px solid var(--line);
}

.feature-stack article {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 17px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.feature-stack article > span {
  color: var(--blue);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.feature-stack h3 {
  margin-bottom: 5px;
  font-size: 1.05rem;
}

.feature-stack p {
  margin: 0;
  color: var(--muted);
  font-size: 0.87rem;
}

/* Why */
.why-section {
  position: relative;
  background:
    radial-gradient(circle at 86% 8%, rgba(8, 120, 249, 0.25), transparent 30%),
    radial-gradient(circle at 12% 92%, rgba(157, 255, 28, 0.08), transparent 28%),
    var(--navy);
  overflow: hidden;
}

.why-section::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.22;
  background-image: radial-gradient(circle, rgba(255,255,255,0.5) 1px, transparent 1.2px);
  background-size: 28px 28px;
  mask-image: linear-gradient(120deg, transparent 25%, black 65%, transparent);
  pointer-events: none;
}

.why-section .container {
  position: relative;
  z-index: 2;
}

.why-intro {
  display: grid;
  grid-template-columns: 1.1fr 0.65fr;
  gap: 100px;
  align-items: end;
  margin-bottom: 60px;
}

.why-intro h2 {
  margin: 0;
  color: white;
}

.why-intro > p {
  margin-bottom: 7px;
  color: #b7ccdd;
  font-size: 1.03rem;
}

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

.why-card {
  position: relative;
  min-height: 330px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid rgba(180, 218, 247, 0.16);
  border-radius: 24px;
  padding: 30px;
  background: linear-gradient(145deg, rgba(255,255,255,0.1), rgba(255,255,255,0.035));
  color: white;
  overflow: hidden;
  transition: transform 0.35s ease, border-color 0.35s ease, background-color 0.35s ease;
}

.why-card:hover {
  transform: translateY(-6px);
  border-color: rgba(157, 255, 28, 0.45);
  background: linear-gradient(145deg, rgba(255,255,255,0.14), rgba(255,255,255,0.05));
}

.why-card-large {
  min-height: 420px;
  grid-column: span 3;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  background: linear-gradient(110deg, rgba(8,120,249,0.2), rgba(255,255,255,0.05));
}

.card-number {
  position: absolute;
  top: 24px;
  left: 26px;
  color: #8fb0ca;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.why-card h3 {
  color: white;
  font-size: 1.5rem;
}

.why-card p {
  max-width: 520px;
  margin: 0;
  color: #b9cede;
  font-size: 0.92rem;
}

.line-icon {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  margin-bottom: 40px;
  border: 1px solid rgba(157, 255, 28, 0.25);
  border-radius: 18px;
  background: rgba(157, 255, 28, 0.07);
}

.line-icon svg {
  width: 36px;
  fill: none;
  stroke: var(--lime);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.team-orbit {
  position: relative;
  width: min(420px, 37vw);
  aspect-ratio: 1;
  justify-self: end;
  align-self: center;
}

.home-core {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 116px;
  height: 116px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(157,255,28,0.55);
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(157,255,28,0.16), rgba(8,120,249,0.2));
  box-shadow: 0 0 55px rgba(8,120,249,0.25);
  color: var(--lime);
  font-size: 4.5rem;
  transform: translate(-50%, -50%);
}

.orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px dashed rgba(154, 211, 255, 0.28);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.orbit-one { width: 66%; height: 66%; animation: orbit-spin 14s linear infinite; }
.orbit-two { width: 96%; height: 96%; animation: orbit-spin-reverse 20s linear infinite; }

.person-dot {
  position: absolute;
  width: 34px;
  height: 34px;
  border: 8px solid rgba(255,255,255,0.85);
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 9px rgba(8,120,249,0.16), 0 0 28px rgba(8,120,249,0.55);
}

.dot-one { top: 12%; left: 28%; }
.dot-two { right: 12%; bottom: 25%; background: var(--lime-deep); }

@keyframes orbit-spin {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes orbit-spin-reverse {
  to { transform: translate(-50%, -50%) rotate(-360deg); }
}

/* Process */
.process-section {
  background: var(--ice);
}

.process-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 46px;
}

.process-track::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 28px;
  right: 28px;
  height: 1px;
  background: linear-gradient(90deg, var(--blue), #8ebfe9, var(--lime-deep));
}

.process-track article {
  position: relative;
  z-index: 2;
  padding-right: 25px;
}

.process-dot {
  width: 57px;
  height: 57px;
  display: grid;
  place-items: center;
  margin-bottom: 34px;
  border: 8px solid var(--ice);
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 1px #a9ccea;
  color: white;
  font-size: 0.85rem;
  font-weight: 900;
}

.process-track article:nth-child(3) .process-dot {
  background: var(--lime-deep);
  color: #112c00;
}

.process-label {
  margin-bottom: 9px;
  color: var(--blue-deep);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.process-track h3 {
  font-size: 1.35rem;
}

.process-track article > p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 0.91rem;
}

/* Service area map */
.area-section {
  background: white;
}

.area-grid {
  display: grid;
  grid-template-columns: minmax(340px, 0.72fr) minmax(500px, 1.15fr);
  gap: clamp(55px, 8vw, 120px);
  align-items: center;
}

.area-copy > p:not(.eyebrow):not(.area-status) {
  color: var(--muted);
  font-size: 1.02rem;
}

.area-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 28px 0 20px;
}

.area-pills button {
  border: 1px solid #c8dce9;
  border-radius: 999px;
  padding: 9px 13px;
  background: white;
  color: #4f6579;
  font-size: 0.78rem;
  font-weight: 800;
  cursor: pointer;
  transition: 0.25s ease;
}

.area-pills button:hover,
.area-pills button.active {
  border-color: var(--blue);
  background: var(--blue-soft);
  color: var(--blue-deep);
}

.area-status {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 0.8rem;
}

.area-status > span,
.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime-deep);
  box-shadow: 0 0 0 5px rgba(111, 201, 0, 0.13), 0 0 10px rgba(111, 201, 0, 0.55);
}

.area-status strong {
  color: var(--navy);
}

.region-map {
  position: relative;
  min-height: 540px;
  border: 1px solid #cbe0ee;
  border-radius: 32px;
  background:
    radial-gradient(circle at 52% 48%, rgba(8,120,249,0.14), transparent 36%),
    linear-gradient(145deg, #f9fcff, #eaf5fd);
  box-shadow: var(--shadow);
  isolation: isolate;
  overflow: hidden;
}

.map-dot-field {
  position: absolute;
  inset: 0;
  opacity: 0.46;
  background-image: radial-gradient(circle, rgba(27, 100, 158, 0.42) 1.2px, transparent 1.4px);
  background-size: 18px 18px;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 78%);
}

.map-scan {
  position: absolute;
  z-index: 2;
  top: -20%;
  left: 0;
  width: 100%;
  height: 15%;
  background: linear-gradient(180deg, transparent, rgba(8,120,249,0.13), rgba(157,255,28,0.2), transparent);
  animation: map-scan 5.8s ease-in-out infinite;
  pointer-events: none;
}

@keyframes map-scan {
  0%, 100% { top: -20%; }
  50% { top: 105%; }
}

.map-routes {
  position: absolute;
  z-index: 1;
  inset: 0;
  width: 100%;
  height: 100%;
}

.map-routes path {
  fill: none;
  stroke: rgba(8, 120, 249, 0.34);
  stroke-dasharray: 7 9;
  stroke-linecap: round;
  stroke-width: 2;
  animation: route-flow 13s linear infinite;
}

@keyframes route-flow {
  to { stroke-dashoffset: -128; }
}

.map-node {
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.map-node i {
  position: relative;
  width: 18px;
  height: 18px;
  border: 5px solid white;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 1px #82bbee, 0 7px 18px rgba(8,120,249,0.28);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.map-node i::after {
  content: "";
  position: absolute;
  inset: -10px;
  border: 1px solid rgba(8,120,249,0.36);
  border-radius: 50%;
  animation: map-pulse 2.4s ease-out infinite;
}

@keyframes map-pulse {
  from { transform: scale(0.65); opacity: 1; }
  to { transform: scale(1.55); opacity: 0; }
}

.map-node span {
  display: grid;
  border: 1px solid rgba(177, 208, 231, 0.9);
  border-radius: 11px;
  padding: 7px 10px;
  background: rgba(255,255,255,0.91);
  box-shadow: 0 8px 22px rgba(11,41,73,0.1);
  color: var(--navy);
  font-size: 0.82rem;
  font-style: normal;
  font-weight: 900;
  line-height: 1.2;
  transition: border-color 0.25s ease, transform 0.25s ease;
  backdrop-filter: blur(9px);
}

.map-node small {
  color: var(--muted);
  font-size: 0.59rem;
  font-weight: 720;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.map-node:hover span,
.map-node.active span {
  border-color: var(--blue);
  transform: translateY(-3px);
}

.map-node.active i {
  background: var(--lime-deep);
  transform: scale(1.28);
}

.node-pa { top: 24%; right: 21%; }
.node-md { top: 51%; right: 29%; }
.node-dc { top: 62%; right: 20%; }
.node-wv { top: 56%; left: 20%; }

.map-legend {
  position: absolute;
  z-index: 6;
  left: 23px;
  bottom: 22px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(181, 208, 228, 0.85);
  border-radius: 999px;
  padding: 9px 13px;
  background: rgba(255,255,255,0.88);
  color: #4b6277;
  font-size: 0.69rem;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.map-legend .live-dot {
  width: 7px;
  height: 7px;
}

/* FAQ */
.faq-section {
  background: var(--ice);
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(470px, 1fr);
  gap: clamp(60px, 9vw, 130px);
  align-items: start;
}

.faq-intro {
  position: sticky;
  top: 120px;
}

.faq-intro > p:not(.eyebrow) {
  color: var(--muted);
}

.phone-card {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  margin-top: 30px;
  border: 1px solid #c6deec;
  border-radius: 18px;
  padding: 17px 19px;
  background: white;
  box-shadow: var(--shadow-soft);
}

.phone-card span {
  grid-column: 1;
  color: var(--muted);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.phone-card strong {
  grid-column: 1;
  color: var(--navy);
  font-size: 1.28rem;
}

.phone-card i {
  grid-column: 2;
  grid-row: 1 / span 2;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--lime);
  color: #183500;
  font-style: normal;
}

.faq-list {
  border-top: 1px solid #c9dce9;
}

.faq-list details {
  border-bottom: 1px solid #c9dce9;
}

.faq-list summary {
  display: grid;
  grid-template-columns: 1fr 30px;
  align-items: center;
  gap: 20px;
  padding: 25px 0;
  color: var(--navy);
  font-size: 1.02rem;
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker { display: none; }

.faq-list summary span {
  position: relative;
  width: 28px;
  height: 28px;
  border: 1px solid #b6ccdc;
  border-radius: 50%;
}

.faq-list summary span::before,
.faq-list summary span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 1px;
  background: var(--blue);
  transform: translate(-50%, -50%);
  transition: transform 0.3s ease;
}

.faq-list summary span::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-list details[open] summary span::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-list details > p {
  max-width: 720px;
  margin: -5px 50px 25px 0;
  color: var(--muted);
}

/* Final CTA */
.final-cta {
  position: relative;
  padding: 110px 0;
  background: linear-gradient(125deg, #053d91, var(--blue), #068bb8);
  color: white;
  overflow: hidden;
}

.final-cta::before {
  content: "";
  position: absolute;
  top: -130px;
  right: -80px;
  width: 560px;
  height: 560px;
  border: 1px solid rgba(157,255,28,0.35);
  border-radius: 50%;
  box-shadow: 0 0 0 55px rgba(255,255,255,0.04), 0 0 0 110px rgba(255,255,255,0.025);
}

.final-cta-grid {
  opacity: 0.22;
  mask-image: linear-gradient(90deg, black, black);
}

.final-cta-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.final-cta-content .eyebrow {
  justify-content: center;
}

.final-cta h2 {
  color: white;
}

.final-cta-content > p:not(.eyebrow) {
  margin-bottom: 32px;
  color: #d6ebfb;
  font-size: 1.1rem;
}

.final-cta .hero-buttons {
  justify-content: center;
}

/* Footer */
.site-footer {
  background: #06172a;
  color: white;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.45fr repeat(3, 0.65fr);
  gap: 55px;
  padding-top: 72px;
  padding-bottom: 60px;
}

.footer-brand img {
  width: 190px;
  height: 105px;
  object-fit: contain;
  object-position: left center;
  margin-bottom: 20px;
  border-radius: 18px;
}

.footer-brand p {
  max-width: 360px;
  color: #9fb6c8;
  font-size: 0.88rem;
}

.footer-top h3 {
  margin-bottom: 18px;
  color: #dcecff;
  font-size: 0.75rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.footer-top > div:not(.footer-brand) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-top > div:not(.footer-brand) > a:not(.button) {
  margin-bottom: 8px;
  color: #a9becf;
  font-size: 0.84rem;
  transition: color 0.2s ease;
}

.footer-top > div:not(.footer-brand) > a:hover {
  color: var(--lime);
}

.footer-phone {
  color: white !important;
  font-size: 1.2rem !important;
  font-weight: 850;
}

.footer-contact p {
  color: #8da6b9;
  font-size: 0.78rem;
}

.footer-contact .button {
  min-height: 42px;
  margin-top: 6px;
  padding-inline: 15px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  border-top: 1px solid rgba(174, 208, 232, 0.12);
  padding-top: 20px;
  padding-bottom: 22px;
  color: #7791a4;
  font-size: 0.72rem;
}

.footer-bottom p { margin: 0; }
.footer-bottom a { color: #a9c0d1; }

.compact-footer .footer-bottom {
  border-top: 0;
}

/* Schedule page */
.schedule-main {
  padding-top: 76px;
  background: var(--ice);
}

.schedule-hero {
  position: relative;
  padding: 90px 0 80px;
  background:
    radial-gradient(circle at 88% 15%, rgba(8,120,249,0.13), transparent 32%),
    linear-gradient(180deg, white, #eef7ff);
  overflow: hidden;
}

.schedule-hero::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 8%;
  width: 300px;
  height: 300px;
  border: 1px solid rgba(8,120,249,0.14);
  border-radius: 50%;
  box-shadow: 0 0 0 45px rgba(8,120,249,0.035), 0 0 0 90px rgba(8,120,249,0.025);
  transform: translateY(-50%);
}

.schedule-hero-grid {
  opacity: 0.32;
}

.schedule-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(380px, 0.85fr);
  gap: 80px;
  align-items: end;
}

.schedule-hero-copy h1 {
  max-width: 760px;
  margin-bottom: 23px;
  font-size: clamp(3.2rem, 6vw, 6.4rem);
}

.schedule-hero-copy > p:not(.eyebrow) {
  max-width: 670px;
  margin: 0;
  color: var(--muted);
  font-size: 1.1rem;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 40px;
  color: #60788d;
  font-size: 0.8rem;
  font-weight: 800;
}

.back-link span { color: var(--blue); }

.schedule-hero-proof {
  display: grid;
  gap: 0;
  border: 1px solid #c8dfef;
  border-radius: 22px;
  padding: 6px 24px;
  background: rgba(255,255,255,0.72);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(14px);
}

.schedule-hero-proof > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 17px 0;
  border-bottom: 1px solid #dce9f2;
}

.schedule-hero-proof > div:last-child { border-bottom: 0; }
.schedule-hero-proof strong { color: var(--navy); font-size: 0.95rem; }
.schedule-hero-proof span { color: var(--muted); font-size: 0.77rem; }

.booking-section {
  padding: 80px 0 110px;
}

.booking-layout {
  display: grid;
  grid-template-columns: minmax(350px, 0.72fr) minmax(560px, 1.15fr);
  gap: 55px;
  align-items: start;
}

.booking-aside {
  position: sticky;
  top: 108px;
}

.booking-aside-head h2 {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
}

.booking-aside-head > p:not(.eyebrow) {
  color: var(--muted);
}

.booking-map {
  min-height: 400px;
  margin-top: 32px;
  border-radius: 24px;
}

.booking-map .node-pa { top: 22%; right: 15%; }
.booking-map .node-md { top: 51%; right: 24%; }
.booking-map .node-dc { top: 65%; right: 13%; }
.booking-map .node-wv { top: 57%; left: 13%; }

.booking-map .map-node span {
  padding: 6px 8px;
}

.booking-contact-card {
  margin-top: 18px;
  border: 1px solid #c7ddeb;
  border-radius: 20px;
  padding: 20px;
  background: white;
  box-shadow: var(--shadow-soft);
}

.booking-contact-card > span {
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.booking-contact-card > a {
  display: block;
  margin: 4px 0 6px;
  color: var(--blue-deep);
  font-size: 1.42rem;
  font-weight: 900;
}

.booking-contact-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.79rem;
}

.request-summary {
  margin-top: 18px;
  border-radius: 20px;
  padding: 22px;
  background: var(--navy);
  color: white;
}

.request-summary > p {
  margin-bottom: 13px;
  color: #a9c7dc;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.request-summary > div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 11px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.79rem;
}

.request-summary span { color: #91aabf; }
.request-summary strong { max-width: 60%; text-align: right; }

.booking-form-card {
  border: 1px solid #c8ddeb;
  border-radius: 30px;
  padding: 38px 42px 46px;
  background: white;
  box-shadow: var(--shadow);
}

.form-progress {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 25px;
}

.form-progress span {
  height: 4px;
  border-radius: 4px;
  background: #dce9f2;
}

.form-progress span.active {
  background: linear-gradient(90deg, var(--blue), var(--cyan));
}

.form-heading {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 34px;
}

.form-heading p {
  margin: 0;
  color: var(--navy);
  font-size: 1.35rem;
  font-weight: 850;
  letter-spacing: -0.03em;
}

.form-heading span {
  align-self: center;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 750;
}

.booking-form fieldset {
  margin: 0 0 38px;
  border: 0;
  border-top: 1px solid var(--line);
  padding: 27px 0 0;
}

.booking-form legend {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 21px;
  padding: 0 15px 0 0;
  color: var(--navy);
  font-size: 0.91rem;
  font-weight: 850;
}

.booking-form legend span {
  width: 29px;
  height: 29px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--blue-soft);
  color: var(--blue-deep);
  font-size: 0.66rem;
}

.form-grid {
  display: grid;
  gap: 17px;
  margin-bottom: 17px;
}

.form-grid:last-child { margin-bottom: 0; }
.form-grid.two-col { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.form-grid.three-col { grid-template-columns: 1.15fr 1fr 0.8fr; }

.booking-form label {
  display: grid;
  gap: 7px;
  color: #2a4258;
  font-size: 0.73rem;
  font-weight: 800;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  border: 1px solid #c7d9e6;
  border-radius: 12px;
  padding: 13px 14px;
  background: #fbfdff;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 500;
  outline: 0;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.booking-form input,
.booking-form select {
  min-height: 51px;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  border-color: var(--blue);
  background: white;
  box-shadow: 0 0 0 4px rgba(8,120,249,0.1);
}

.booking-form input::placeholder,
.booking-form textarea::placeholder {
  color: #9aabb9;
}

.booking-form .field-error {
  border-color: #e35757;
  box-shadow: 0 0 0 4px rgba(227,87,87,0.09);
}

.service-check-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 11px;
}

.service-check {
  position: relative;
  min-height: 82px;
  display: grid !important;
  grid-template-columns: 23px 1fr;
  align-items: center;
  gap: 12px !important;
  border: 1px solid #c9dbe7;
  border-radius: 14px;
  padding: 14px;
  background: #fbfdff;
  cursor: pointer;
  transition: border-color 0.25s ease, background-color 0.25s ease, transform 0.25s ease;
}

.service-check:hover {
  transform: translateY(-2px);
  border-color: #90bee3;
}

.service-check.checked {
  border-color: var(--blue);
  background: var(--blue-soft);
}

.service-check input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.check-ui {
  width: 23px;
  height: 23px;
  position: relative;
  border: 1px solid #aabfce;
  border-radius: 7px;
  background: white;
}

.service-check.checked .check-ui {
  border-color: var(--blue);
  background: var(--blue);
}

.service-check.checked .check-ui::after {
  content: "✓";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: white;
  font-size: 0.75rem;
  font-weight: 900;
}

.service-check > span:last-child {
  display: grid;
  gap: 2px;
}

.service-check strong {
  color: var(--navy);
  font-size: 0.81rem;
}

.service-check small {
  color: var(--muted);
  font-size: 0.67rem;
  font-weight: 600;
}

.form-note {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 13px;
  margin-bottom: 22px;
  border: 1px solid #cae2f1;
  border-radius: 14px;
  padding: 14px 16px;
  background: #eff8ff;
}

.form-note svg {
  width: 27px;
  fill: none;
  stroke: var(--blue);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.form-note p {
  margin: 0;
  color: #536d82;
  font-size: 0.74rem;
  line-height: 1.5;
}

.form-submit {
  width: 100%;
}

.form-submit span {
  margin-left: 9px;
}

.form-privacy {
  margin: 12px 0 0;
  color: #8597a7;
  font-size: 0.67rem;
  text-align: center;
}

.form-success {
  min-height: 700px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.form-success[hidden] { display: none; }

.success-mark {
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  margin-bottom: 28px;
  border: 1px solid #b6dc8b;
  border-radius: 50%;
  background: #efffdf;
  box-shadow: 0 0 0 11px rgba(157,255,28,0.11);
}

.success-mark span {
  color: #4b9500;
  font-size: 2.1rem;
  font-weight: 900;
}

.form-success h2 {
  font-size: clamp(2.4rem, 5vw, 4rem);
}

.form-success > p:not(.eyebrow) {
  color: var(--muted);
}

.form-success > p a {
  color: var(--blue-deep);
  font-weight: 900;
}

.success-summary {
  width: 100%;
  display: grid;
  gap: 10px;
  margin: 23px 0 28px;
  border-radius: 16px;
  padding: 18px;
  background: var(--ice);
}

.success-summary div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 9px;
  color: var(--muted);
  font-size: 0.8rem;
}

.success-summary div:last-child { border-bottom: 0; padding-bottom: 0; }
.success-summary strong { color: var(--navy); text-align: right; }

.schedule-assurance {
  border-top: 1px solid var(--line);
  background: white;
}

.assurance-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.assurance-grid article {
  min-height: 190px;
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 17px;
  padding: 44px 32px;
  border-right: 1px solid var(--line);
}

.assurance-grid article:first-child { padding-left: 0; }
.assurance-grid article:last-child { border-right: 0; padding-right: 0; }

.assurance-grid article > span {
  color: var(--blue);
  font-size: 0.69rem;
  font-weight: 900;
}

.assurance-grid h3 {
  font-size: 1.04rem;
}

.assurance-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.81rem;
}

.schedule-help {
  padding: 76px 0;
  background: linear-gradient(120deg, #07306a, #075dd4);
}

.schedule-help-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.schedule-help h2 {
  max-width: 760px;
  margin: 0;
  color: white;
  font-size: clamp(2.2rem, 4vw, 4rem);
}

.schedule-help-inner > a {
  min-width: 280px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 18px;
  padding: 17px 19px;
  background: rgba(255,255,255,0.09);
  color: white;
  backdrop-filter: blur(8px);
}

.schedule-help-inner > a span {
  font-size: 0.69rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.schedule-help-inner > a strong {
  grid-column: 1;
  font-size: 1.28rem;
}

.schedule-help-inner > a i {
  grid-column: 2;
  grid-row: 1 / span 2;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--lime);
  color: #173600;
  font-style: normal;
}

/* Responsive */
@media (max-width: 1180px) {
  .site-header {
    padding-inline: 22px;
  }

  .phone-link span {
    display: none;
  }

  .hero-layout {
    grid-template-columns: minmax(350px, 0.82fr) minmax(470px, 1.18fr);
    gap: 34px;
  }

  .hero-copy h1 {
    font-size: clamp(3.35rem, 5.6vw, 5.5rem);
  }

  .interactive-services {
    grid-template-columns: minmax(0, 1fr) minmax(350px, 0.86fr);
    gap: 30px;
  }

  .service-preview {
    min-height: 590px;
  }

  .area-grid,
  .booking-layout {
    gap: 42px;
  }

  .booking-layout {
    grid-template-columns: minmax(310px, 0.65fr) minmax(520px, 1.1fr);
  }
}

@media (max-width: 980px) {
  .section {
    padding: 88px 0;
  }

  .site-header {
    min-height: 80px;
    background: rgba(255,255,255,0.9);
    border-bottom-color: rgba(181,207,229,0.68);
    backdrop-filter: blur(18px);
  }

  .header-actions {
    position: fixed;
    top: 79px;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 18px;
    padding: 28px 24px 40px;
    background: rgba(247,251,255,0.98);
    transform: translateX(105%);
    transition: transform 0.38s cubic-bezier(0.22,1,0.36,1);
    overflow-y: auto;
  }

  .menu-open .header-actions {
    transform: translateX(0);
  }

  .menu-toggle {
    display: grid;
    margin-left: auto;
  }

  .menu-open .menu-toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .menu-open .menu-toggle span:nth-child(2) { opacity: 0; }
  .menu-open .menu-toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

  .limelight-nav {
    position: relative;
    top: auto;
    left: auto;
    display: grid;
    border: 0;
    border-radius: 0;
    padding: 0;
    background: transparent;
    box-shadow: none;
    transform: none;
  }

  .limelight-nav a {
    min-height: 58px;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    padding: 0 6px;
    font-size: 1.05rem;
  }

  .nav-light {
    display: none;
  }

  .phone-link {
    justify-content: center;
    min-height: 52px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: white;
  }

  .phone-link span {
    display: inline;
  }

  .header-cta {
    min-height: 54px;
  }

  .inspection-hero {
    min-height: auto;
    padding: 126px 0 76px;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-copy {
    max-width: 760px;
  }

  .hero-copy h1 {
    max-width: 780px;
    font-size: clamp(3.7rem, 8vw, 5.9rem);
  }

  .hero-visual {
    width: min(100%, 790px);
  }

  .trust-grid {
    grid-template-columns: 1fr;
    padding-block: 12px;
  }

  .trust-grid > div,
  .trust-grid > div:first-child,
  .trust-grid > div:last-child {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid #dfebf4;
    padding: 22px 0;
  }

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

  .section-heading,
  .why-intro,
  .schedule-hero-inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }

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

  .interactive-services,
  .report-grid,
  .area-grid,
  .faq-grid,
  .booking-layout {
    grid-template-columns: 1fr;
  }

  .service-preview {
    min-height: auto;
  }

  .service-preview-image {
    height: 390px;
  }

  .report-visual {
    order: 2;
  }

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

  .why-card-large {
    grid-column: span 2;
  }

  .area-copy {
    max-width: 650px;
  }

  .faq-intro,
  .booking-aside {
    position: static;
  }

  .schedule-hero-proof {
    max-width: 580px;
  }

  .booking-aside {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }

  .booking-aside-head {
    grid-column: span 2;
  }

  .booking-map {
    grid-column: span 2;
  }

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

  .footer-brand {
    grid-column: span 3;
  }
}

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

  body {
    padding-bottom: 58px;
  }

  .section {
    padding: 72px 0;
  }

  .site-header,
  .site-header.scrolled,
  .site-header.solid-header {
    min-height: 70px;
    padding: 9px 16px;
  }

  .brand-image-wrap {
    width: 58px;
    height: 52px;
  }

  .menu-toggle {
    width: 46px;
    height: 46px;
  }

  .header-actions {
    top: 69px;
  }

  .mobile-call-bar {
    position: fixed;
    z-index: 1100;
    right: 0;
    bottom: 0;
    left: 0;
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    background: linear-gradient(90deg, var(--blue-deep), var(--blue));
    box-shadow: 0 -7px 25px rgba(0,54,105,0.18);
    color: white;
  }

  .mobile-call-bar span {
    font-size: 0.72rem;
    font-weight: 700;
  }

  .mobile-call-bar strong {
    font-size: 1rem;
  }

  .inspection-hero {
    padding: 104px 0 58px;
  }

  .hero-grid {
    background-size: 48px 48px;
  }

  .hero-layout {
    gap: 34px;
  }

  .hero-copy h1 {
    font-size: clamp(3rem, 13vw, 4.6rem);
  }

  .hero-lede {
    margin-bottom: 20px;
    font-size: 0.98rem;
    line-height: 1.5;
  }

  .hero-buttons {
    align-items: stretch;
  }

  .hero-buttons .button {
    flex: 1 1 100%;
  }

  .hero-proof {
    margin-top: 24px;
  }

  .hero-proof span {
    flex: 1;
    padding: 0 10px;
    font-size: 0.59rem;
  }

  .hero-proof strong {
    font-size: 0.82rem;
  }

  .hero-visual::before {
    inset: -11px 12px 12px -11px;
    border-radius: 26px;
  }

  .hero-photo-frame {
    aspect-ratio: 1 / 1;
    border-width: 4px;
    border-radius: 24px;
  }

  .hero-photo {
    object-position: 62% center;
  }

  .hero-status-card {
    right: 12px;
    bottom: 12px;
    width: calc(100% - 24px);
    border-radius: 16px;
    padding: 14px;
  }

  .hotspot-label {
    padding: 6px 9px;
    font-size: 0.6rem;
  }

  .hotspot-scan { top: 20%; right: 5%; }
  .hotspot-notes { top: 38%; left: 13%; }
  .hotspot-team { top: 54%; left: 53%; }

  .hero-step-controls {
    margin-top: 10px;
  }

  .section-heading.compact {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .service-row {
    min-height: 88px;
    grid-template-columns: 30px 1fr 30px;
    gap: 9px;
    padding-inline: 4px;
  }

  .service-row:hover,
  .service-row.active {
    padding-inline: 12px;
  }

  .service-highlight {
    height: 88px;
  }

  .service-main strong { font-size: 0.9rem; }
  .service-main small { font-size: 0.67rem; }

  .service-preview-image {
    height: 250px;
  }

  .service-preview-copy {
    padding: 24px;
  }

  .report-photo-main,
  .report-photo-main > img {
    min-height: 480px;
  }

  .report-visual {
    padding: 0 15px 32px 0;
  }

  .report-mini-card {
    width: 175px;
    padding: 15px;
  }

  .finding-card {
    left: 18px;
    right: 18px;
    width: auto;
  }

  .why-cards {
    grid-template-columns: 1fr;
  }

  .why-card-large {
    min-height: 520px;
    grid-column: span 1;
    grid-template-columns: 1fr;
  }

  .team-orbit {
    width: 280px;
    max-width: 100%;
    justify-self: center;
  }

  .process-track {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .process-track::before {
    top: 28px;
    bottom: 28px;
    left: 28px;
    right: auto;
    width: 1px;
    height: auto;
  }

  .process-track article {
    min-height: 190px;
    padding-left: 82px;
    padding-right: 0;
  }

  .process-dot {
    position: absolute;
    top: 0;
    left: 0;
  }

  .region-map {
    min-height: 450px;
  }

  .map-node span small { display: none; }
  .node-pa { right: 11%; }
  .node-md { right: 17%; }
  .node-dc { right: 8%; }
  .node-wv { left: 10%; }

  .faq-grid {
    gap: 46px;
  }

  .final-cta {
    padding: 78px 0;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 40px 24px;
    padding-top: 55px;
  }

  .footer-brand {
    grid-column: span 2;
  }

  .footer-contact {
    grid-column: span 2;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
  }

  .schedule-main {
    padding-top: 70px;
  }

  .schedule-hero {
    padding: 58px 0 62px;
  }

  .schedule-hero-copy h1 {
    font-size: clamp(3rem, 14vw, 4.5rem);
  }

  .back-link {
    margin-bottom: 28px;
  }

  .booking-section {
    padding: 55px 0 80px;
  }

  .booking-aside {
    grid-template-columns: 1fr;
  }

  .booking-aside-head,
  .booking-map {
    grid-column: span 1;
  }

  .booking-map {
    min-height: 380px;
  }

  .booking-form-card {
    border-radius: 22px;
    padding: 27px 19px 32px;
  }

  .form-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }

  .form-grid.two-col,
  .form-grid.three-col,
  .service-check-grid {
    grid-template-columns: 1fr;
  }

  .form-success {
    min-height: 560px;
  }

  .assurance-grid {
    grid-template-columns: 1fr;
    padding-block: 15px;
  }

  .assurance-grid article,
  .assurance-grid article:first-child,
  .assurance-grid article:last-child {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 27px 0;
  }

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

  .schedule-help-inner {
    align-items: stretch;
    flex-direction: column;
  }

  .schedule-help-inner > a {
    min-width: 0;
  }
}

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* 2026 visual refresh: high-contrast header, regional hero and stable service preview */
.site-header,
.site-header.scrolled,
.site-header.solid-header {
  min-height: 0;
  display: block;
  padding: 0;
  border-bottom: 1px solid rgba(154, 198, 232, 0.16);
  background: rgba(7, 29, 54, 0.98);
  box-shadow: 0 12px 38px rgba(2, 15, 29, 0.22);
  color: white;
  backdrop-filter: blur(20px) saturate(125%);
}

.header-utility {
  border-bottom: 1px solid rgba(169, 204, 231, 0.12);
  background: #04162b;
}

.header-utility-inner {
  min-height: 33px;
  display: flex;
  align-items: center;
  gap: 24px;
  color: #a9bfd2;
  font-size: 0.66rem;
  font-weight: 750;
  letter-spacing: 0.075em;
  line-height: 1;
  text-transform: uppercase;
}

.header-utility-inner > span {
  position: relative;
  white-space: nowrap;
}

.header-utility-inner > span + span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -13px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 8px rgba(157, 255, 28, 0.75);
  transform: translateY(-50%);
}

.header-utility .phone-link {
  margin-left: auto;
  color: white;
  font-size: 0.72rem;
  letter-spacing: 0.035em;
}

.header-utility .phone-link svg {
  width: 16px;
  stroke: var(--lime);
}

.header-main {
  position: relative;
  min-height: 96px;
  display: grid;
  grid-template-columns: minmax(125px, 1fr) auto minmax(235px, 1fr);
  align-items: center;
  gap: 28px;
  transition: min-height 0.3s ease;
}

.site-header.scrolled .header-main {
  min-height: 84px;
}

.brand {
  position: relative;
  z-index: 3;
  justify-self: start;
}

.brand-image-wrap {
  width: 118px;
  height: 92px;
  transition: width 0.3s ease, height 0.3s ease;
}

.site-header.scrolled .brand-image-wrap {
  width: 108px;
  height: 80px;
}

.brand-image-wrap img {
  filter: drop-shadow(0 9px 17px rgba(0, 0, 0, 0.3));
}

.header-panel {
  display: contents;
}

.header-actions {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  justify-self: end;
}

.limelight-nav {
  position: relative;
  top: auto;
  left: auto;
  justify-self: center;
  gap: 2px;
  border-color: rgba(156, 190, 217, 0.2);
  padding: 6px;
  background: rgba(2, 16, 31, 0.68);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.045), 0 12px 32px rgba(0, 0, 0, 0.18);
  transform: none;
}

.limelight-nav a {
  min-height: 46px;
  padding-inline: 17px;
  color: #9fb4c6;
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.limelight-nav a:hover,
.limelight-nav a.active {
  color: white;
}

.nav-light {
  top: 5px;
  left: 5px;
  height: 48px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  box-shadow: none;
  pointer-events: none;
  overflow: visible;
  transition: transform 0.38s cubic-bezier(0.22, 1, 0.36, 1), width 0.38s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.2s ease;
}

.nav-light::before {
  content: "";
  position: absolute;
  z-index: 3;
  top: -8px;
  left: 50%;
  width: 42px;
  height: 7px;
  border-radius: 6px 6px 3px 3px;
  background: linear-gradient(180deg, #ffffff, #b7c4ce);
  box-shadow: 0 0 12px rgba(235, 248, 255, 0.72);
  transform: translateX(-50%);
}

.nav-light i {
  position: absolute;
  z-index: 1;
  top: -1px;
  left: 7%;
  width: 86%;
  height: 51px;
  background: linear-gradient(180deg, rgba(236, 249, 255, 0.5), rgba(103, 185, 255, 0.1) 60%, rgba(157, 255, 28, 0.04));
  clip-path: polygon(34% 0, 66% 0, 100% 100%, 0 100%);
  filter: drop-shadow(0 0 11px rgba(166, 220, 255, 0.28));
}

.nav-light::after {
  bottom: -1px;
  width: 24px;
  height: 3px;
  background: var(--lime);
  box-shadow: 0 0 13px rgba(157, 255, 28, 0.88);
}

.header-cta {
  min-height: 48px;
  padding-inline: 20px;
  font-size: 0.78rem;
  white-space: nowrap;
}

.menu-toggle {
  border-color: rgba(180, 210, 233, 0.22);
  background: rgba(255, 255, 255, 0.06);
}

.menu-toggle span:not(.sr-only) {
  background: white;
}

.inspection-hero {
  position: relative;
  min-height: 870px;
  display: block;
  padding: 0;
  background: var(--navy);
  isolation: isolate;
}

.hero-slides,
.hero-slide,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-slides {
  z-index: -3;
  overflow: hidden;
}

.hero-slide {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transform: scale(1.055);
  transition: opacity 1.05s ease, transform 6.2s ease;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}

.hero-shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(3, 19, 37, 0.92) 0%, rgba(4, 24, 46, 0.74) 42%, rgba(5, 24, 43, 0.3) 72%, rgba(5, 20, 35, 0.42) 100%),
    linear-gradient(180deg, rgba(3, 16, 31, 0.32) 0%, transparent 50%, rgba(3, 18, 34, 0.84) 100%);
}

.hero-stage {
  position: relative;
  min-height: 870px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 205px 0 176px;
}

.hero-copy {
  width: min(920px, 82%);
  padding: 0;
}

.hero-overline {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 18px;
  color: #d8e8f4;
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.hero-overline::before {
  content: "";
  width: 38px;
  height: 4px;
  border-radius: 8px;
  background: var(--lime);
  box-shadow: 0 0 14px rgba(157, 255, 28, 0.55);
}

.hero-copy h1 {
  max-width: 910px;
  margin-bottom: 19px;
  color: white;
  font-family: "Arial Narrow", "Franklin Gothic Condensed", "Roboto Condensed", Impact, sans-serif;
  font-size: clamp(4.3rem, 7.4vw, 7.5rem);
  font-stretch: condensed;
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 0.88;
  text-transform: uppercase;
  text-shadow: 0 8px 30px rgba(0, 0, 0, 0.32);
}

.hero-copy h1 em {
  display: block;
  color: #d9eeff;
  font-family: inherit;
  font-size: 0.78em;
  font-style: normal;
  font-weight: inherit;
  letter-spacing: 0.015em;
}

.hero-subline {
  margin-bottom: 12px;
  color: white;
  font-size: clamp(0.82rem, 1.2vw, 1rem);
  font-weight: 900;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.hero-lede {
  max-width: 690px;
  margin-bottom: 28px;
  color: #d0e0ec;
  font-size: clamp(1rem, 1.32vw, 1.16rem);
  line-height: 1.65;
}

.hero-location-bar {
  position: absolute;
  right: 0;
  bottom: 30px;
  left: 0;
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  align-items: stretch;
  border: 1px solid rgba(190, 221, 244, 0.22);
  border-radius: 20px;
  background: rgba(3, 18, 35, 0.78);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.22);
  overflow: hidden;
  backdrop-filter: blur(16px);
}

.hero-location-now {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 17px 20px;
  border-right: 1px solid rgba(190, 221, 244, 0.16);
}

.hero-location-now span {
  color: #91a9bb;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero-location-now strong {
  color: white;
  font-size: 0.88rem;
  letter-spacing: -0.015em;
}

.hero-step-controls {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin: 0;
}

.hero-step-controls button {
  position: relative;
  min-width: 0;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 0;
  border-right: 1px solid rgba(190, 221, 244, 0.12);
  border-radius: 0;
  background: transparent;
  color: #a9bdcc;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.035em;
  cursor: pointer;
}

.hero-step-controls button:last-child {
  border-right: 0;
}

.hero-step-controls button::before {
  content: "";
  position: absolute;
  right: 16px;
  bottom: 0;
  left: 16px;
  height: 3px;
  border-radius: 5px 5px 0 0;
  background: var(--lime);
  box-shadow: 0 0 14px rgba(157, 255, 28, 0.72);
  transform: scaleX(0);
  transition: transform 0.35s ease;
}

.hero-step-controls button span {
  color: #6e8799;
  font-size: 0.6rem;
}

.hero-step-controls button:hover,
.hero-step-controls button.active {
  background: rgba(255, 255, 255, 0.055);
  color: white;
}

.hero-step-controls button.active::before {
  transform: scaleX(1);
}

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

.trust-grid > div,
.trust-grid > div:first-child,
.trust-grid > div:last-child {
  min-height: 176px;
  gap: 16px;
  padding: 28px 22px;
}

.trust-grid > div:first-child {
  padding-left: 0;
}

.trust-grid > div:last-child {
  padding-right: 0;
}

.trust-icon {
  position: relative;
  width: 72px;
  height: 72px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  border: 1px solid #b9dfff;
  border-radius: 50%;
  background: radial-gradient(circle, white 38%, #eaf6ff 100%);
  box-shadow: 0 8px 24px rgba(8, 120, 249, 0.11), inset 0 -8px 18px rgba(8, 120, 249, 0.06);
}

.trust-icon::before {
  content: "";
  position: absolute;
  inset: -5px;
  border: 2px solid transparent;
  border-top-color: var(--blue);
  border-right-color: var(--lime-deep);
  border-radius: 50%;
  transform: rotate(25deg);
}

.trust-icon b {
  color: var(--blue-deep);
  font-size: 1.15rem;
  font-weight: 950;
  letter-spacing: -0.055em;
  line-height: 1;
}

.trust-icon small {
  color: #648099;
  font-size: 0.48rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.service-row,
.service-row:hover,
.service-row.active {
  padding-inline: 18px;
}

.service-row {
  overflow: hidden;
  border-radius: 13px;
  transition: background-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.service-row:not(.active):hover {
  background: rgba(8, 120, 249, 0.055);
  transform: translateX(3px);
}

.service-row.active {
  border-bottom-color: transparent;
  background: linear-gradient(105deg, var(--blue-deep), var(--blue));
  box-shadow: 0 14px 30px rgba(8, 120, 249, 0.18);
}

.service-row.active::before {
  content: "";
  position: absolute;
  top: 11px;
  bottom: 11px;
  left: 6px;
  width: 3px;
  border-radius: 6px;
  background: var(--lime);
  box-shadow: 0 0 12px var(--lime);
}

.service-highlight,
.preview-scan {
  display: none;
}

.service-preview-image.changing img {
  opacity: 1;
  transform: none;
  animation: service-image-in 0.42s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes service-image-in {
  from { opacity: 0.42; transform: scale(1.025); }
  to { opacity: 1; transform: scale(1); }
}

.footer-brand img {
  width: 150px;
}

.schedule-main {
  padding-top: 129px;
}

@media (max-width: 1180px) {
  .header-utility .phone-link span {
    display: inline;
  }

  .header-main {
    grid-template-columns: minmax(108px, 1fr) auto minmax(190px, 1fr);
    gap: 16px;
  }

  .brand-image-wrap {
    width: 108px;
    height: 84px;
  }

  .limelight-nav a {
    padding-inline: 12px;
    font-size: 0.67rem;
  }

  .header-cta {
    padding-inline: 16px;
    font-size: 0.72rem;
  }

  .trust-grid > div,
  .trust-grid > div:first-child,
  .trust-grid > div:last-child {
    align-items: flex-start;
    flex-direction: column;
    padding-inline: 18px;
  }

  .trust-grid > div:first-child { padding-left: 0; }
  .trust-grid > div:last-child { padding-right: 0; }
}

@media (max-width: 980px) {
  .site-header,
  .site-header.scrolled,
  .site-header.solid-header {
    min-height: 82px;
    padding: 0;
    background: rgba(7, 29, 54, 0.98);
  }

  .header-utility {
    display: none;
  }

  .header-main,
  .site-header.scrolled .header-main {
    min-height: 82px;
    display: flex;
    gap: 16px;
  }

  .brand-image-wrap,
  .site-header.scrolled .brand-image-wrap {
    width: 92px;
    height: 75px;
  }

  .menu-toggle {
    position: relative;
    z-index: 4;
    display: grid;
    margin-left: auto;
  }

  .header-panel {
    position: fixed;
    z-index: 2;
    top: 81px;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 28px 24px 42px;
    background: rgba(4, 22, 43, 0.99);
    transform: translateX(105%);
    transition: transform 0.38s cubic-bezier(0.22, 1, 0.36, 1);
    overflow-y: auto;
  }

  .menu-open .header-panel {
    transform: translateX(0);
  }

  .limelight-nav {
    width: 100%;
    display: grid;
    border: 0;
    border-radius: 0;
    padding: 0;
    background: transparent;
    box-shadow: none;
  }

  .limelight-nav a {
    min-height: 60px;
    border-bottom: 1px solid rgba(183, 210, 231, 0.15);
    border-radius: 0;
    padding: 0 5px;
    color: #b8cbd9;
    font-size: 0.95rem;
  }

  .limelight-nav a.active {
    color: white;
    box-shadow: inset 3px 0 0 var(--lime);
    padding-left: 18px;
  }

  .nav-light {
    display: none;
  }

  .header-actions {
    position: static;
    inset: auto;
    width: 100%;
    display: block;
    padding: 0;
    background: transparent;
    transform: none;
    transition: none;
    overflow: visible;
  }

  .header-cta {
    width: 100%;
    min-height: 56px;
    font-size: 0.86rem;
  }

  .inspection-hero,
  .hero-stage {
    min-height: 820px;
  }

  .hero-stage {
    padding: 154px 0 182px;
  }

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

  .hero-copy h1 {
    font-size: clamp(4rem, 10.5vw, 6.2rem);
  }

  .hero-location-bar {
    grid-template-columns: 1fr;
    bottom: 24px;
  }

  .hero-location-now {
    display: none;
  }

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

  .trust-grid > div,
  .trust-grid > div:first-child,
  .trust-grid > div:last-child {
    min-height: 168px;
    flex-direction: row;
    align-items: center;
    border-right: 1px solid #dfebf4;
    border-bottom: 1px solid #dfebf4;
    padding: 24px;
  }

  .trust-grid > div:nth-child(2n) { border-right: 0; }
  .trust-grid > div:nth-last-child(-n + 2) { border-bottom: 0; }

  .schedule-main {
    padding-top: 82px;
  }
}

@media (max-width: 700px) {
  .site-header,
  .site-header.scrolled,
  .site-header.solid-header {
    min-height: 76px;
    padding: 0;
  }

  .header-main,
  .site-header.scrolled .header-main {
    min-height: 76px;
  }

  .brand-image-wrap,
  .site-header.scrolled .brand-image-wrap {
    width: 84px;
    height: 69px;
  }

  .header-panel {
    top: 75px;
  }

  .inspection-hero,
  .hero-stage {
    min-height: 790px;
  }

  .hero-stage {
    justify-content: flex-start;
    padding: 138px 0 172px;
  }

  .hero-shade {
    background: linear-gradient(90deg, rgba(3, 19, 37, 0.9), rgba(4, 24, 46, 0.6)), linear-gradient(180deg, rgba(3, 16, 31, 0.25), transparent 42%, rgba(3, 18, 34, 0.88));
  }

  .hero-slide {
    object-position: 62% center;
  }

  .hero-overline {
    margin-bottom: 15px;
    font-size: 0.62rem;
    letter-spacing: 0.17em;
  }

  .hero-copy h1 {
    font-size: clamp(3.15rem, 15vw, 4.8rem);
    line-height: 0.91;
  }

  .hero-copy h1 em {
    font-size: 0.73em;
    line-height: 1.03;
  }

  .hero-subline {
    font-size: 0.68rem;
    letter-spacing: 0.16em;
  }

  .hero-lede {
    max-width: 520px;
    font-size: 0.92rem;
    line-height: 1.5;
  }

  .hero-location-bar {
    bottom: 18px;
    border-radius: 15px;
  }

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

  .hero-step-controls button {
    min-height: 54px;
    border-bottom: 1px solid rgba(190, 221, 244, 0.12);
    font-size: 0.62rem;
  }

  .hero-step-controls button:nth-child(2n) { border-right: 0; }
  .hero-step-controls button:nth-last-child(-n + 2) { border-bottom: 0; }

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

  .trust-grid > div,
  .trust-grid > div:first-child,
  .trust-grid > div:last-child {
    min-height: 132px;
    border-right: 0;
    border-bottom: 1px solid #dfebf4;
    padding: 22px 0;
  }

  .trust-grid > div:nth-last-child(-n + 2) { border-bottom: 1px solid #dfebf4; }
  .trust-grid > div:last-child { border-bottom: 0; }

  .trust-icon {
    width: 64px;
    height: 64px;
  }

  .service-row,
  .service-row:hover,
  .service-row.active {
    padding-inline: 13px;
  }

  .schedule-main {
    padding-top: 76px;
  }
}

/* v4 refinements: clearer navigation, instant previews and richer page content */
.site-header,
.site-header.scrolled,
.site-header.solid-header {
  border-bottom-color: rgba(180, 218, 247, 0.16);
  background: rgba(5, 23, 43, 0.94);
  box-shadow: 0 12px 36px rgba(2, 14, 28, 0.2);
  backdrop-filter: blur(18px) saturate(130%);
}

.header-main {
  grid-template-columns: minmax(150px, 1fr) auto minmax(150px, 1fr);
}

.brand-image-wrap,
.site-header.scrolled .brand-image-wrap {
  width: 136px;
  height: 101px;
}

.brand-image-wrap img {
  object-position: left center;
  filter: drop-shadow(0 9px 18px rgba(0, 0, 0, 0.34));
}

.limelight-nav a {
  padding-inline: 15px;
}

.header-status {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #d6e7f3;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  white-space: nowrap;
  text-transform: uppercase;
}

.header-status i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 5px rgba(157, 255, 28, 0.1), 0 0 15px rgba(157, 255, 28, 0.62);
}

.hero-stage {
  padding-bottom: 112px;
}

.hero-location-bar,
.hero-step-controls {
  display: none;
}

.hero-slider-dots {
  position: absolute;
  right: 0;
  bottom: 42px;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(192, 222, 244, 0.2);
  border-radius: 999px;
  padding: 9px 11px;
  background: rgba(3, 18, 35, 0.58);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(12px);
}

.hero-slider-dots button {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 999px;
  padding: 0;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition: width 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}

.hero-slider-dots button:hover,
.hero-slider-dots button.active {
  width: 34px;
  background: var(--lime);
  box-shadow: 0 0 14px rgba(157, 255, 28, 0.55);
}

.service-preview-image img[data-preview-image] {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  visibility: hidden;
  transform: none;
  transition: none;
}

.service-preview-image img[data-preview-image].active {
  opacity: 1;
  visibility: visible;
}

.service-preview-image .preview-tag {
  z-index: 2;
}

.inspection-gallery-section {
  padding-top: 24px;
  background: linear-gradient(180deg, #f6fbff 0%, #ffffff 100%);
}

.inspection-gallery {
  display: grid;
  grid-template-columns: 1.28fr 1fr 1fr;
  gap: 18px;
}

.gallery-card {
  position: relative;
  min-height: 400px;
  border: 1px solid #cee1ef;
  border-radius: 26px;
  background: #dceaf4;
  box-shadow: 0 18px 50px rgba(8, 47, 82, 0.1);
  overflow: hidden;
  isolation: isolate;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.gallery-card::after {
  content: "";
  position: absolute;
  inset: 34% 0 0;
  z-index: 1;
  background: linear-gradient(180deg, transparent, rgba(4, 21, 40, 0.88));
}

.gallery-card > div {
  position: absolute;
  z-index: 2;
  right: 27px;
  bottom: 25px;
  left: 27px;
}

.gallery-card span {
  display: block;
  margin-bottom: 5px;
  color: var(--lime);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.gallery-card h3 {
  margin: 0;
  color: white;
  font-size: clamp(1.25rem, 1.8vw, 1.65rem);
}

.gallery-card:hover img {
  transform: scale(1.045);
}

.report-visual {
  padding: 0;
}

.report-photo-main {
  min-height: 590px;
}

.report-photo-label {
  position: absolute;
  right: 22px;
  bottom: 22px;
  left: 22px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 20px;
  padding: 22px 24px;
  background: rgba(5, 25, 47, 0.86);
  color: white;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(13px);
}

.report-photo-label span {
  display: block;
  margin-bottom: 6px;
  color: var(--lime);
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.report-photo-label strong {
  display: block;
  font-size: 1.28rem;
  line-height: 1.25;
}

.report-photo-label p {
  margin: 7px 0 0;
  color: #c9dce9;
  font-size: 0.8rem;
  line-height: 1.5;
}

.experience-display {
  align-self: center;
  display: flex;
  align-items: flex-end;
  gap: 13px;
  color: white;
}

.experience-display strong {
  color: var(--lime);
  font-size: clamp(5rem, 10vw, 9.5rem);
  font-weight: 950;
  letter-spacing: -0.09em;
  line-height: 0.72;
  text-shadow: 0 0 34px rgba(157, 255, 28, 0.18);
}

.experience-display span {
  padding-bottom: 5px;
  color: #b9cede;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.reviews-section {
  background: linear-gradient(180deg, #eff7fd, #f8fbfe);
}

.reviews-heading {
  max-width: 760px;
  margin-bottom: 44px;
}

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

.review-card {
  min-height: 280px;
  display: flex;
  flex-direction: column;
  border: 1px solid #ccdeeb;
  border-radius: 24px;
  padding: 29px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 44px rgba(10, 47, 82, 0.08);
}

.review-stars {
  margin-bottom: 27px;
  color: #62ae00;
  font-size: 0.9rem;
  letter-spacing: 0.14em;
}

.review-card blockquote {
  margin: 0 0 30px;
  color: var(--ink);
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.65;
}

.review-card > p {
  margin: auto 0 0;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.quick-booking {
  position: relative;
  padding: 105px 0;
  background:
    radial-gradient(circle at 12% 15%, rgba(8, 120, 249, 0.24), transparent 34%),
    radial-gradient(circle at 88% 80%, rgba(157, 255, 28, 0.08), transparent 28%),
    var(--navy);
  color: white;
  overflow: hidden;
}

.quick-booking::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.13;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.72) 1px, transparent 1.2px);
  background-size: 30px 30px;
  mask-image: linear-gradient(115deg, transparent 15%, black 75%);
  pointer-events: none;
}

.quick-booking-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(520px, 1fr);
  gap: clamp(54px, 8vw, 112px);
  align-items: center;
}

.quick-booking-copy h2 {
  color: white;
}

.quick-booking-copy > p:not(.eyebrow) {
  max-width: 510px;
  color: #b8cddd;
}

.quick-booking-copy > a {
  display: inline-flex;
  flex-direction: column;
  margin-top: 20px;
}

.quick-booking-copy > a span {
  color: #91a9bc;
  font-size: 0.67rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.quick-booking-copy > a strong {
  color: white;
  font-size: 1.5rem;
}

.quick-booking-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  border: 1px solid rgba(189, 220, 242, 0.22);
  border-radius: 28px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 22px 65px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(15px);
}

.quick-booking-form label {
  display: grid;
  gap: 7px;
  color: #d3e3ee;
  font-size: 0.7rem;
  font-weight: 800;
}

.quick-booking-form input {
  width: 100%;
  min-height: 52px;
  border: 1px solid rgba(190, 218, 238, 0.26);
  border-radius: 12px;
  padding: 0 14px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  outline: 0;
}

.quick-booking-form input:focus {
  border-color: var(--lime);
  box-shadow: 0 0 0 4px rgba(157, 255, 28, 0.12);
}

.quick-field-wide,
.quick-form-note {
  grid-column: 1 / -1;
}

.quick-booking-form .button {
  width: 100%;
  min-height: 52px;
  align-self: end;
  padding-inline: 18px;
}

.quick-form-note {
  margin: -2px 0 0;
  color: #9eb6c8;
  font-size: 0.68rem;
}

.footer-brand img {
  width: 174px;
  height: auto;
  border-radius: 0;
}

@media (max-width: 1180px) {
  .header-main {
    grid-template-columns: minmax(118px, 1fr) auto minmax(124px, 1fr);
  }

  .brand-image-wrap,
  .site-header.scrolled .brand-image-wrap {
    width: 120px;
    height: 92px;
  }

  .limelight-nav a {
    padding-inline: 10px;
    font-size: 0.62rem;
  }

  .header-status {
    font-size: 0.62rem;
  }
}

@media (max-width: 980px) {
  .brand-image-wrap,
  .site-header.scrolled .brand-image-wrap {
    width: 104px;
    height: 78px;
  }

  .header-status {
    justify-content: center;
    min-height: 54px;
    border: 1px solid rgba(183, 210, 231, 0.18);
    border-radius: 999px;
  }

  .hero-stage {
    padding-bottom: 105px;
  }

  .hero-slider-dots {
    right: auto;
    bottom: 28px;
    left: 0;
  }

  .inspection-gallery {
    grid-template-columns: 1fr 1fr;
  }

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

  .gallery-card {
    min-height: 370px;
  }

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

  .review-card {
    min-height: 0;
  }

  .quick-booking-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .brand-image-wrap,
  .site-header.scrolled .brand-image-wrap {
    width: 96px;
    height: 72px;
  }

  .inspection-hero,
  .hero-stage {
    min-height: 730px;
  }

  .hero-stage {
    padding-top: 126px;
    padding-bottom: 92px;
  }

  .hero-copy h1 {
    font-size: clamp(2.85rem, 14vw, 4.2rem);
  }

  .hero-slider-dots {
    bottom: 20px;
  }

  .inspection-gallery {
    grid-template-columns: 1fr;
  }

  .gallery-card-wide {
    grid-column: auto;
  }

  .gallery-card {
    min-height: 330px;
  }

  .report-photo-main,
  .report-photo-main > img {
    min-height: 500px;
  }

  .report-photo-label {
    right: 13px;
    bottom: 13px;
    left: 13px;
    padding: 18px;
  }

  .why-card-large {
    display: flex;
  }

  .experience-display {
    align-self: flex-start;
    margin: auto 0 42px;
  }

  .experience-display strong {
    font-size: 5.6rem;
  }

  .quick-booking {
    padding: 82px 0;
  }

  .quick-booking-form {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .quick-field-wide,
  .quick-form-note {
    grid-column: auto;
  }
}

/* v5 header, scheduling hero and mobile refinements */
.header-main,
.site-header.scrolled .header-main {
  min-height: 88px;
  grid-template-columns: minmax(210px, 1fr) auto minmax(210px, 1fr);
  gap: 20px;
}

.brand,
.brand-image-wrap {
  max-height: 82px;
}

.brand-image-wrap,
.site-header.scrolled .brand-image-wrap {
  width: 114px;
  height: 82px;
  overflow: hidden;
}

.brand-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.header-actions {
  gap: 11px;
}

.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: white;
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0.025em;
  white-space: nowrap;
}

.header-phone svg {
  width: 18px;
  fill: none;
  stroke: var(--lime);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.header-utility-note {
  margin-left: auto;
  color: #d0deea;
}

.header-call-button {
  min-height: 43px;
  padding-inline: 17px;
  font-size: 0.72rem;
  white-space: nowrap;
}

.hero-copy h1 {
  max-width: 980px;
  font-size: clamp(4rem, 6.7vw, 6.85rem);
}

.schedule-main {
  padding-top: 121px;
}

.schedule-hero {
  background:
    radial-gradient(circle at 88% 16%, rgba(8, 120, 249, 0.31), transparent 35%),
    radial-gradient(circle at 10% 90%, rgba(157, 255, 28, 0.07), transparent 30%),
    #071d36;
  color: white;
}

.schedule-hero::after {
  border-color: rgba(143, 203, 255, 0.2);
  box-shadow: 0 0 0 45px rgba(8, 120, 249, 0.07), 0 0 0 90px rgba(8, 120, 249, 0.04);
}

.schedule-hero-grid {
  opacity: 0.13;
}

.schedule-hero-copy h1 {
  color: white;
}

.schedule-hero-copy > p:not(.eyebrow) {
  color: #bed2e1;
}

.schedule-hero-copy .eyebrow {
  color: #d9e9f4;
}

.back-link {
  color: #a9c0d2;
}

.back-link span {
  color: var(--lime);
}

.schedule-hero-proof {
  border-color: rgba(178, 215, 242, 0.24);
  background: rgba(2, 18, 35, 0.64);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.23);
}

.schedule-hero-proof > div {
  border-bottom-color: rgba(185, 217, 239, 0.15);
}

.schedule-hero-proof strong {
  color: white;
}

.schedule-hero-proof span {
  color: #9fb7ca;
}

@media (max-width: 1180px) {
  .header-main,
  .site-header.scrolled .header-main {
    grid-template-columns: minmax(185px, 1fr) auto minmax(185px, 1fr);
    gap: 14px;
  }

  .limelight-nav a {
    padding-inline: 9px;
    font-size: 0.7rem;
  }

  .header-phone {
    font-size: 0.75rem;
  }

  .header-call-button {
    min-height: 41px;
    padding-inline: 14px;
  }
}

@media (max-width: 980px) {
  .header-main,
  .site-header.scrolled .header-main {
    min-height: 82px;
    display: flex;
  }

  .brand,
  .brand-image-wrap {
    max-height: 72px;
  }

  .brand-image-wrap,
  .site-header.scrolled .brand-image-wrap {
    width: 96px;
    height: 72px;
  }

  .header-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 13px;
  }

  .header-phone {
    min-height: 54px;
    justify-content: center;
    border: 1px solid rgba(183, 210, 231, 0.18);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    font-size: 1rem;
    letter-spacing: 0.06em;
  }

  .header-call-button {
    width: 100%;
    min-height: 54px;
    font-size: 0.82rem;
  }

  .schedule-main {
    padding-top: 82px;
  }
}

@media (max-width: 700px) {
  .site-header,
  .site-header.scrolled,
  .site-header.solid-header {
    min-height: 72px;
  }

  .header-main,
  .site-header.scrolled .header-main {
    min-height: 72px;
  }

  .brand,
  .brand-image-wrap {
    max-height: 64px;
  }

  .brand-image-wrap,
  .site-header.scrolled .brand-image-wrap {
    width: 86px;
    height: 64px;
  }

  .header-panel {
    top: 71px;
  }

  .hero-stage {
    padding-top: 120px;
  }

  .hero-copy h1 {
    font-size: clamp(2.7rem, 13.2vw, 4rem);
    line-height: 0.94;
  }

  .hero-subline {
    font-size: 0.72rem;
    line-height: 1.5;
  }

  .schedule-main {
    padding-top: 72px;
  }

  .schedule-hero {
    padding: 54px 0 58px;
  }

  .schedule-hero-inner {
    gap: 34px;
  }

  .schedule-hero-copy h1 {
    font-size: clamp(2.85rem, 13vw, 4.1rem);
    line-height: 0.96;
  }

  .schedule-hero-copy > p:not(.eyebrow) {
    font-size: 1rem;
    line-height: 1.6;
  }

  .schedule-hero-proof {
    width: 100%;
    padding-inline: 18px;
  }

  .schedule-hero-proof > div {
    align-items: flex-start;
    flex-direction: column;
    gap: 3px;
    padding: 15px 0;
  }

  .mobile-call-bar {
    padding-inline: 16px;
  }
}
