/* Versa Single Plan front-end styles v1.3.0 */
.vsp-plan-wrapper { width:100%; }
.vsp-plan-wrapper.vsp-center { display:flex; justify-content:center; }
.vsp-card {
  background: var(--vsp-bg, #fff);
  color: var(--vsp-text, #111);
  border-radius: var(--vsp-radius, 20px);
  max-width: var(--vsp-max, 520px);
  width: 100%;
  border: 1px solid rgba(0,0,0,.06);
  padding: 28px 24px 18px;
  box-sizing: border-box;
  transition: box-shadow .25s ease, transform .25s ease;
}
.vsp-card.vsp-shadow { box-shadow: 0 14px 34px rgba(0,0,0,.10); }
.vsp-card:hover.vsp-shadow { transform: translateY(-2px); box-shadow: 0 18px 42px rgba(0,0,0,.12); }

.vsp-title {
  margin: 0 0 8px 0;
  text-align: center;
  font-size: 28px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: .2px;
}
.vsp-tagline {
  text-align: center;
  color: var(--vsp-muted, #6b7280);
  margin: 0 6px 14px;
  line-height: 1.55;
}
.vsp-price {
  text-align: center;
  font-weight: 800;
  font-size: 18px;
  margin: 6px 0 16px;
}

.vsp-button { text-align:center; margin: 6px 0 14px; }
.vsp-button .vsp-button-inner { display:inline-block; }
/* Style whatever the shortcode renders */
.vsp-button a,
.vsp-button button,
.vsp-button .button,
.vsp-button input[type=button],
.vsp-button input[type=submit] {
  background: var(--vsp-btn-bg, #111) !important;
  color: var(--vsp-btn-text, #fff) !important;
  border-radius: var(--vsp-btn-radius, 10px) !important;
  padding: var(--vsp-btn-py, 12px) var(--vsp-btn-px, 22px) !important;
  border: 1px solid transparent !important;
  display:inline-block !important;
  font-weight: 800 !important;
  line-height: 1 !important;
  text-decoration:none !important;
  text-transform: var(--vsp-btn-upper, inherit) !important;
  box-shadow: var(--vsp-btn-shadow, none) !important;
  transition: transform .15s ease, box-shadow .2s ease, background-color .2s ease, color .2s ease;
}
.vsp-button a:hover,
.vsp-button button:hover,
.vsp-button .button:hover,
.vsp-button input[type=button]:hover,
.vsp-button input[type=submit]:hover {
  background: var(--vsp-btn-bg-h, #000) !important;
  color: var(--vsp-btn-text-h, #fff) !important;
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(0,0,0,.18) !important;
}

.vsp-features { list-style: none; margin: 12px 0 0; padding: 0; }
.vsp-features li {
  position: relative;
  padding: 12px 0 12px 22px;
  border-top: 1px solid var(--vsp-sep, #ececec);
  color: var(--vsp-text, #111);
}
.vsp-features li.first { border-top: none; }
.vsp-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 18px;
  width: 8px; height: 8px;
  border-radius: 999px;
  background: var(--vsp-accent, #000);
  opacity: .9;
}

.vsp-legal {
  margin-top: 14px;
  font-size: 12px;
  line-height: 1.45;
  color: var(--vsp-muted, #6b7280);
}
.vsp-legal a {
  color: var(--vsp-legal, #6b7280);
  text-decoration: underline;
  transition: color .2s ease;
}
.vsp-legal a:hover { color: var(--vsp-legal-h, #111111); }

@media (min-width: 720px) {
  .vsp-card { padding: 34px 30px 22px; }
  .vsp-title { font-size: 30px; }
}
