.pricing-form {
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
  background: transparent;
}
.pricing-form__option {
  position: relative;
  margin-bottom: 16px;
}
.pricing-form__option:last-child {
  margin-bottom: 24px;
}
.pricing-form__radio {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.pricing-form__radio:checked + .pricing-form__card {
  border-color: #2D1B5B;
  background-color: #EAD6FE;
}
.pricing-form__radio:checked + .pricing-form__card .pricing-form__radio-indicator::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 14px;
  height: 14px;
  background-color: #683EC3;
  border-radius: 50%;
}
.pricing-form__card {
  position: relative;
  display: block;
  padding: 24px;
  background: #FDFBFF;
  background: linear-gradient(46deg, #fdfbff, #f8f3ff 100%);
  border: 4px solid transparent;
  border-radius: 16px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.pricing-form__card:not(.pricing-form__card--featured) {
  padding: 64px 24px 24px;
}
@media (min-width: 640px) {
  .pricing-form__card:not(.pricing-form__card--featured) {
    padding: 24px;
  }
}
.pricing-form__card:hover {
  border-color: transparent;
  background: #FDFBFF;
  background: linear-gradient(46deg, #fdfbff 0%, #f4e7ff 46%, #f8f3ff 100%);
}
.pricing-form__badge {
  background-color: #8b5cf6;
  color: white;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  display: inline-flex;
}
.pricing-form__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 8px;
  flex-direction: column;
}
@media (min-width: 640px) {
  .pricing-form__header {
    flex-direction: row;
  }
}
.pricing-form__header-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-direction: column;
  text-align: center;
}
@media (min-width: 640px) {
  .pricing-form__header-inner {
    flex-direction: row;
    text-align: left;
  }
}
.pricing-form__duration {
  font-size: 32px;
  font-weight: 700;
  color: #1f2937;
  line-height: 1;
}
.pricing-form__discount {
  background: #dbeafe;
  color: #1e40af;
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  margin-left: 8px;
}
.pricing-form__radio-indicator {
  width: 26px;
  height: 26px;
  border: 3px solid #683EC3;
  border-radius: 99rem;
  background-color: white;
  position: absolute;
  top: 24px;
  right: 24px;
  flex-shrink: 0;
}
@media (min-width: 640px) {
  .pricing-form__radio-indicator {
    position: relative;
    top: inherit;
    right: inherit;
  }
}
.pricing-form__content {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.pricing-form__details {
  flex: 1;
  margin-top: 16px;
}
@media (min-width: 640px) {
  .pricing-form__details {
    margin-top: 8px;
  }
}
.pricing-form__daily-price {
  font-size: 16px;
  font-weight: 600;
  color: #374151;
  text-align: center;
}
@media (min-width: 640px) {
  .pricing-form__daily-price {
    text-align: left;
  }
}
.pricing-form__renewal {
  font-size: 14px;
  color: #6b7280;
}
.pricing-form__pricing {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 640px) {
  .pricing-form__pricing {
    justify-content: flex-end;
    flex-direction: row;
  }
}
.pricing-form__pricing-container {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  grid-area: 16px;
}
@media (min-width: 640px) {
  .pricing-form__pricing-container {
    margin-top: 0;
    margin-top: 16px;
  }
}
.pricing-form__original-price {
  font-size: 16px;
  color: #9ca3af;
  text-decoration: line-through;
  display: block;
  margin-bottom: 4px;
}
.pricing-form__current-price {
  font-size: 28px;
  font-weight: 700;
  color: #8b5cf6;
  line-height: 1;
}
.pricing-form__payment-section {
  margin-top: 32px;
}
.pricing-form__payment-title {
  text-align: center;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
}
.pricing-form__payment-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.pricing-form__payment-icon {
  width: 48px;
  height: 32px;
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  color: #374151;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
.pricing-form__payment-icon--visa {
  background: #1a1f71;
  color: white;
}
.pricing-form__payment-icon--mastercard {
  background: #eb001b;
  color: white;
}
.pricing-form__payment-icon--maestro {
  background: #0066cc;
  color: white;
}
.pricing-form__payment-icon--apple {
  background: #000000;
  color: white;
}
.pricing-form__payment-icon--google {
  background: #4285f4;
  color: white;
}
.pricing-form__payment-icon--amex {
  background: #006fcf;
  color: white;
}
.pricing-form__payment-icon--discover {
  background: #ff6000;
  color: white;
}
.pricing-form__submit {
  width: 100%;
  padding: 16px;
  background: #c4b5fd;
  color: #1f2937;
  border: none;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: all 0.2s ease;
}
.pricing-form__submit:hover {
  background: #a78bfa;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
}
.pricing-form__submit:active {
  transform: translateY(0);
}
.pricing-form__submit:disabled {
  background: #d1d5db;
  cursor: not-allowed;
  transform: none;
}
/* Mobile responsive */
@media (max-width: 640px) {
  .pricing-form {
    margin: 16px;
  }
  .pricing-form__duration {
    font-size: 28px;
  }
  .pricing-form__current-price {
    font-size: 24px;
  }
  .pricing-form__payment-grid {
    gap: 6px;
  }
  .pricing-form__payment-icon {
    width: 44px;
    height: 28px;
    font-size: 9px;
  }
}
/*# sourceMappingURL=data:application/json,%7B%22version%22%3A3%2C%22sourceRoot%22%3A%22%2F%22%2C%22sources%22%3A%5B%22wp-content%2Fcustom_codes%2F352-scss-default.scss%22%2C%22(stdin)%22%5D%2C%22names%22%3A%5B%5D%2C%22mappings%22%3A%22AAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQC%3BAAAA%3BAAAA%3BAAAA%3BAAIC%3BAAAA%3BAAAA%3BAAKD%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMC%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAaD%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAYC%3BAAAA%3BAAAA%3BAAGC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKD%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOD%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAWA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKD%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMD%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAUA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAWC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQF%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAIC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKD%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKD%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMD%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMD%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAeA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAeA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BACjTA%3BADwTA%3BAACC%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%22%7D */