:root {
  --navy: #061f43;
  --navy-2: #062b5b;
  --blue: #075dcc;
  --blue-2: #1498ff;
  --cyan: #47dfff;
  --ink: #061f43;
  --muted: #4d5e76;
  --line: #d9e4f1;
  --paper: #f4f9ff;
  --white: #ffffff;
  --shadow: 0 18px 48px rgba(6, 31, 67, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

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

a {
  color: inherit;
}

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

.site-header {
  position: absolute;
  top: 18px;
  left: 0;
  right: 0;
  z-index: 20;
  background: transparent;
  border-bottom: 0;
  box-shadow: none;
  backdrop-filter: none;
}

.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  background: linear-gradient(90deg, rgba(3, 20, 48, 0.68), rgba(3, 20, 48, 0.38));
  box-shadow: 0 18px 50px rgba(2, 18, 42, 0.28);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 250px;
  text-decoration: none;
}

.brand img {
  width: 82px;
  height: 54px;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(6, 31, 67, 0.18)) contrast(1.07) saturate(1.12);
}

.brand span {
  display: grid;
  gap: 0;
}

.brand strong {
  color: var(--white);
  text-shadow: 0 2px 12px rgba(6, 31, 67, 0.45);
  font-size: 1.42rem;
  font-weight: 900;
  line-height: 0.95;
}

.brand em {
  color: var(--cyan);
  text-shadow: 0 2px 12px rgba(6, 31, 67, 0.45);
  font-size: 0.62rem;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--white);
  font-size: 0.86rem;
  font-weight: 800;
}

.nav-links a {
  padding: 9px 11px;
  border-radius: 999px;
  text-decoration: none;
  text-shadow: 0 2px 10px rgba(2, 18, 42, 0.42);
}

.nav-links a.is-active,
.nav-links a:hover {
  color: var(--white);
  background: rgba(71, 223, 255, 0.15);
}

.menu-toggle {
  display: none;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  font: inherit;
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}

.menu-toggle i,
.menu-toggle i::before,
.menu-toggle i::after {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.menu-toggle i {
  position: relative;
}

.menu-toggle i::before,
.menu-toggle i::after {
  content: "";
  position: absolute;
  left: 0;
}

.menu-toggle i::before {
  top: -6px;
}

.menu-toggle i::after {
  top: 6px;
}

.nav-open .menu-toggle i {
  background: transparent;
}

.nav-open .menu-toggle i::before {
  top: 0;
  transform: rotate(45deg);
}

.nav-open .menu-toggle i::after {
  top: 0;
  transform: rotate(-45deg);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 52px;
  padding: 0 26px;
  border: 0;
  border-radius: 6px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), #004dbb);
  box-shadow: 0 13px 28px rgba(7, 93, 204, 0.28);
  font: inherit;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(7, 93, 204, 0.34);
  filter: saturate(1.08);
}

.btn:active {
  transform: translateY(0);
}

.nav-btn {
  min-width: 158px;
  min-height: 48px;
  font-size: 0.92rem;
}

.btn-outline {
  background: rgba(6, 31, 67, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.82);
  box-shadow: none;
}

.hero {
  position: relative;
  min-height: 660px;
  margin-top: 0;
  overflow: hidden;
  color: var(--white);
}

.hero-bg,
.hero-bg::after,
.hero-bg img {
  position: absolute;
  inset: 0;
}

.hero-bg {
  z-index: 0;
  background: var(--navy);
  background-image: url("assets/drone-van-hero-real.jpeg");
  background-size: cover;
  background-position: 55% 0;
  background-attachment: scroll;
}

.hero-bg img {
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 55% 0;
  opacity: 1;
  will-change: transform;
}

.hero-bg::after {
  content: "";
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(2, 18, 42, 0.86) 0%, rgba(3, 28, 63, 0.72) 32%, rgba(3, 28, 63, 0.34) 60%, rgba(3, 28, 63, 0.02) 100%),
    radial-gradient(circle at 18% 72%, rgba(20, 152, 255, 0.18), transparent 24rem);
}

.hero-bg::before {
  content: "";
  position: absolute;
  inset: auto auto 0 0;
  z-index: 2;
  width: min(58vw, 760px);
  height: 58%;
  background:
    radial-gradient(circle at 18% 100%, rgba(20, 152, 255, 0.22), transparent 20rem),
    linear-gradient(120deg, rgba(6, 31, 67, 0.72), rgba(6, 31, 67, 0));
  clip-path: polygon(0 0, 78% 0, 100% 100%, 0 100%);
}

.service-page-hero .hero-content {
  min-height: 610px;
}

.legal-hero .hero-content {
  min-height: 560px;
}

.hero-content {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  min-height: 660px;
  padding: 128px 0 40px;
}

.hero-copy {
  max-width: 710px;
  animation: hero-rise 760ms ease-out both;
  text-shadow: 0 3px 18px rgba(0, 8, 20, 0.48);
}

.hero h1,
.hero h2,
.section-title h2,
.discounts h2,
.estimate-strip h2 {
  font-family: "Barlow Condensed", Inter, sans-serif;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0 0 18px;
  font-size: clamp(4.35rem, 7.3vw, 6.25rem);
  font-style: italic;
  font-weight: 900;
  line-height: 0.88;
}

.hero h1 span {
  display: block;
}

.hero h1 .headline-top {
  color: var(--white);
  white-space: nowrap;
}

.hero h1 span:last-child {
  color: var(--blue-2);
}

.hero h2 {
  max-width: 520px;
  margin: 0 0 18px;
  font-size: clamp(2.05rem, 3.6vw, 3.15rem);
  font-style: italic;
  font-weight: 900;
  line-height: 0.95;
}

.hero p {
  max-width: 520px;
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.05rem;
}

.lead-funnel {
  padding: 58px 0;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(71, 223, 255, 0.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(71, 223, 255, 0.06) 1px, transparent 1px),
    radial-gradient(circle at 12% 0%, rgba(20, 152, 255, 0.24), transparent 24rem),
    linear-gradient(135deg, #02152f 0%, #062b5b 56%, #031b3f 100%);
  background-size: 72px 72px, 72px 72px, auto, auto;
}

.lead-funnel-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(420px, 1.15fr);
  gap: 34px;
  align-items: start;
}

.lead-funnel-copy > span {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--cyan);
  font-family: "Barlow Condensed", Inter, sans-serif;
  font-size: 1.16rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.lead-funnel h2 {
  max-width: 620px;
  margin: 0 0 16px;
  font-family: "Barlow Condensed", Inter, sans-serif;
  font-size: clamp(2.45rem, 5vw, 4.2rem);
  line-height: 0.92;
  text-transform: uppercase;
}

.lead-funnel-copy > p {
  max-width: 570px;
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.84);
}

.lead-paths {
  display: grid;
  gap: 12px;
}

.lead-paths article {
  padding: 18px 20px;
  border: 1px solid rgba(71, 223, 255, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.lead-paths strong {
  display: block;
  margin-bottom: 4px;
  color: var(--blue-2);
  font-family: "Barlow Condensed", Inter, sans-serif;
  font-size: 1.42rem;
  line-height: 1;
  text-transform: uppercase;
}

.lead-paths p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.93rem;
}

.lead-form {
  display: grid;
  gap: 16px;
  padding: 26px;
  border: 1px solid rgba(71, 223, 255, 0.28);
  border-radius: 10px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 22px 64px rgba(2, 18, 42, 0.26);
}

.bot-field {
  display: none;
}

.lead-form-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.lead-form-head strong {
  color: var(--blue);
  font-family: "Barlow Condensed", Inter, sans-serif;
  font-size: 2rem;
  line-height: 1;
  text-transform: uppercase;
}

.lead-form-head span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 850;
}

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

.lead-form label {
  display: grid;
  gap: 7px;
  color: var(--navy);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 12px;
  color: var(--navy);
  background: var(--white);
  font: inherit;
  font-size: 0.95rem;
  text-transform: none;
}

.lead-form textarea {
  min-height: 108px;
  padding-top: 11px;
  resize: vertical;
}

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

.lead-form-actions .btn-outline {
  color: var(--blue);
  border-color: rgba(7, 93, 204, 0.32);
  background: rgba(7, 93, 204, 0.06);
}

.lead-form-note {
  margin: -2px 0 0;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.45;
}

.lead-form-status {
  min-height: 20px;
  margin: -4px 0 0;
  color: var(--blue);
  font-size: 0.84rem;
  font-weight: 850;
}

.hero-stamp {
  position: relative;
  width: fit-content;
  margin: 0 0 30px;
  padding: 13px 24px 15px;
  border: 3px solid rgba(71, 223, 255, 0.9);
  border-radius: 8px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(20, 152, 255, 0.22), rgba(71, 223, 255, 0.08)),
    rgba(2, 18, 42, 0.5);
  box-shadow: 0 18px 45px rgba(20, 152, 255, 0.2);
  transform: rotate(-2deg);
  text-transform: uppercase;
  animation: stamp-drift 5.5s ease-in-out 900ms infinite;
}

.hero-stamp::before,
.hero-stamp::after {
  content: "";
  position: absolute;
  inset: 6px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 5px;
  pointer-events: none;
}

.hero-stamp::after {
  inset: auto 16px -10px;
  height: 3px;
  border: 0;
  background: linear-gradient(90deg, transparent, rgba(71, 223, 255, 0.85), transparent);
  filter: blur(0.2px);
}

