.pricing-banner {
  align-items: center;
  background-color: #0b5ed7;
  color: #ffffff;
  display: flex;
  font-family: "Poppins", Arial, sans-serif;
  min-height: 260px;
  padding: 72px 0;
  text-align: center;
}

.pricing-banner-title {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.1;
  margin: 0;
}

/* =========================
   Practice pricing card
========================= */
.ws-pricing-section {
  background: #f8fafc;
  font-family: "Poppins", Arial, sans-serif;
  padding: 90px 0;
}

.ws-pricing-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
  max-width: 500px;
  padding: 34px;
}

.ws-pricing-company {
  color: #111827;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0;
}

.ws-pricing-subtitle {
  color: #6b7280;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0;
}

.ws-pricing-divider {
  border-color: #e5e7eb;
  margin: 26px 0;
  opacity: 1;
}

.ws-price-area {
  margin-bottom: 28px;
}

.ws-price-value {
  color: #111827;
  font-size: clamp(2.6rem, 7vw, 4.25rem);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
}

.ws-price-duration {
  color: #6b7280;
  font-size: 1rem;
  font-weight: 500;
}

.ws-duration-options {
  border: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin: 0 0 28px;
  padding: 0;
}

.ws-duration-option {
  align-items: center;
  color: #374151;
  cursor: pointer;
  display: inline-flex;
  font-size: 0.95rem;
  font-weight: 600;
  gap: 8px;
  margin: 0;
}

.ws-duration-option input {
  appearance: none;
  border: 2px solid #cbd5e1;
  border-radius: 50%;
  cursor: pointer;
  height: 18px;
  margin: 0;
  position: relative;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  width: 18px;
}

.ws-duration-option input::after {
  background: #2f80ed;
  border-radius: 50%;
  content: "";
  height: 8px;
  inset: 3px;
  opacity: 0;
  position: absolute;
  transform: scale(0.4);
  transition: opacity 0.2s ease, transform 0.2s ease;
  width: 8px;
}

.ws-duration-option input:checked {
  border-color: #2f80ed;
  box-shadow: 0 0 0 4px rgba(47, 128, 237, 0.12);
}

.ws-duration-option input:checked::after {
  opacity: 1;
  transform: scale(1);
}

.ws-plan-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.ws-plan-box {
  background: #f3efef;
  border: 0;
  border-radius: 14px;
  color: #111827;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-height: 92px;
  padding: 16px 10px;
  text-align: center;
  transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.ws-plan-box:hover,
.ws-plan-box:focus {
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.12);
  transform: translateY(-3px) scale(1.02);
}

.ws-plan-box.is-active {
  background: #2f80ed;
  color: #ffffff;
}

.ws-plan-price {
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.2;
}

.ws-plan-duration {
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.2;
}

.payment-modal .modal-content {
  border: 0;
  border-radius: 20px;
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.22);
}

.payment-modal .modal-title {
  color: #111827;
  font-size: 1.25rem;
  font-weight: 700;
}

.payment-qr-image {
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  display: block;
  margin: 0 auto 22px;
  max-width: 100%;
  width: 320px;
}

.payment-home-btn {
  background: #2f80ed;
  border-radius: 999px;
  color: #ffffff;
  display: inline-flex;
  font-weight: 700;
  justify-content: center;
  min-width: 150px;
  padding: 12px 28px;
  text-decoration: none;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.payment-home-btn:hover,
.payment-home-btn:focus {
  background: #1769d8;
  color: #ffffff;
  transform: translateY(-2px);
}

@media (max-width: 575.98px) {
  .ws-pricing-section {
    padding: 64px 0;
  }

  .ws-pricing-card {
    border-radius: 16px;
    padding: 24px;
  }

  .ws-plan-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
