/* Trigger button */
.trigger-btn {
  padding: 12px 28px;
  background: #e8281e;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  letter-spacing: 0.02em;
  transition: background 0.2s, transform 0.1s;
}
.trigger-btn:hover {
  background: #c92017;
}
.trigger-btn:active {
  transform: scale(0.98);
}

/* Overlay */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 1rem;
  animation: fadeIn 0.2s ease;
}
.overlay.active {
  display: flex;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Popup card */
.popup {
  background: linear-gradient(135deg, #1A1A2E 0%, #2D1F3D 50%, #3D1A1A 100%);
  border-radius: 16px;
  border: 0.5px solid rgba(255, 255, 255, 0.12);
  padding: 2rem;
  width: 100%;
  max-width: 520px;
  position: relative;
  color: #fff;
  animation: slideUp 0.25s ease;
}

/* Close button */
.close-btn {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  cursor: pointer;
  font-size: 18px;
  color: #fff;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.close-btn:hover {
  background: rgba(255, 255, 255, 0.22);
}

/* Badge */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 165, 0, 0.15);
  border: 0.5px solid rgba(255, 165, 0, 0.4);
  border-radius: 20px;
  padding: 4px 12px;
  margin-bottom: 1rem;
}
.badge .badge-dot {
  width: 7px;
  height: 7px;
  background: #f97316;
  border-radius: 50%;
}
.badge span {
  font-size: 12px;
  color: #fbbf24;
}

.popup-title {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.25rem;
}

.subtitle {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 1.25rem;
}

/* Pills */
.pills {
  display: flex;
  gap: 8px;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}
.pills .pill {
  border: 0.5px solid rgba(255, 255, 255, 0.25);
  border-radius: 20px;
  padding: 5px 14px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
}

/* Inputs */
.fields {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 1rem;
}
.fields input {
  width: 100%;
  padding: 0 14px;
  height: 44px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 14px;
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
  outline: none;
  transition: border-color 0.2s;
}
.fields input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.35);
}
.fields input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}
.fields input:focus {
  border-color: rgba(232, 40, 30, 0.6);
}

.error {
  font-size: 12px;
  color: #f87171;
  margin-bottom: 0.75rem;
  display: none;
}

/* CTA */
.cta-btn {
  width: 100%;
  height: 46px;
  background: #e8281e;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  letter-spacing: 0.02em;
  transition: background 0.2s, transform 0.1s;
}
.cta-btn:hover {
  background: #c92017;
}
.cta-btn:active {
  transform: scale(0.98);
}

/* Stats */
.stats {
  display: flex;
  justify-content: space-between;
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 0.5px solid rgba(255, 255, 255, 0.1);
}
.stats .stat-item {
  display: flex;
  align-items: center;
  gap: 8px;
}
.stats .stat-icon {
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.stats .stat-icon.green {
  background: #22c55e;
  border-radius: 5px;
}
.stats .stat-icon.blue {
  background: #3b82f6;
  border-radius: 50%;
}
.stats .stat-icon i {
  color: #fff;
  font-size: 13px;
}
.stats .stat-label {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
}
.stats .stat-sub {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
}

/* No thanks */
.no-thanks-wrap {
  text-align: center;
  margin-top: 0.875rem;
}
.no-thanks-wrap .no-thanks {
  background: none;
  border: none;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  text-decoration: underline;
}
.no-thanks-wrap .no-thanks:hover {
  color: rgba(255, 255, 255, 0.7);
}

/* Success */
.success {
  display: none;
  background: linear-gradient(145deg, #1a1030 0%, #2a1a4a 100%);
  border-radius: 16px;
  border: 0.5px solid rgba(255, 255, 255, 0.12);
  padding: 2.5rem 2rem;
  width: 100%;
  max-width: 420px;
  text-align: center;
  color: #fff;
  animation: slideUp 0.25s ease;
}
.success i {
  font-size: 52px;
  color: #22c55e;
}
.success .popup-title {
  font-size: 20px;
  font-weight: 600;
  margin: 1rem 0 0.5rem;
}
.success p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}/*# sourceMappingURL=modal.css.map */