.hero-stamp span,
.hero-stamp strong {
  position: relative;
  z-index: 1;
  display: block;
  font-family: "Barlow Condensed", Inter, sans-serif;
  letter-spacing: 0;
  line-height: 0.9;
}

.hero-stamp span {
  color: var(--cyan);
  font-size: clamp(1.7rem, 3vw, 2.45rem);
  font-weight: 900;
}

.hero-stamp strong {
  color: var(--white);
  font-size: clamp(2.6rem, 5vw, 4.25rem);
  font-style: italic;
  font-weight: 900;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 40px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 900;
  line-height: 1.25;
  text-transform: uppercase;
}

.trust-row b {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 2px solid rgba(255, 255, 255, 0.84);
  border-radius: 50%;
  font-size: 1.35rem;
  line-height: 1;
}

.services {
  padding: 34px 0 30px;
  text-align: center;
}

.section-title {
  margin-bottom: 22px;
  text-align: left;
}

.section-title h2 {
  position: relative;
  display: inline-block;
  margin: 0;
  color: var(--navy);
  font-size: clamp(2.2rem, 4vw, 3.15rem);
  font-weight: 900;
  line-height: 0.95;
}

.section-title h2::after {
  content: "";
  display: block;
  width: 54px;
  height: 4px;
  margin-top: 12px;
  background: var(--blue);
  transform-origin: left center;
  animation: title-line 900ms ease-out both;
}

.motion-ready .motion-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 620ms ease,
    transform 620ms cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 180ms ease,
    border-color 180ms ease;
  transition-delay: var(--motion-delay, 0ms);
}

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

@keyframes hero-rise {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes title-line {
  from {
    transform: scaleX(0);
    opacity: 0;
  }

  to {
    transform: scaleX(1);
    opacity: 1;
  }
}

@keyframes stamp-drift {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(-2deg);
    box-shadow: 0 18px 45px rgba(20, 152, 255, 0.2);
  }

  45% {
    transform: translate3d(4px, -5px, 0) rotate(-0.7deg);
    box-shadow: 0 24px 54px rgba(20, 152, 255, 0.26);
  }

  70% {
    transform: translate3d(-2px, -2px, 0) rotate(-2.8deg);
  }
}

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

