/* === USP CARD BUTTON POSITIONING === */
.usp-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.usp-card p {
  margin-bottom: var(--space-sm);
}

.usp-card .btn {
  margin-top: auto;
  margin-bottom: 0;
}

/* === MODAL === */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
}

.modal.is-open {
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-content {
  background-color: hsl(var(--card));
  margin: auto;
  padding: var(--space-xl);
  border: 1px solid hsl(var(--border));
  width: 90%;
  max-width: 700px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  animation: modalFadeIn 0.3s ease-out;
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: scale(0.9) translateY(-20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.modal-content .close {
  position: absolute;
  top: var(--space);
  right: var(--space);
  font-size: 2rem;
  font-weight: bold;
  color: hsl(var(--muted-foreground));
  cursor: pointer;
  line-height: 1;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color var(--speed-fast) var(--ease);
  z-index: 10;
}

.modal-content .close:hover,
.modal-content .close:focus {
  color: hsl(var(--foreground));
}

.modal-content h2 {
  font-size: 1.75rem;
  margin-bottom: var(--space-md);
  margin-top: 0;
  padding-right: var(--space-xl);
}

.modal-content h2:first-of-type {
  margin-top: 0;
}

.modal-content p {
  margin-bottom: var(--space);
  line-height: 1.6;
}

.modal-content p:last-child {
  margin-bottom: 0;
}

