/* GEO step guide — BizMap-inspired */
.geo-guide-btn-trigger{
  position:relative;
  height:34px;padding:0 12px;border-radius:9px;border:0;
  background:var(--g-accent,#0d7a6f);color:#fff;
  font:inherit;font-size:12px;font-weight:800;cursor:pointer;
  display:inline-flex;align-items:center;gap:6px;
}
.geo-guide-btn-trigger::after{
  content:"";position:absolute;inset:0;border-radius:9px;
  box-shadow:0 0 0 0 rgba(13,122,111,.55);
  animation:geoGuidePulse 1.6s ease-in-out infinite;
  pointer-events:none;
}
@keyframes geoGuidePulse{
  0%,100%{box-shadow:0 0 0 0 rgba(13,122,111,.45);opacity:.9}
  50%{box-shadow:0 0 0 8px rgba(13,122,111,0);opacity:1}
}
.geo-guide-btn-trigger:hover{filter:brightness(1.06)}

.geo-guide-offer{
  position:fixed;z-index:10040;width:min(300px,calc(100vw - 24px));
  padding:16px;border-radius:14px;
  background:rgba(15,23,42,.96);color:#f8fafc;
  border:1px solid rgba(255,255,255,.12);
  box-shadow:0 16px 40px rgba(0,0,0,.45);
  backdrop-filter:blur(10px);
}
.geo-guide-offer-title{font-size:14px;font-weight:800;line-height:1.45;margin:0 0 8px}
.geo-guide-offer-lead{margin:0 0 12px;font-size:12px;line-height:1.5;color:#94a3b8}
.geo-guide-offer-btns{display:flex;gap:8px;justify-content:flex-end}

.geo-guide-card{
  position:fixed;z-index:10050;width:min(340px,calc(100vw - 24px));
  padding:16px 16px 14px;border-radius:14px;
  background:rgba(15,23,42,.96);color:#e8edf4;
  border:2px solid #2bb5a5;
  box-shadow:0 18px 42px rgba(0,0,0,.5);
  backdrop-filter:blur(12px);
  display:flex;flex-direction:column;gap:10px;
}
.geo-guide-card.is-shake{animation:geoGuideShake .4s ease}
@keyframes geoGuideShake{
  0%,100%{transform:translateX(0)}
  25%{transform:translateX(-6px)}
  75%{transform:translateX(6px)}
}
.geo-guide-card-head{display:flex;align-items:center;justify-content:space-between;gap:8px;padding-bottom:8px;border-bottom:1px solid rgba(255,255,255,.1)}
.geo-guide-card-title{font-size:13px;font-weight:800;color:#5eead4}
.geo-guide-card-x{border:0;background:transparent;color:#94a3b8;font-size:16px;cursor:pointer;line-height:1;padding:2px 4px}
.geo-guide-card-x:hover{color:#fff}
.geo-guide-step-title{margin:0 0 6px;font-size:14px;font-weight:800;color:#fff}
.geo-guide-step-body{font-size:13px;line-height:1.55;color:#cbd5e1}
.geo-guide-step-body strong{color:#f8fafc}
.geo-guide-step-body .tip{margin-top:8px;font-size:12px;color:#fbbf24;font-weight:700}
.geo-guide-err{margin:8px 0 0;font-size:12px;font-weight:800;color:#fb7185}
.geo-guide-card-foot{display:flex;align-items:center;justify-content:space-between;gap:8px;margin-top:4px}
.geo-guide-progress{font-size:12px;font-weight:700;color:#94a3b8}
.geo-guide-nav{display:flex;flex-wrap:wrap;gap:6px;justify-content:flex-end}
.geo-guide-btn{
  height:32px;padding:0 12px;border-radius:8px;border:0;
  font:inherit;font-size:12px;font-weight:800;cursor:pointer;
}
.geo-guide-btn.primary{background:#2bb5a5;color:#042f2e}
.geo-guide-btn.primary:hover{filter:brightness(1.06)}
.geo-guide-btn.sample{background:rgba(251,191,36,.18);color:#fbbf24;border:1px solid rgba(251,191,36,.45)}
.geo-guide-btn.sample:hover{background:rgba(251,191,36,.28)}
.geo-guide-btn.ghost{background:rgba(255,255,255,.08);color:#e2e8f0}
.geo-guide-btn.ghost:hover{background:rgba(255,255,255,.14)}

.geo-guide-hl{
  position:relative;z-index:10030 !important;
  outline:3px solid #2bb5a5 !important;
  outline-offset:3px;
  box-shadow:0 0 0 6px rgba(43,181,165,.22) !important;
  border-radius:10px;
  animation:geoGuideGlow 1.2s ease-in-out infinite alternate;
}
.geo-guide-hl-err{
  position:relative;z-index:10030 !important;
  outline:3px solid #f43f5e !important;
  outline-offset:3px;
  box-shadow:0 0 0 6px rgba(244,63,94,.2) !important;
  border-radius:10px;
}
@keyframes geoGuideGlow{
  from{box-shadow:0 0 0 4px rgba(43,181,165,.18)}
  to{box-shadow:0 0 0 10px rgba(43,181,165,.08)}
}
.geo-guide-dim{opacity:.38 !important;pointer-events:none !important;filter:grayscale(.15)}

@media (max-width:900px){
  .geo-guide-card,.geo-guide-offer{
    left:12px !important;right:12px !important;width:auto;
    top:auto !important;bottom:16px;
  }
}