.service-grid article {
  position: relative;
  min-height: 218px;
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 10px;
  padding: 20px 14px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 8px 22px rgba(6, 31, 67, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-grid article:hover {
  transform: translateY(-3px);
  border-color: rgba(7, 93, 204, 0.35);
  box-shadow: 0 18px 38px rgba(6, 31, 67, 0.13);
}

.service-grid h3 {
  max-width: 150px;
  margin: 0;
  color: var(--navy);
  font-family: "Barlow Condensed", Inter, sans-serif;
  font-size: 1.32rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.service-grid p {
  max-width: 150px;
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.35;
}

.featured-service span {
  position: absolute;
  right: -1px;
  top: -1px;
  padding: 7px 11px;
  border-radius: 0 8px 0 8px;
  color: var(--white);
  background: var(--blue-2);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  transform-origin: top right;
}

.service-icon {
  position: relative;
  width: 74px;
  height: 60px;
  color: var(--blue);
}

.service-icon::before,
.service-icon::after {
  content: "";
  position: absolute;
  border-color: currentColor;
}

.house::before {
  inset: 22px 10px 0;
  border: 5px solid currentColor;
  border-top: 0;
}

.house::after {
  left: 12px;
  top: 7px;
  width: 44px;
  height: 44px;
  border-top: 5px solid currentColor;
  border-left: 5px solid currentColor;
  transform: rotate(45deg);
}

.driveway::before {
  left: 16px;
  right: 16px;
  top: 8px;
  height: 50px;
  background: currentColor;
  clip-path: polygon(34% 0, 66% 0, 100% 100%, 0 100%);
}

.driveway::after {
  left: 35px;
  top: 5px;
  width: 4px;
  height: 52px;
  background: var(--white);
}

.patio::before {
  left: 9px;
  right: 9px;
  top: 14px;
  bottom: 10px;
  border: 6px solid currentColor;
}

.patio::after {
  left: 20px;
  right: 20px;
  top: 6px;
  height: 6px;
  background: currentColor;
  box-shadow: 0 44px currentColor;
}

.solar::before {
  left: 8px;
  top: 8px;
  width: 58px;
  height: 38px;
  border: 5px solid currentColor;
  transform: skewX(-12deg);
  background:
    linear-gradient(currentColor 0 0) 50% 0 / 5px 100% no-repeat,
    linear-gradient(currentColor 0 0) 0 50% / 100% 5px no-repeat;
}

.solar::after {
  left: 28px;
  top: 49px;
  width: 20px;
  height: 9px;
  border-bottom: 5px solid currentColor;
  border-left: 5px solid currentColor;
  border-right: 5px solid currentColor;
}

.commercial::before {
  left: 12px;
  top: 7px;
  width: 28px;
  height: 48px;
  background: currentColor;
}

.commercial::after {
  right: 10px;
  bottom: 3px;
  width: 24px;
  height: 36px;
  background: currentColor;
  box-shadow: -42px -32px 0 -11px var(--white), -42px -16px 0 -11px var(--white), -25px -32px 0 -11px var(--white), -25px -16px 0 -11px var(--white);
}

.drone::before {
  left: 27px;
  top: 22px;
  width: 22px;
  height: 16px;
  border-radius: 50%;
  background: currentColor;
}

.drone::after {
  inset: 0;
  background:
    radial-gradient(circle at 11px 11px, transparent 0 8px, currentColor 8px 10px, transparent 10px),
    radial-gradient(circle at 63px 11px, transparent 0 8px, currentColor 8px 10px, transparent 10px),
    radial-gradient(circle at 11px 48px, transparent 0 8px, currentColor 8px 10px, transparent 10px),
    radial-gradient(circle at 63px 48px, transparent 0 8px, currentColor 8px 10px, transparent 10px),
    linear-gradient(31deg, transparent 0 44%, currentColor 44% 50%, transparent 50%),
    linear-gradient(-31deg, transparent 0 44%, currentColor 44% 50%, transparent 50%);
}

.structure-strip {
  overflow: hidden;
  padding: 18px 0 36px;
  background:
    linear-gradient(90deg, rgba(7, 93, 204, 0.06) 1px, transparent 1px),
    linear-gradient(0deg, rgba(7, 93, 204, 0.04) 1px, transparent 1px),
    #ffffff;
  background-size: 72px 72px, 72px 72px, auto;
}

.structure-title {
  margin-bottom: 18px;
}

.structure-title h2 {
  font-size: clamp(1.9rem, 3vw, 2.5rem);
}

.structure-marquee {
  position: relative;
  overflow: hidden;
  padding: 6px 0 8px;
}

.structure-marquee::before,
.structure-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  z-index: 2;
  width: min(12vw, 140px);
  height: 100%;
  pointer-events: none;
}

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

.structure-marquee::after {
  right: 0;
  background: linear-gradient(270deg, #ffffff, rgba(255, 255, 255, 0));
}

.structure-track {
  display: flex;
  width: max-content;
  gap: 14px;
  animation: structure-scroll 46s linear infinite;
}

.structure-marquee:hover .structure-track {
  animation-play-state: paused;
}

.structure-track span {
  min-width: 150px;
  display: inline-grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  gap: 10px;
  padding: 12px 16px 12px 12px;
  border: 1px solid rgba(7, 93, 204, 0.16);
  border-radius: 8px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 24px rgba(6, 31, 67, 0.08);
  font-family: "Barlow Condensed", Inter, sans-serif;
  font-size: 1.12rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.structure-icon {
  position: relative;
  width: 42px;
  height: 42px;
  display: block;
  border-radius: 50%;
  color: var(--blue);
  background: linear-gradient(135deg, rgba(20, 152, 255, 0.12), rgba(7, 93, 204, 0.08));
}

.structure-icon::before,
.structure-icon::after {
  content: "";
  position: absolute;
  box-sizing: border-box;
}

.structure-icon.home::before {
  left: 10px;
  top: 18px;
  width: 22px;
  height: 16px;
  border: 3px solid currentColor;
  border-top: 0;
}

.structure-icon.home::after {
  left: 8px;
  top: 11px;
  width: 25px;
  height: 25px;
  border-left: 3px solid currentColor;
  border-top: 3px solid currentColor;
  transform: rotate(45deg);
}

.structure-icon.tile-roof::before {
  left: 7px;
  top: 17px;
  width: 28px;
  height: 13px;
  border: 3px solid currentColor;
  border-radius: 15px 15px 3px 3px;
}

.structure-icon.tile-roof::after {
  left: 10px;
  top: 18px;
  width: 22px;
  height: 9px;
  border-left: 3px solid currentColor;
  border-right: 3px solid currentColor;
}

.structure-icon.solar-array::before {
  left: 9px;
  top: 13px;
  width: 24px;
  height: 18px;
  border: 3px solid currentColor;
  transform: skew(-10deg);
  background:
    linear-gradient(currentColor 0 0) 50% 0 / 3px 100% no-repeat,
    linear-gradient(currentColor 0 0) 0 50% / 100% 3px no-repeat;
}

.structure-icon.garage::before {
  left: 8px;
  top: 14px;
  width: 26px;
  height: 20px;
  border: 3px solid currentColor;
  border-radius: 3px;
}

.structure-icon.garage::after {
  left: 12px;
  top: 22px;
  width: 18px;
  height: 2px;
  background: currentColor;
  box-shadow: 0 5px 0 currentColor;
}

.structure-icon.driveway-mark::before,
.structure-icon.patio-mark::before {
  left: 11px;
  top: 10px;
  width: 20px;
  height: 24px;
  border-left: 5px solid currentColor;
  border-right: 5px solid currentColor;
  transform: perspective(40px) rotateX(18deg);
}

.structure-icon.patio-mark::after {
  left: 10px;
  top: 18px;
  width: 22px;
  height: 3px;
  background: currentColor;
  box-shadow: 0 7px 0 currentColor;
}

.structure-icon.deck-mark::before {
  left: 9px;
  top: 18px;
  width: 24px;
  height: 12px;
  border-top: 4px solid currentColor;
  border-bottom: 4px solid currentColor;
}

.structure-icon.deck-mark::after {
  left: 11px;
  top: 11px;
  width: 4px;
  height: 22px;
  background: currentColor;
  box-shadow: 8px 0 0 currentColor, 16px 0 0 currentColor;
}

.structure-icon.fence-mark::before {
  left: 7px;
  top: 15px;
  width: 28px;
  height: 19px;
  background:
    linear-gradient(currentColor 0 0) 0 50% / 100% 4px no-repeat,
    linear-gradient(currentColor 0 0) 0 90% / 100% 4px no-repeat;
}

.structure-icon.fence-mark::after {
  left: 9px;
  top: 10px;
  width: 5px;
  height: 25px;
  background: currentColor;
  box-shadow: 9px 0 0 currentColor, 18px 0 0 currentColor;
}

.structure-icon.storefront::before,
.structure-icon.office::before,
.structure-icon.apartment::before,
.structure-icon.warehouse::before,
.structure-icon.restaurant::before,
.structure-icon.school::before,
.structure-icon.church::before {
  left: 10px;
  top: 12px;
  width: 22px;
  height: 22px;
  border: 3px solid currentColor;
}

.structure-icon.storefront::after {
  left: 8px;
  top: 12px;
  width: 26px;
  height: 7px;
  border-radius: 8px 8px 2px 2px;
  background: currentColor;
}

.structure-icon.office::after,
.structure-icon.apartment::after {
  left: 15px;
  top: 16px;
  width: 4px;
  height: 4px;
  background: currentColor;
  box-shadow: 8px 0 0 currentColor, 0 8px 0 currentColor, 8px 8px 0 currentColor;
}

.structure-icon.warehouse::before {
  top: 18px;
  height: 16px;
}

.structure-icon.warehouse::after {
  left: 8px;
  top: 12px;
  width: 26px;
  height: 14px;
  border-left: 3px solid currentColor;
  border-top: 3px solid currentColor;
  transform: rotate(45deg);
}

.structure-icon.restaurant::after {
  left: 15px;
  top: 10px;
  width: 3px;
  height: 24px;
  background: currentColor;
  box-shadow: 9px 0 0 currentColor;
}

.structure-icon.school::after {
  left: 7px;
  top: 11px;
  width: 28px;
  height: 9px;
  border-left: 14px solid transparent;
  border-right: 14px solid transparent;
  border-bottom: 9px solid currentColor;
}

.structure-icon.church::after {
  left: 19px;
  top: 6px;
  width: 4px;
  height: 12px;
  background: currentColor;
  box-shadow: -4px 4px 0 -1px currentColor, 4px 4px 0 -1px currentColor;
}

.structure-icon.hoa::before {
  left: 9px;
  top: 14px;
  width: 11px;
  height: 12px;
  border: 3px solid currentColor;
  border-top: 0;
  box-shadow: 13px 5px 0 -3px transparent, 13px 5px 0 0 currentColor;
}

.structure-icon.hoa::after {
  left: 8px;
  top: 10px;
  width: 14px;
  height: 14px;
  border-left: 3px solid currentColor;
  border-top: 3px solid currentColor;
  transform: rotate(45deg);
  box-shadow: 9px -9px 0 -2px transparent, 12px -9px 0 -1px currentColor;
}

.structure-icon.lot::before {
  left: 12px;
  top: 9px;
  width: 18px;
  height: 25px;
  border: 3px solid currentColor;
  border-radius: 2px;
}

.structure-icon.lot::after {
  left: 16px;
  top: 14px;
  width: 10px;
  height: 3px;
  background: currentColor;
  box-shadow: 0 8px 0 currentColor;
}

.structure-icon.sign::before {
  left: 10px;
  top: 11px;
  width: 22px;
  height: 15px;
  border: 3px solid currentColor;
  border-radius: 3px;
}

.structure-icon.sign::after {
  left: 19px;
  top: 26px;
  width: 4px;
  height: 10px;
  background: currentColor;
}

@keyframes structure-scroll {
  from {
    transform: translateX(0);
  }

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

.work-types {
  padding: 48px 0 54px;
  background:
    linear-gradient(90deg, rgba(7, 93, 204, 0.06) 1px, transparent 1px),
    linear-gradient(0deg, rgba(7, 93, 204, 0.04) 1px, transparent 1px),
    linear-gradient(180deg, #ffffff, #eef7ff);
  background-size: 72px 72px, 72px 72px, auto;
}

.work-type-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.work-type-card {
  position: relative;
  overflow: hidden;
  min-height: 370px;
  padding: 34px;
  border-radius: 8px;
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(2, 18, 42, 0.94), rgba(6, 43, 91, 0.72)),
    var(--navy);
  box-shadow: var(--shadow);
}

.work-type-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.32;
  mix-blend-mode: screen;
}

.residential-card::before {
  background-image: url("assets/drone-roof-cleaning.jpeg");
  background-attachment: fixed;
}

.commercial-card::before {
  background-image: url("assets/equipment.jpeg");
  background-attachment: fixed;
}

.work-type-card > * {
  position: relative;
  z-index: 1;
}

.work-type-card span {
  display: inline-flex;
  margin-bottom: 26px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 999px;
  color: var(--cyan);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.work-type-card h3 {
  max-width: 360px;
  margin: 0 0 12px;
  font-family: "Barlow Condensed", Inter, sans-serif;
  font-size: clamp(2.1rem, 3.3vw, 3.2rem);
  line-height: 0.96;
  text-transform: uppercase;
}

.work-type-card p {
  max-width: 480px;
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.86);
}

.work-type-card ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.work-type-card li {
  position: relative;
  padding-left: 22px;
  font-weight: 800;
}

.work-type-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--blue-2);
}

.commercial-focus {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 26px;
  margin-top: 24px;
  padding: 30px;
  border: 1px solid rgba(7, 93, 204, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 44px rgba(6, 31, 67, 0.1);
}

.commercial-focus span {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--blue);
  font-family: "Barlow Condensed", Inter, sans-serif;
  font-size: 1.12rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.commercial-focus h3 {
  margin: 0 0 12px;
  color: var(--navy);
  font-family: "Barlow Condensed", Inter, sans-serif;
  font-size: clamp(2.1rem, 4vw, 3.35rem);
  line-height: 0.94;
  text-transform: uppercase;
}

.commercial-focus p {
  margin: 0;
  color: var(--muted);
}

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

.commercial-focus-grid article {
  min-height: 156px;
  padding: 20px;
  border: 1px solid rgba(7, 93, 204, 0.13);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(238, 247, 255, 0.8), rgba(255, 255, 255, 0.96));
}

.commercial-focus-grid strong {
  display: block;
  margin-bottom: 8px;
  color: var(--blue);
  font-family: "Barlow Condensed", Inter, sans-serif;
  font-size: 1.42rem;
  line-height: 1;
  text-transform: uppercase;
}

.commercial-focus-grid p {
  font-size: 0.92rem;
  line-height: 1.45;
}

.service-area {
  padding: 64px 0;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(71, 223, 255, 0.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(71, 223, 255, 0.06) 1px, transparent 1px),
    radial-gradient(circle at 85% 20%, rgba(20, 152, 255, 0.28), transparent 23rem),
    linear-gradient(135deg, #02152f 0%, #062b5b 58%, #02152f 100%);
  background-size: 72px 72px, 72px 72px, auto, auto;
}

.service-area-page {
  padding-top: 76px;
}

.service-area-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: 34px;
  align-items: center;
}

.service-area-copy span {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--cyan);
  font-family: "Barlow Condensed", Inter, sans-serif;
  font-size: 1.16rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.service-area-copy h2 {
  max-width: 620px;
  margin: 0 0 18px;
  font-family: "Barlow Condensed", Inter, sans-serif;
  font-size: clamp(2.45rem, 5vw, 4.2rem);
  line-height: 0.92;
  text-transform: uppercase;
}

.service-area-copy p {
  max-width: 590px;
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1rem;
}

.service-area-copy .btn {
  margin-top: 12px;
}

.service-area-panel {
  padding: 26px;
  border: 1px solid rgba(71, 223, 255, 0.28);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 22px 60px rgba(2, 18, 42, 0.28);
}

.service-area-panel h3 {
  margin: 0 0 18px;
  color: var(--white);
  font-family: "Barlow Condensed", Inter, sans-serif;
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  line-height: 0.96;
  text-transform: uppercase;
}

.city-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.city-cloud span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 13px;
  border: 1px solid rgba(71, 223, 255, 0.22);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.09);
  font-size: 0.86rem;
  font-weight: 850;
}

