/* GEO block overlay — usable with both landing (.v4-btn) and subpage (.btn) chrome. */
.geo-blocked .v4-btn-teal,
.geo-blocked .v4-btn-navy,
.geo-blocked .btn-teal,
.geo-blocked .btn-navy {
  background: #B9C0CB !important;
  color: #fff !important;
  box-shadow: none !important;
  cursor: not-allowed;
  filter: none;
}
.geo-blocked .v4-btn-teal:hover,
.geo-blocked .v4-btn-navy:hover,
.geo-blocked .btn-teal:hover,
.geo-blocked .btn-navy:hover { background: #B9C0CB !important; transform: none; }

.geo-pop-back {
  position: fixed; inset: 0; z-index: 120;
  background: rgba(20,35,60,.55); backdrop-filter: blur(4px);
  display: grid; place-items: center; padding: 24px;
  animation: geoIn .2s ease both;
}
.geo-pop {
  background: #fff; border-radius: 20px; width: 100%; max-width: 400px;
  padding: 36px 32px 28px; text-align: center;
  box-shadow: 0 6px 16px -6px rgba(20,35,60,.12), 0 18px 40px -20px rgba(20,35,60,.22);
  animation: geoModalIn .25s cubic-bezier(.2,.8,.2,1) both;
}
.geo-pop-ic {
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--teal-50); color: var(--teal);
  display: grid; place-items: center; margin: 0 auto 20px;
}
.geo-pop-h { font-family: var(--font-display); font-size: 21px; font-weight: 700; letter-spacing: -0.015em; color: var(--navy); margin: 0 0 10px; }
.geo-pop-b { font-size: 14px; line-height: 1.6; color: var(--muted); margin: 0 0 24px; }
.geo-pop-btn { width: 100%; justify-content: center; }
@keyframes geoIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes geoModalIn { from { opacity: 0; transform: translateY(8px) scale(.98); } to { opacity: 1; transform: translateY(0) scale(1); } }
