/* Chrome backdrop-filter performance fix */
/* Removes blur from large sections — keeps it on small UI elements */
@media all and (-webkit-min-device-pixel-ratio:0) and (min-resolution:.001dpcm) {
  .features-sec, .platform-sec, .map-sec, .cta-sec {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }
}

/* Footer must always be fully opaque — no map showing through */
footer {
  background: #060e1c !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  position: relative !important;
  z-index: 10 !important;
}

/* All sections must be above the fixed map */
section, footer {
  position: relative !important;
  z-index: 10 !important;
}