.local-market-grid {
  margin-top: 8px;
}

.legal-page {
  padding: 64px 0;
  background:
    linear-gradient(90deg, rgba(7, 93, 204, 0.06) 1px, transparent 1px),
    linear-gradient(0deg, rgba(7, 93, 204, 0.04) 1px, transparent 1px),
    linear-gradient(180deg, #ffffff, #eef7ff);
  background-size: 72px 72px, 72px 72px, auto;
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.35fr) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.legal-summary {
  position: sticky;
  top: 24px;
  display: grid;
  gap: 12px;
  padding: 24px;
  border: 1px solid rgba(7, 93, 204, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 44px rgba(6, 31, 67, 0.1);
}

.legal-summary strong {
  color: var(--blue);
  font-family: "Barlow Condensed", Inter, sans-serif;
  font-size: 1.65rem;
  line-height: 1;
  text-transform: uppercase;
}

.legal-summary span {
  color: var(--navy);
  font-weight: 900;
}

.legal-summary p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.legal-summary .btn {
  margin-top: 6px;
  padding-inline: 16px;
  font-size: 0.86rem;
}

.legal-content {
  display: grid;
  gap: 14px;
}

.legal-content article {
  padding: 24px 26px;
  border: 1px solid rgba(7, 93, 204, 0.13);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 34px rgba(6, 31, 67, 0.08);
}

.legal-content h2 {
  margin: 0 0 10px;
  color: var(--navy);
  font-family: "Barlow Condensed", Inter, sans-serif;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  line-height: 1;
  text-transform: uppercase;
}

.legal-content p {
  margin: 0;
  color: var(--muted);
}

.legal-content p + p {
  margin-top: 10px;
}

.legal-content a {
  color: var(--blue);
  font-weight: 900;
}

.fleet-brand {
  padding: 54px 0;
  background:
    linear-gradient(90deg, rgba(7, 93, 204, 0.06) 1px, transparent 1px),
    linear-gradient(0deg, rgba(7, 93, 204, 0.04) 1px, transparent 1px),
    #ffffff;
  background-size: 72px 72px, 72px 72px, auto;
}

.fleet-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(420px, 1.28fr);
  gap: 42px;
  align-items: center;
}

.fleet-grid p {
  max-width: 440px;
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 1.04rem;
}

.fleet-grid img {
  width: 100%;
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.why {
  padding: 44px 0 40px;
  background: linear-gradient(90deg, #ffffff, #edf7ff);
}

.why-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(330px, 1.14fr) minmax(260px, 0.72fr);
  gap: 34px;
  align-items: center;
}

.why-copy p {
  max-width: 360px;
  margin: 0;
  color: var(--navy);
  font-size: 1.05rem;
}

.why-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0 0 0 28px;
  border-left: 1px solid rgba(7, 93, 204, 0.35);
  list-style: none;
}

.why-list li {
  position: relative;
  color: var(--navy);
  font-size: 0.96rem;
}

.why-list li::before {
  content: "✓";
  position: absolute;
  left: -28px;
  top: 0;
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--blue);
  font-size: 0.72rem;
  font-weight: 900;
}

.why-grid img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  border: 4px solid var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.drone-detail {
  padding: 58px 0;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(20, 152, 255, 0.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(20, 152, 255, 0.06) 1px, transparent 1px),
    radial-gradient(circle at 88% 16%, rgba(20, 152, 255, 0.28), transparent 24rem),
    linear-gradient(135deg, #031b3f, #062b5b 54%, #031b3f);
  background-size: 72px 72px, 72px 72px, auto, auto;
}

.drone-detail .section-title h2 {
  color: var(--white);
}

.drone-detail .section-title h2::after {
  background: var(--blue-2);
}

.drone-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: 42px;
  align-items: start;
}

.drone-detail-copy p {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1rem;
}

.flight-cred {
  max-width: 520px;
  margin-top: 24px;
  padding: 18px 20px;
  border: 1px solid rgba(71, 223, 255, 0.28);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.14);
}

.flight-cred strong {
  display: block;
  margin-bottom: 6px;
  color: var(--blue-2);
  font-family: "Barlow Condensed", Inter, sans-serif;
  font-size: 1.85rem;
  line-height: 1;
  text-transform: uppercase;
}

.flight-cred span {
  display: block;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.94rem;
}

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

.drone-benefits article {
  min-height: 180px;
  padding: 20px;
  border: 1px solid rgba(71, 223, 255, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.16);
}

.drone-benefits span {
  display: inline-flex;
  margin-bottom: 34px;
  color: var(--blue-2);
  font-family: "Barlow Condensed", Inter, sans-serif;
  font-size: 1.55rem;
  font-weight: 900;
}

.drone-benefits h3 {
  margin: 0 0 8px;
  font-family: "Barlow Condensed", Inter, sans-serif;
  font-size: 1.55rem;
  line-height: 1;
  text-transform: uppercase;
}

.drone-benefits p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
}

.drone-process {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 28px;
  padding: 22px 24px;
  border: 1px solid rgba(71, 223, 255, 0.28);
  border-radius: 8px;
  background: rgba(2, 18, 42, 0.38);
}

.drone-process strong {
  display: block;
  margin-bottom: 4px;
  color: var(--blue-2);
  font-family: "Barlow Condensed", Inter, sans-serif;
  font-size: 1.5rem;
  text-transform: uppercase;
}

.drone-process p {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
}

.drone-audience-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 14px;
}

.drone-audience-grid article {
  padding: 22px 24px;
  border: 1px solid rgba(71, 223, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
}

.drone-audience-grid strong {
  display: block;
  margin-bottom: 6px;
  color: var(--blue-2);
  font-family: "Barlow Condensed", Inter, sans-serif;
  font-size: 1.55rem;
  line-height: 1;
  text-transform: uppercase;
}

.drone-audience-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.94rem;
}

.environment-banner {
  padding: 30px 0;
  color: var(--white);
  background:
    radial-gradient(circle at 9% 0%, rgba(71, 223, 255, 0.28), transparent 18rem),
    radial-gradient(circle at 96% 100%, rgba(20, 152, 255, 0.22), transparent 18rem),
    linear-gradient(135deg, #02152f 0%, #06386f 58%, #02152f 100%);
}

.environment-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 26px 30px;
  border: 1px solid rgba(71, 223, 255, 0.34);
  border-radius: 8px;
  background: rgba(2, 18, 42, 0.38);
  box-shadow: 0 18px 46px rgba(2, 18, 42, 0.22);
}

.environment-icon {
  display: grid;
  width: 76px;
  height: 76px;
  place-items: center;
  border: 2px solid rgba(255, 255, 255, 0.68);
  border-radius: 50%;
  color: var(--cyan);
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
}

.environment-banner span {
  display: block;
  margin-bottom: 4px;
  color: var(--cyan);
  font-family: "Barlow Condensed", Inter, sans-serif;
  font-size: 1.18rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.environment-banner h2 {
  margin: 0;
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 0.94;
  text-transform: uppercase;
}

.environment-banner p {
  max-width: 900px;
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.86);
}

.retardant-banner {
  padding: 30px 0;
  color: var(--navy);
  background:
    linear-gradient(90deg, rgba(7, 93, 204, 0.07) 1px, transparent 1px),
    linear-gradient(0deg, rgba(7, 93, 204, 0.05) 1px, transparent 1px),
    linear-gradient(180deg, #ffffff, #eef7ff);
  background-size: 72px 72px, 72px 72px, auto;
}

.retardant-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 26px 30px;
  border: 1px solid rgba(7, 93, 204, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 44px rgba(6, 31, 67, 0.1);
}

.retardant-icon {
  display: grid;
  width: 76px;
  height: 76px;
  place-items: center;
  border: 2px solid rgba(7, 93, 204, 0.22);
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), #004dbb);
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
}

.retardant-banner span {
  display: block;
  margin-bottom: 4px;
  color: var(--blue);
  font-family: "Barlow Condensed", Inter, sans-serif;
  font-size: 1.18rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.retardant-banner h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 0.94;
  text-transform: uppercase;
}

.retardant-banner p {
  max-width: 940px;
  margin: 10px 0 0;
  color: var(--muted);
}

.retardant-disclaimer {
  padding-top: 12px;
  border-top: 1px solid rgba(7, 93, 204, 0.14);
  font-size: 0.86rem;
}

.retardant-disclaimer strong {
  color: var(--navy);
}

.media-reel {
  padding: 64px 0;
  background:
    linear-gradient(90deg, rgba(7, 93, 204, 0.06) 1px, transparent 1px),
    linear-gradient(0deg, rgba(7, 93, 204, 0.05) 1px, transparent 1px),
    #f6fbff;
  background-size: 72px 72px, 72px 72px, auto;
}

.media-intro {
  max-width: 520px;
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 1.04rem;
}

.media-showcase {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1.18fr) minmax(260px, 0.72fr);
  gap: 18px;
  align-items: center;
}

.media-copy {
  padding-right: 18px;
}

.media-points {
  display: grid;
  gap: 12px;
}

