/* Overlay */
.tp-mock-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.75);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

/* Modal */
.tp-mock-modal {
  width: 100%;
  max-width: 420px;
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,.35);
  animation: tpScaleIn .35s ease;
}

/* Header */
.tp-mock-header {
  padding: 22px;
  background: linear-gradient(135deg, #4f46e5, #6366f1);
  color: #fff;
}

.tp-mock-header h2 {
  margin: 0;
  font-size: 20px;
}

.tp-mock-header p {
  margin-top: 6px;
  font-size: 14px;
  opacity: .9;
}

/* Body */
.tp-mock-body {
  padding: 22px;
}

.tp-mock-points {
  display: grid;
  gap: 12px;
}

.tp-mock-point {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 14px;
  color: #334155;
}

/* Footer */
.tp-mock-footer {
  padding: 18px 22px;
  display: flex;
  gap: 12px;
}

.tp-btn {
  flex: 1;
  padding: 14px;
  border-radius: 14px;
  border: none;
  font-size: 15px;
  cursor: pointer;
}

.tp-btn-primary {
  background: #4f46e5;
  color: #fff;
}

.tp-btn-outline {
  background: #f1f5f9;
  color: #334155;
}

/* Animation */
@keyframes tpScaleIn {
  from {
    opacity: 0;
    transform: scale(.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Desktop refinement */
@media (min-width: 768px) {
  .tp-mock-modal {
    max-width: 460px;
  }
}
