.app-survey {
  position: fixed;
  inset: 0;
  z-index: 10050;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  pointer-events: none;
}

.app-survey.is-open {
  pointer-events: auto;
}

.app-survey[hidden] {
  display: none !important;
}

.app-survey__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.55);
  opacity: 0;
  transition: opacity 0.28s ease;
}

.app-survey__panel {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 22rem;
  padding: 1.5rem 1.25rem 1.25rem;
  border-radius: 1rem;
  background: #fff;
  box-shadow: 0 24px 48px rgba(15, 23, 42, 0.18);
  text-align: center;
  transform: translateY(12px) scale(0.98);
  opacity: 0;
  transition: transform 0.28s ease, opacity 0.28s ease;
}

.app-survey.is-open .app-survey__backdrop {
  opacity: 1;
}

.app-survey.is-open .app-survey__panel {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.app-survey__icon {
  display: block;
  margin: 0 auto 1rem;
}

.app-survey__title {
  margin: 0 0 0.75rem;
  font-size: 1.125rem;
  line-height: 1.35;
  font-weight: 700;
  color: #0f172a;
}

.app-survey__text {
  margin: 0 0 1.25rem;
  font-size: 0.875rem;
  line-height: 1.45;
  color: #64748b;
}

.app-survey__actions {
  display: flex;
  gap: 0.75rem;
}

.app-survey__btn {
  flex: 1;
  min-height: 2.75rem;
}

body.app-survey-open {
  overflow: hidden;
}

.access-card__app-survey--yes {
  color: #0d7a43;
  font-weight: 600;
}

.access-card__app-survey--no {
  color: #b45309;
  font-weight: 600;
}