.media-points span {
  position: relative;
  display: block;
  padding-left: 30px;
  color: var(--navy);
  font-weight: 850;
}

.media-points span::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;
  width: 19px;
  height: 19px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--blue);
  font-size: 0.72rem;
  font-weight: 900;
}

.media-feature,
.media-card {
  overflow: hidden;
  border: 1px solid rgba(7, 93, 204, 0.18);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.media-feature {
  display: grid;
  grid-template-rows: minmax(360px, 1fr) auto;
}

.media-feature img,
.media-card video,
.media-card img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  background: var(--navy);
}

.media-feature img {
  min-height: 360px;
}

.media-feature div {
  padding: 22px;
}

.media-feature strong,
.media-card strong {
  display: block;
  color: var(--navy);
  font-family: "Barlow Condensed", Inter, sans-serif;
  font-size: 1.45rem;
  line-height: 1;
  text-transform: uppercase;
}

.media-feature p {
  margin: 8px 0 0;
  color: var(--muted);
}

.media-card {
  display: grid;
  grid-template-rows: minmax(260px, 1fr) auto;
}

.media-card strong {
  padding: 18px;
  color: var(--blue);
}

.neighbor-notice {
  padding: 64px 0;
  color: var(--white);
  background:
    radial-gradient(circle at 80% 20%, rgba(71, 223, 255, 0.2), transparent 22rem),
    linear-gradient(135deg, #031b3f, #062b5b 56%, #031b3f);
}

.notice-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1.18fr);
  gap: 42px;
  align-items: center;
}

.neighbor-notice .section-title h2 {
  color: var(--white);
}

.neighbor-notice .section-title h2::after {
  background: var(--blue-2);
}

.notice-copy p {
  max-width: 520px;
  margin: 0 0 20px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.04rem;
}

.notice-copy ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.notice-copy li {
  position: relative;
  padding-left: 30px;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 800;
}

.notice-copy li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;
  width: 19px;
  height: 19px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--blue);
  font-size: 0.72rem;
  font-weight: 900;
}

.notice-images {
  display: grid;
  max-width: 360px;
  margin-inline: auto;
  align-items: start;
}

.notice-images img {
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 20px 54px rgba(0, 0, 0, 0.32);
}

.discounts {
  position: relative;
  overflow: hidden;
  padding: 26px 0 18px;
  color: var(--white);
  background:
    radial-gradient(circle at 0% 100%, rgba(20, 152, 255, 0.42), transparent 16rem),
    radial-gradient(circle at 100% 100%, rgba(71, 223, 255, 0.36), transparent 16rem),
    linear-gradient(90deg, #031b3f, #062b5b, #031b3f);
}

.discounts::before,
.discounts::after {
  content: "";
  position: absolute;
  bottom: -28px;
  width: 230px;
  height: 88px;
  border-top: 10px solid rgba(71, 223, 255, 0.65);
  border-radius: 50%;
}

.discounts::before {
  left: -70px;
  transform: rotate(-12deg);
}

.discounts::after {
  right: -70px;
  transform: rotate(12deg);
}

.discounts h2 {
  margin: 0 0 12px;
  text-align: center;
  font-size: 1.55rem;
}

.discount-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 960px;
  margin: 0 auto;
  border: 1px solid var(--blue-2);
  border-radius: 8px;
  background: rgba(2, 18, 42, 0.36);
}

.discount-card > div {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 20px;
  align-items: center;
  padding: 20px 36px;
}

.discount-card > div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.5);
}

.discount-card span {
  grid-row: span 3;
  color: var(--blue-2);
  width: 86px;
  color: var(--blue-2);
  font-family: "Barlow Condensed", Inter, sans-serif;
  font-size: 3.35rem;
  font-weight: 900;
  line-height: 1;
}

.discount-card strong {
  color: var(--blue-2);
  font-family: "Barlow Condensed", Inter, sans-serif;
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.discount-card b {
  color: var(--white);
  font-size: 2.8rem;
  line-height: 1;
  text-transform: uppercase;
}

.discount-card p,
.discount-note {
  margin: 0;
}

.discount-card p {
  color: rgba(255, 255, 255, 0.88);
}

.discount-note {
  margin-top: 8px;
  text-align: center;
  font-size: 0.82rem;
}

.referral-banner {
  padding: 28px 0;
  color: var(--white);
  background:
    radial-gradient(circle at 8% 0%, rgba(71, 223, 255, 0.32), transparent 16rem),
    linear-gradient(135deg, #02152f 0%, #064fb7 54%, #02152f 100%);
}

.referral-grid {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 24px 28px;
  border: 1px solid rgba(71, 223, 255, 0.45);
  border-radius: 8px;
  background: rgba(2, 18, 42, 0.36);
  box-shadow: 0 18px 46px rgba(2, 18, 42, 0.2);
}

.referral-icon {
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  border: 2px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  color: var(--blue-2);
  font-family: "Barlow Condensed", Inter, sans-serif;
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
}

.referral-banner span {
  display: block;
  margin-bottom: 4px;
  color: var(--blue-2);
  font-family: "Barlow Condensed", Inter, sans-serif;
  font-size: 1.2rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.referral-banner h2 {
  margin: 0;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.referral-banner p {
  max-width: 720px;
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.86);
}

.referral-banner .btn {
  white-space: nowrap;
}

.partner-banner {
  padding: 28px 0;
  color: var(--navy);
  background:
    linear-gradient(90deg, rgba(7, 93, 204, 0.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(7, 93, 204, 0.06) 1px, transparent 1px),
    linear-gradient(180deg, #ffffff, #eef7ff);
  background-size: 72px 72px, 72px 72px, auto;
}

.partner-grid {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 24px 28px;
  border: 1px solid rgba(7, 93, 204, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 44px rgba(6, 31, 67, 0.1);
}

.partner-icon {
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  border: 2px solid rgba(7, 93, 204, 0.2);
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), #004dbb);
  font-family: "Barlow Condensed", Inter, sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
  line-height: 1;
}

.partner-banner span {
  display: block;
  margin-bottom: 4px;
  color: var(--blue);
  font-family: "Barlow Condensed", Inter, sans-serif;
  font-size: 1.15rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.partner-banner h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.65rem, 3.4vw, 2.45rem);
  line-height: 0.98;
  text-transform: uppercase;
}

.partner-banner p {
  max-width: 800px;
  margin: 8px 0 0;
  color: var(--muted);
}

.partner-banner .btn {
  white-space: nowrap;
}

.investor-hero {
  position: relative;
  min-height: 620px;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(2, 18, 42, 0.94) 0%, rgba(3, 28, 63, 0.74) 52%, rgba(3, 28, 63, 0.3) 100%),
    url("assets/drone-van-hero-real.jpeg") center 28% / cover;
}

.investor-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(20, 152, 255, 0.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(20, 152, 255, 0.06) 1px, transparent 1px);
  background-size: 72px 72px;
  pointer-events: none;
}

.investor-hero-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
  padding: 154px 0 76px;
}

.investor-eyebrow,
.investor-card span,
.investor-list span {
  display: inline-flex;
  color: var(--blue-2);
  font-family: "Barlow Condensed", Inter, sans-serif;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.investor-hero h1 {
  margin: 10px 0 16px;
  font-family: "Barlow Condensed", Inter, sans-serif;
  font-size: clamp(4rem, 10vw, 7.6rem);
  line-height: 0.86;
  text-transform: uppercase;
}

.investor-hero p {
  max-width: 650px;
  margin: 0 0 26px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.1rem;
}

.investor-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.investor-overview,
.investor-model,
.investor-contact {
  padding: 72px 0;
}

.investor-overview {
  background: var(--paper);
}

.investor-grid,
.investor-model-grid,
.investor-contact-grid {
  display: grid;
  gap: 22px;
}

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

.investor-card,
.investor-list,
.investor-contact-panel {
  border: 1px solid rgba(7, 93, 204, 0.14);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 42px rgba(6, 31, 67, 0.09);
}

.investor-card {
  padding: 26px;
}

.investor-card h3,
.investor-list h3,
.investor-contact-panel h3 {
  margin: 10px 0 10px;
  color: var(--navy);
  font-family: "Barlow Condensed", Inter, sans-serif;
  font-size: 2rem;
  line-height: 0.96;
  text-transform: uppercase;
}

.investor-card p,
.investor-list p,
.investor-contact-panel p {
  margin: 0;
  color: var(--muted);
}

.investor-model {
  color: var(--white);
  background:
    radial-gradient(circle at 88% 18%, rgba(71, 223, 255, 0.22), transparent 24rem),
    linear-gradient(135deg, #031b3f, #062b5b 58%, #031b3f);
}

.investor-model .section-title h2 {
  color: var(--white);
}

.investor-model .section-title h2::after {
  background: var(--blue-2);
}

.investor-model-grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: start;
}

.investor-list {
  padding: 28px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.95);
}

.investor-list ul {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.investor-list li {
  position: relative;
  padding-left: 28px;
  color: var(--muted);
  font-weight: 700;
}

.investor-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 4px rgba(20, 152, 255, 0.16);
}

.investor-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.investor-metric {
  min-height: 160px;
  padding: 24px;
  border: 1px solid rgba(71, 223, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.investor-metric strong {
  display: block;
  color: var(--blue-2);
  font-family: "Barlow Condensed", Inter, sans-serif;
  font-size: 2.55rem;
  line-height: 0.9;
  text-transform: uppercase;
}

.investor-metric span {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.84);
  font-weight: 800;
}

.investor-contact {
  background: linear-gradient(180deg, #ffffff, #eef7ff);
}

.investor-contact-grid {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.7fr);
  align-items: center;
}

.investor-contact-panel {
  padding: 30px;
}

.investor-contact-panel .btn {
  margin-top: 20px;
}

.investor-disclaimer {
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.85rem;
}

.portal-page {
  background: #031b3f;
}

.portal-hero {
  min-height: 760px;
  padding: 150px 0 78px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(2, 18, 42, 0.94) 0%, rgba(3, 28, 63, 0.78) 55%, rgba(3, 28, 63, 0.44) 100%),
    url("assets/drone-van-hero-real.jpeg") center 26% / cover;
}

.portal-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.72fr);
  gap: 42px;
  align-items: start;
}

