.world-map-bg {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  opacity: 0.075;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at top left, rgba(255,106,0,0.10), transparent 35%),
    radial-gradient(circle at bottom right, rgba(0,45,139,0.12), transparent 35%);
  background-attachment: fixed;
}

.world-map-bg svg {
  width: min(1400px, 96vw);
  height: auto;
  transform: translateY(20px);
}

.glass {
  background: rgba(255,255,255,0.78);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.65);
}

.hero-grid {
  background-image:
    linear-gradient(rgba(0,45,139,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,45,139,0.04) 1px, transparent 1px);
  background-size: 24px 24px;
}

.carrier-card {
  min-width: 210px;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.06);
  margin-right: 20px;
  border: 2px solid #edf2f7;
  position: relative;
  overflow: hidden;
  padding: 15px;
}

.carrier-card img {
  max-width: 90%;
  max-height: 90%;
  width: auto;
  height: auto;
  object-fit: contain;
}

.pin-wrap {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
  pointer-events: none;
}

.custom-pin {
  position: relative;
  width: 54px;
  height: 54px;
  border-radius: 9999px;
  background: white;
  border: 3px solid var(--brand-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.custom-pin img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  border-radius: 9999px;
}

.custom-pin::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 14px solid var(--brand-orange);
}

.modal-backdrop {
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.section-blur {
  position: absolute;
  border-radius: 9999px;
  filter: blur(70px);
  opacity: 0.22;
  z-index: 0;
}

.menu-shadow {
  box-shadow: 0 8px 22px rgba(2,45,139,0.09);
}

.counter-pop {
  text-shadow: 0 12px 30px rgba(255, 106, 0, 0.16);
}

.location-chip {
  background: rgba(0,45,139,0.06);
  border: 1px solid rgba(0,45,139,0.12);
}

.trust-badge-chip {
  background: rgba(255, 106, 0, 0.07);
  border: 1px solid rgba(255, 106, 0, 0.18);
}