.modal-backdrop.show {
  background: radial-gradient(circle, #1e1b4b, #020617);
  opacity: 0.85;
}

.agreement-card {
  border: 0;
  border-radius: 22px;
  background: linear-gradient(145deg, #ffffff, #f1f5ff);
  box-shadow: 0 25px 70px rgba(15, 23, 42, 0.35);
  animation: fadeUp 0.4s ease;
}

.modal-title {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-weight: 700;
  color: #1e293b;
}

.agreement-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.agreement-list li {
  display: flex;
  gap: 10px;
  padding: 0.45rem 0;
  font-size: 0.9rem;
  color: #475569;
}

.agreement-list li::before {
  content: "";
  width: 6px;
  height: 6px;
  margin-top: 5px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4f46e5, #9333ea);
  flex-shrink: 0;
}

.agree-box {
  display: flex;
  gap: 10px;
  align-items: center;
}

.agree-box input {
  width: 18px;
  height: 18px;
  accent-color: #4f46e5;
}

.btn-agree {
  background: linear-gradient(135deg, #4f46e5, #6366f1);
  color: #fff;
  border-radius: 999px;
  padding: 0.6rem 2.2rem;
  font-weight: 600;
  border: 0;
}

.btn-agree:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.license-card {
  border: 0;
  border-radius: 1.25rem;
  background: linear-gradient(180deg, #fff 0%, #eef2ff 80%);

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  transition: all 0.35s ease;
}

.license-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(79, 70, 229, 0.15);
}

.badge-modern {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 0.7rem;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
}

.logo-wrap {
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.license-icon {
  max-height: 60px;
  max-width: 140px;
  object-fit: contain;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.9rem;
  color: #6b7280;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0.4rem 0;
  line-height: 1.5;
}

.feature-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4f46e5, #9333ea);
  flex-shrink: 0;
}

.price {
  font-size: 1.4rem;
  font-weight: 700;
  color: #4f46e5;
}

.price span {
  font-size: 0.85rem;
  color: #6b7280;
}

.btn-modern {
  min-width: 110px;
  background: linear-gradient(135deg, #4f46e5, #6366f1);
  color: #fff;
  border-radius: 999px;
  font-size: 0.85rem;
  padding: 0.45rem 1.25rem;
  transition: all 0.3s ease;
}

.btn-modern:hover {
  transform: scale(1.05);
  background: linear-gradient(135deg, #4338ca, #4f46e5);
  color: white;
}

.btn-modern-lg {
  background: linear-gradient(135deg, #4f46e5, #9333ea);
  color: #fff;
  border-radius: 999px;
  padding: 0.7rem 2.5rem;
  font-weight: 600;
}