.portal-copy > span,
.portal-card h2,
.portal-dashboard-head span {
  color: var(--blue-2);
  font-family: "Barlow Condensed", Inter, sans-serif;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.portal-copy h1 {
  max-width: 760px;
  margin: 10px 0 18px;
  font-family: "Barlow Condensed", Inter, sans-serif;
  font-size: clamp(3.7rem, 9vw, 6.8rem);
  line-height: 0.86;
  text-transform: uppercase;
}

.portal-copy p {
  max-width: 640px;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.05rem;
}

.portal-note {
  max-width: 560px;
  margin-top: 28px;
  padding: 18px;
  border: 1px solid rgba(71, 223, 255, 0.26);
  border-radius: 8px;
  background: rgba(2, 18, 42, 0.42);
}

.portal-note strong {
  display: block;
  margin-bottom: 6px;
  color: var(--cyan);
  text-transform: uppercase;
}

.portal-card {
  padding: 28px;
  border: 1px solid rgba(71, 223, 255, 0.28);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 24px 70px rgba(2, 18, 42, 0.36);
}

.portal-card h2 {
  margin: 0 0 8px;
  color: var(--blue);
  font-size: 2.3rem;
  line-height: 1;
}

.portal-card p {
  margin: 0 0 18px;
  color: var(--muted);
}

.portal-form {
  display: grid;
  gap: 16px;
}

.portal-form label {
  display: grid;
  gap: 7px;
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.portal-form input {
  min-height: 50px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 0 14px;
  color: var(--navy);
  background: var(--white);
  font: inherit;
  font-weight: 700;
}

.portal-form .btn {
  width: 100%;
}

.portal-status {
  margin-top: 14px !important;
  font-size: 0.88rem;
}

.portal-demo-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  width: 100%;
  margin-top: 12px;
  border: 1px solid rgba(7, 93, 204, 0.18);
  border-radius: 6px;
  color: var(--blue);
  background: #eef7ff;
  font-weight: 900;
  text-decoration: none;
}

.portal-dashboard {
  display: grid;
  gap: 18px;
}

.portal-dashboard[hidden] {
  display: none;
}

.portal-dashboard-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
}

.portal-dashboard-head h2 {
  margin: 0;
}

.portal-dashboard-head button {
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 0 12px;
  color: var(--blue);
  background: var(--white);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.portal-summary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.portal-summary article,
.portal-map,
.portal-zenbooker,
.portal-appointments,
.portal-billing,
.portal-contracts,
.portal-prep,
.portal-documents {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.portal-summary span {
  display: block;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.portal-summary strong {
  color: var(--navy);
}

.portal-zenbooker,
.portal-map,
.portal-appointments,
.portal-billing,
.portal-contracts,
.portal-prep,
.portal-documents {
  display: grid;
  gap: 10px;
}

.portal-zenbooker h3,
.portal-map h3,
.portal-appointments h3,
.portal-billing h3,
.portal-contracts h3,
.portal-prep h3,
.portal-documents h3 {
  margin: 0;
  color: var(--navy);
  font-family: "Barlow Condensed", Inter, sans-serif;
  font-size: 1.7rem;
  line-height: 1;
  text-transform: uppercase;
}

.portal-appointments h4,
.portal-billing h4 {
  margin: 6px 0 0;
  color: var(--blue);
  font-family: "Barlow Condensed", Inter, sans-serif;
  font-size: 1.25rem;
  line-height: 1;
  text-transform: uppercase;
}

.portal-zenbooker p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.portal-contracts p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.portal-map img {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: #dcecff;
}

.portal-map a {
  color: var(--blue);
  font-weight: 900;
}

.portal-contracts a {
  display: block;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--blue);
  background: var(--white);
  font-weight: 900;
  text-decoration: none;
}

.owner-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.58fr) minmax(520px, 1fr);
  gap: 42px;
  align-items: start;
}

.owner-card {
  min-width: 0;
}

.owner-dashboard {
  display: grid;
  gap: 18px;
}

.owner-dashboard[hidden] {
  display: none;
}

.owner-search {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: end;
}

.owner-search label {
  display: grid;
  gap: 7px;
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.owner-search input {
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 0 14px;
  color: var(--navy);
  font: inherit;
  font-weight: 800;
}

.owner-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.82fr);
  gap: 16px;
}

.owner-list,
.owner-contract-panel {
  display: grid;
  gap: 12px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.owner-list h3,
.owner-contract-panel h3 {
  margin: 0;
  color: var(--navy);
  font-family: "Barlow Condensed", Inter, sans-serif;
  font-size: 1.75rem;
  line-height: 1;
  text-transform: uppercase;
}

#owner-customers {
  display: grid;
  gap: 10px;
}

.owner-customer {
  display: grid;
  gap: 4px;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  color: var(--navy);
  background: var(--white);
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.owner-customer.is-selected {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(20, 152, 255, 0.16);
}

.owner-customer strong {
  font-weight: 900;
}

.owner-customer span,
.owner-customer small,
.owner-contract-panel p {
  color: var(--muted);
  font-weight: 800;
}

.owner-contract-panel textarea {
  min-height: 96px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 12px 14px;
  color: var(--navy);
  font: inherit;
  font-weight: 700;
  resize: vertical;
}

.portal-zenbooker article,
.portal-appointments article,
.portal-billing article {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.portal-appointments article strong,
.portal-billing article strong,
.portal-billing article a {
  display: block;
  color: var(--navy);
  font-weight: 900;
  text-decoration: none;
}

.portal-appointments article span,
.portal-billing article span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
}

.portal-appointments article small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
}

.portal-prep ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 0.9rem;
}

.portal-documents a {
  color: var(--blue);
  font-weight: 900;
}

.estimate-strip {
  padding: 28px 0;
  background:
    radial-gradient(circle at 4% 100%, rgba(20, 152, 255, 0.28), transparent 13rem),
    radial-gradient(circle at 96% 100%, rgba(71, 223, 255, 0.24), transparent 13rem),
    #ffffff;
}

.estimate-strip-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 86px;
}

.estimate-strip-grid > div {
  display: flex;
  align-items: center;
  gap: 22px;
}

.estimate-strip span {
  color: var(--blue);
  font-size: 4rem;
  line-height: 1;
}

.estimate-strip h2 {
  margin: 0 0 4px;
  color: var(--blue);
  font-size: 2.55rem;
}

.estimate-strip p {
  margin: 0;
  color: var(--navy);
  font-size: 1.02rem;
}

.measure-estimator {
  padding: 68px 0;
  color: var(--white);
  background:
    radial-gradient(circle at 88% 18%, rgba(71, 223, 255, 0.22), transparent 24rem),
    linear-gradient(90deg, rgba(20, 152, 255, 0.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(20, 152, 255, 0.06) 1px, transparent 1px),
    linear-gradient(135deg, #031b3f, #062b5b 58%, #031b3f);
  background-size: auto, 72px 72px, 72px 72px, auto;
}

.measure-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.52fr) minmax(620px, 1.48fr);
  gap: 42px;
  align-items: start;
}

.measure-estimator .section-title h2 {
  color: var(--white);
}

.measure-estimator .section-title h2::after {
  background: var(--blue-2);
}

.measure-copy p {
  max-width: 430px;
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.04rem;
}

.measure-note {
  max-width: 420px;
  padding: 18px;
  border: 1px solid rgba(71, 223, 255, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.82);
}

.measure-note strong {
  color: var(--blue-2);
  text-transform: uppercase;
}

.measure-tool {
  overflow: hidden;
  border: 1px solid rgba(71, 223, 255, 0.26);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 54px rgba(0, 0, 0, 0.24);
}

.map-panel {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(7, 93, 204, 0.42), rgba(2, 18, 42, 0.86)),
    url("assets/drone-van-hero-real.jpeg") center / cover;
}

.map-placeholder {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  place-content: center;
  gap: 8px;
  padding: 24px;
  text-align: center;
}

.map-placeholder strong {
  font-family: "Barlow Condensed", Inter, sans-serif;
  font-size: 2rem;
  line-height: 1;
  text-transform: uppercase;
}

.map-placeholder span {
  color: rgba(255, 255, 255, 0.82);
}

.map-canvas {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 180ms ease;
}

.map-canvas.map-loaded {
  opacity: 1;
}

.map-tools {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 3;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(2, 18, 42, 0.76);
  backdrop-filter: blur(12px);
}

.map-tools button {
  min-height: 38px;
  border: 0;
  border-radius: 6px;
  padding: 0 14px;
  color: var(--white);
  background: var(--blue);
  font: inherit;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}

.map-tools span {
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.82rem;
  font-weight: 800;
}

.measure-form {
  display: grid;
  gap: 16px;
  padding: 22px;
}

.measure-form label {
  display: grid;
  gap: 7px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.address-search {
  position: relative;
  display: grid;
  gap: 7px;
}

.address-search label {
  display: block;
}

.measure-form input,
.measure-form select {
  min-height: 48px;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  padding: 0 14px;
  color: var(--navy);
  background: var(--white);
  font: inherit;
  font-weight: 700;
}

.address-suggestions {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 6px);
  z-index: 20;
  display: none;
  overflow: hidden;
  border: 1px solid rgba(7, 93, 204, 0.18);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 42px rgba(6, 31, 67, 0.22);
}

.address-suggestions.is-open {
  display: grid;
}

.address-suggestions button {
  min-height: 48px;
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--line);
  padding: 10px 14px;
  color: var(--navy);
  background: var(--white);
  font: inherit;
  font-size: 0.9rem;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}

.address-suggestions button:last-child {
  border-bottom: 0;
}

.address-suggestions button:hover,
.address-suggestions button:focus {
  background: #eef7ff;
  outline: none;
}

.address-suggestions span {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.pac-container {
  z-index: 10000;
  border: 1px solid rgba(7, 93, 204, 0.16);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(6, 31, 67, 0.18);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.pac-item {
  padding: 10px 12px;
  color: var(--muted);
  font-size: 0.9rem;
  cursor: pointer;
}

.pac-item:hover {
  background: #eef7ff;
}

.pac-item-query {
  color: var(--navy);
  font-weight: 900;
}

.measure-actions,
.measure-fields,
.estimate-result {
  display: grid;
  gap: 12px;
}

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

.measure-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: measure-step;
}

.measure-steps li {
  position: relative;
  min-height: 104px;
  padding: 34px 12px 12px;
  border: 1px solid rgba(71, 223, 255, 0.18);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(2, 18, 42, 0.28);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.35;
}

.measure-steps li::before {
  counter-increment: measure-step;
  content: counter(measure-step, decimal-leading-zero);
  position: absolute;
  left: 12px;
  top: 10px;
  color: var(--blue-2);
  font-family: "Barlow Condensed", Inter, sans-serif;
  font-size: 1.25rem;
  font-weight: 900;
  line-height: 1;
}

.measure-fields {
  grid-template-columns: 1.15fr repeat(3, minmax(0, 0.72fr));
}

.estimate-result {
  grid-template-columns: auto 1fr auto 1fr;
  align-items: center;
  padding: 18px;
  border: 1px solid rgba(71, 223, 255, 0.28);
  border-radius: 8px;
  background: rgba(2, 18, 42, 0.38);
}

.estimate-result span {
  color: var(--blue-2);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.estimate-result strong {
  color: var(--white);
  font-family: "Barlow Condensed", Inter, sans-serif;
  font-size: 1.8rem;
  line-height: 1;
  text-transform: uppercase;
}

.estimate-submit {
  display: grid;
  gap: 8px;
}

.estimate-submit .btn {
  width: 100%;
}

.estimate-submit .btn-outline {
  color: var(--white);
  border-color: rgba(71, 223, 255, 0.42);
  background: rgba(255, 255, 255, 0.08);
}

.estimate-submit .btn.is-disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.estimate-submit p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
}

.measure-disclaimer {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
}

.booking-section,
.gallery,
.faq {
  padding: 72px 0;
}

.booking-section {
  scroll-margin-top: 110px;
  background: var(--paper);
}

.booking-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(340px, 1.28fr);
  gap: 42px;
  align-items: start;
}

.booking-grid p {
  max-width: 380px;
  color: var(--muted);
}

.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.contact-list a {
  padding: 15px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--blue);
  background: var(--white);
  font-weight: 900;
  text-decoration: none;
}

.hoa-note {
  max-width: 420px;
  margin-top: 18px;
  padding: 18px;
  border: 1px solid rgba(7, 93, 204, 0.16);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(6, 31, 67, 0.08);
}

.hoa-note strong {
  display: block;
  margin-bottom: 6px;
  color: var(--blue);
  font-family: "Barlow Condensed", Inter, sans-serif;
  font-size: 1.35rem;
  line-height: 1;
  text-transform: uppercase;
}

.hoa-note p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.hoa-review {
  display: grid;
  gap: 12px;
  max-width: 520px;
  margin-top: 18px;
  padding: 18px;
  border: 1px solid rgba(71, 223, 255, 0.22);
  border-radius: 8px;
  background: #061f43;
  box-shadow: 0 18px 42px rgba(6, 31, 67, 0.16);
}

.hoa-review > strong {
  color: var(--blue-2);
  font-family: "Barlow Condensed", Inter, sans-serif;
  font-size: 1.45rem;
  line-height: 1;
  text-transform: uppercase;
}

.hoa-review p {
  max-width: none;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  line-height: 1.45;
}

.hoa-upload,
.hoa-paste {
  display: grid;
  gap: 7px;
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hoa-upload input,
.hoa-paste textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  font: inherit;
  text-transform: none;
}

.hoa-upload input {
  padding: 12px;
}

.hoa-paste textarea {
  min-height: 112px;
  padding: 12px;
  resize: vertical;
}

.hoa-review-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 10px;
}

.hoa-review-actions .btn {
  width: 100%;
  min-height: 46px;
  padding-inline: 14px;
  font-size: 0.82rem;
}

.hoa-review-actions .btn-outline {
  color: var(--white);
  border-color: rgba(71, 223, 255, 0.42);
  background: rgba(255, 255, 255, 0.08);
}

.hoa-review-output {
  display: grid;
  gap: 10px;
  min-height: 48px;
  padding: 14px;
  border: 1px solid rgba(71, 223, 255, 0.2);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(2, 18, 42, 0.44);
  font-size: 0.88rem;
}

.hoa-review-output > strong {
  color: var(--cyan);
  text-transform: uppercase;
}

.hoa-review-list {
  display: grid;
  gap: 8px;
}

.hoa-review-list article {
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.hoa-review-list strong {
  display: block;
  color: var(--white);
  font-size: 0.82rem;
  text-transform: uppercase;
}

.hoa-review-disclaimer {
  color: rgba(255, 255, 255, 0.58) !important;
  font-size: 0.78rem !important;
}

.booking-widget {
  min-width: 0;
  min-height: 1040px;
  overflow-x: auto;
  overflow-y: visible;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
  -webkit-overflow-scrolling: touch;
}

.booking-widget-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(7, 93, 204, 0.08), rgba(71, 223, 255, 0.05)),
    #ffffff;
}

.booking-widget-head div {
  display: grid;
  gap: 3px;
}

.booking-widget-head strong {
  color: var(--navy);
  font-family: "Barlow Condensed", Inter, sans-serif;
  font-size: 1.7rem;
  line-height: 1;
  text-transform: uppercase;
}

.booking-widget-head span {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 800;
}

.booking-widget-head .btn {
  min-height: 44px;
  padding-inline: 18px;
  white-space: nowrap;
  font-size: 0.84rem;
}

.zenbooker-inline-widget {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  min-height: 960px;
  height: clamp(960px, 118vh, 1180px);
}

.zenbooker-inline-widget iframe {
  display: block;
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  min-height: 960px;
  height: clamp(960px, 118vh, 1180px) !important;
  border: 0;
}

.zenbooker-status {
  margin: 0;
  padding: 14px 16px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  background: #f8fbff;
  font-size: 0.86rem;
  font-weight: 800;
}

.homeowner-prep {
  padding: 64px 0;
  background:
    linear-gradient(90deg, rgba(7, 93, 204, 0.06) 1px, transparent 1px),
    linear-gradient(0deg, rgba(7, 93, 204, 0.04) 1px, transparent 1px),
    linear-gradient(180deg, #ffffff, #eef7ff);
  background-size: 72px 72px, 72px 72px, auto;
}

.prep-intro {
  max-width: 680px;
  margin: -6px 0 26px;
  color: var(--muted);
  font-size: 1.04rem;
}

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

.prep-grid article {
  min-height: 230px;
  padding: 24px;
  border: 1px solid rgba(7, 93, 204, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 34px rgba(6, 31, 67, 0.09);
}

.prep-grid span {
  display: inline-flex;
  margin-bottom: 34px;
  color: var(--blue-2);
  font-family: "Barlow Condensed", Inter, sans-serif;
  font-size: 1.55rem;
  font-weight: 900;
}

.prep-grid h3 {
  margin: 0 0 8px;
  color: var(--navy);
  font-family: "Barlow Condensed", Inter, sans-serif;
  font-size: 1.65rem;
  line-height: 1;
  text-transform: uppercase;
}

.prep-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.45;
}

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

.gallery-grid img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.faq {
  display: grid;
  gap: 12px;
}

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

summary {
  padding: 20px 22px;
  color: var(--navy);
  font-weight: 900;
  cursor: pointer;
}

details p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
}

.faq-link {
  justify-self: center;
  margin-top: 12px;
}

.chat-widget {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  display: grid;
  justify-items: end;
  gap: 12px;
}

.chat-launcher {
  min-height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  padding: 0 20px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), #004dbb);
  box-shadow: 0 18px 40px rgba(7, 93, 204, 0.34);
  font: inherit;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}

.chat-panel {
  width: min(380px, calc(100vw - 28px));
  max-height: min(620px, calc(100vh - 104px));
  display: none;
  overflow: hidden;
  border: 1px solid rgba(71, 223, 255, 0.3);
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(3, 20, 48, 0.98), rgba(3, 28, 63, 0.96));
  box-shadow: 0 24px 70px rgba(2, 18, 42, 0.45);
}

.chat-panel.chat-open {
  display: grid;
  grid-template-rows: auto minmax(220px, 1fr) auto auto;
}

.chat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.chat-header div {
  display: grid;
  gap: 2px;
}

.chat-header strong {
  font-family: "Barlow Condensed", Inter, sans-serif;
  font-size: 1.55rem;
  line-height: 1;
  text-transform: uppercase;
}

.chat-header span {
  color: var(--blue-2);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.chat-close {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
}

.chat-messages {
  display: grid;
  align-content: start;
  gap: 10px;
  overflow-y: auto;
  padding: 16px;
}

.chat-bubble {
  max-width: 88%;
  padding: 12px 14px;
  border-radius: 10px;
  font-size: 0.92rem;
  line-height: 1.45;
}

.chat-bubble.bot {
  justify-self: start;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.09);
}

.chat-bubble.user {
  justify-self: end;
  color: var(--white);
  background: var(--blue);
}

.chat-suggestions {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 0 16px 12px;
}

.chat-source {
  margin: 0 16px 12px;
  padding: 9px 10px;
  border: 1px solid rgba(71, 223, 255, 0.18);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(71, 223, 255, 0.08);
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1.35;
}

.chat-suggestions button {
  flex: 0 0 auto;
  min-height: 36px;
  border: 1px solid rgba(71, 223, 255, 0.24);
  border-radius: 999px;
  padding: 0 12px;
  color: var(--white);
  background: rgba(71, 223, 255, 0.1);
  font: inherit;
  font-size: 0.78rem;
  font-weight: 850;
  cursor: pointer;
}

.chat-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  padding: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.chat-form input {
  min-height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  padding: 0 12px;
  color: var(--navy);
  font: inherit;
}

.chat-form button {
  min-height: 44px;
  border: 0;
  border-radius: 8px;
  padding: 0 15px;
  color: var(--white);
  background: var(--blue);
  font: inherit;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}

.footer {
  padding: 26px 0;
  color: var(--white);
  background: var(--navy);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 24px;
}

.footer a {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 14px;
  align-items: center;
  color: var(--white);
  text-decoration: none;
}

.footer span {
  grid-row: span 2;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), #004dbb);
  font-size: 1.7rem;
}

.footer small {
  color: var(--blue-2);
  font-weight: 900;
  text-transform: uppercase;
}

.footer strong {
  font-size: 1.35rem;
}

@media (max-width: 1080px) {
  .nav {
    padding: 12px;
  }

  .nav-menu {
    gap: 10px;
  }

  .nav-links {
    gap: 2px;
    font-size: 0.8rem;
  }

  .nav-links a {
    padding: 8px 9px;
  }

  .nav-btn {
    min-width: 140px;
    padding-inline: 18px;
  }

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

  .why-grid,
  .booking-grid,
  .fleet-grid,
  .drone-detail-grid,
  .service-area-grid,
  .lead-funnel-grid,
  .measure-grid,
  .notice-grid {
    grid-template-columns: 1fr;
  }

  .measure-fields {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .measure-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .media-showcase {
    grid-template-columns: 1fr;
  }

  .investor-grid,
  .investor-model-grid,
  .investor-contact-grid,
  .portal-layout,
  .legal-layout,
  .commercial-focus {
    grid-template-columns: 1fr;
  }

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

  .why-grid img {
    height: 300px;
  }
}

@media (prefers-reduced-motion: reduce), (max-width: 900px) {
  .residential-card::before,
  .commercial-card::before {
    background-attachment: scroll;
  }
}

@media (max-width: 900px) {
  .hero-bg {
    background-image: none;
    background-attachment: scroll;
  }

  .hero-bg img {
    height: calc(100% + 86px);
    opacity: 1;
    transform: translate3d(0, var(--hero-parallax, 0px), 0);
    transition: transform 80ms linear;
  }
}

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

  .hero-bg img {
    transform: none;
    transition: none;
  }

  .hero-copy,
  .hero-stamp,
  .motion-ready .motion-reveal {
    opacity: 1;
    transform: none;
  }
}

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

  .nav {
    position: relative;
    gap: 12px;
    border-radius: 12px;
    padding: 10px;
  }

  .brand {
    min-width: 0;
  }

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

  .nav-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: none;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 12px;
    background: linear-gradient(180deg, rgba(3, 20, 48, 0.96), rgba(3, 28, 63, 0.9));
    box-shadow: 0 18px 50px rgba(2, 18, 42, 0.36);
    backdrop-filter: blur(18px);
  }

  .nav-open .nav-menu {
    display: grid;
    gap: 10px;
  }

  .nav-links {
    display: grid;
    grid-template-columns: 1fr;
    justify-content: stretch;
    gap: 4px;
    overflow: visible;
    font-size: 0.95rem;
    text-align: left;
  }

  .nav-links a {
    padding: 12px 14px;
    border-radius: 8px;
    white-space: nowrap;
  }

  .brand img {
    width: 66px;
    height: 46px;
  }

  .brand strong {
    font-size: 1.12rem;
  }

  .brand em {
    font-size: 0.52rem;
  }

  .nav-btn,
  .hero-actions .btn,
  .lead-form-actions .btn,
  .estimate-strip .btn {
    width: 100%;
  }

  .nav-btn {
    min-height: 44px;
  }

  .hero {
    min-height: auto;
  }

  .hero-bg img {
    object-position: 58% 0;
  }

  .hero-bg {
    background-position: 58% 0;
  }

  .hero-bg::after {
    background:
      linear-gradient(90deg, rgba(2, 18, 42, 0.78) 0%, rgba(3, 28, 63, 0.58) 70%, rgba(3, 28, 63, 0.22) 100%),
      radial-gradient(circle at 18% 72%, rgba(20, 152, 255, 0.18), transparent 24rem);
  }

  .hero-content {
    min-height: 620px;
    padding: 154px 0 34px;
  }

  .hero h1 {
    font-size: clamp(3.4rem, 17vw, 5rem);
  }

  .hero h2 {
    font-size: clamp(2rem, 10vw, 2.6rem);
  }

  .trust-row {
    gap: 16px;
  }

  .trust-row span {
    width: calc(50% - 8px);
  }

  .investor-hero-content {
    padding: 150px 0 54px;
  }

  .investor-actions .btn {
    width: 100%;
  }

  .service-grid,
  .work-type-grid,
  .work-type-card ul,
  .commercial-focus-grid,
  .service-area-grid,
  .lead-form-grid,
  .drone-benefits,
  .drone-audience-grid,
  .environment-grid,
  .retardant-grid,
  .investor-grid,
  .investor-metrics,
  .discount-card,
  .gallery-grid,
  .media-showcase,
  .notice-images,
  .prep-grid,
  .portal-summary,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .portal-hero {
    min-height: auto;
    padding: 142px 0 58px;
    background-position: 56% 28%;
  }

  .portal-card {
    padding: 22px;
  }

  .legal-summary {
    position: static;
  }

  .portal-dashboard-head {
    display: grid;
  }

  .work-type-card {
    min-height: auto;
    padding: 28px;
  }

  .drone-process {
    display: grid;
  }

  .lead-form-actions,
  .lead-form-head {
    display: grid;
  }

  .drone-process .btn {
    width: 100%;
  }

  .discount-card > div + div {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.5);
  }

  .referral-grid {
    grid-template-columns: 1fr;
    justify-items: start;
    padding: 24px;
  }

  .referral-banner .btn {
    width: 100%;
    white-space: normal;
  }

  .partner-grid {
    grid-template-columns: 1fr;
    justify-items: start;
    padding: 24px;
  }

  .partner-banner .btn {
    width: 100%;
    white-space: normal;
  }

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

  .estimate-strip-grid {
    display: grid;
    gap: 20px;
  }

  .estimate-strip-grid > div {
    align-items: flex-start;
  }

  .booking-section,
  .measure-estimator,
  .homeowner-prep,
  .gallery,
  .faq {
    padding: 54px 0;
  }

  .measure-actions,
  .measure-steps,
  .measure-fields,
  .estimate-result {
    grid-template-columns: 1fr;
  }

  .map-panel {
    min-height: 540px;
  }

  .gallery-grid img,
  .why-grid img,
  .media-feature img,
  .media-card video,
  .media-card img {
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .booking-widget,
  .zenbooker-inline-widget {
    min-height: 1040px;
  }

  .zenbooker-inline-widget,
  .zenbooker-inline-widget iframe {
    min-height: 1040px;
    height: 1040px !important;
  }

  .booking-widget-head {
    display: grid;
  }

  .booking-widget-head .btn {
    width: 100%;
    white-space: normal;
  }

  .chat-widget {
    right: 14px;
    bottom: 14px;
  }

  .chat-launcher {
    min-height: 48px;
    padding: 0 16px;
    font-size: 0.88rem;
  }
}
