.prc-ops-grid {
  margin-top: 22px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 14px;
}

.prc-panel {
  border-radius: 20px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(15, 23, 42, 0.1);
  box-shadow: 0 18px 56px rgba(15, 23, 42, 0.12), inset 0 0 0 1px rgba(255, 255, 255, 0.55);
}

.prc-kicker {
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(15, 23, 42, 0.56);
  margin-bottom: 6px;
}

.prc-title {
  margin: 0 0 10px;
  font-size: clamp(24px, 2.8vw, 36px);
  line-height: 1.12;
  font-weight: 950;
  color: var(--text);
}

.prc-sub {
  color: var(--text-dim);
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
}

.prc-topup-grid {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.prc-topup {
  border-radius: 16px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(15, 23, 42, 0.1);
  box-shadow: 0 12px 34px rgba(15, 23, 42, 0.08), inset 0 0 0 1px rgba(255, 255, 255, 0.55);
}

.prc-topup-featured {
  position: relative;
  border-color: rgba(37, 99, 235, 0.25);
  box-shadow: 0 18px 56px rgba(37, 99, 235, 0.16), inset 0 0 0 1px rgba(255, 255, 255, 0.6);
}

.prc-topup-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: rgba(255, 255, 255, 0.86);
  padding: 5px 9px;
  font-size: 11px;
  font-weight: 900;
}

.prc-topup-title {
  font-weight: 950;
  color: var(--text);
}

.prc-topup-price {
  margin-top: 6px;
  font-size: 36px;
  line-height: 1;
  font-weight: 950;
  color: var(--text);
}

.prc-topup-sub {
  margin-top: 6px;
  font-size: 13px;
  color: var(--text-dim);
}

.prc-cta-row {
  margin-top: 14px;
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.prc-btn-primary,
.prc-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 48px;
  border-radius: 14px;
  padding: 0 18px;
  font-weight: 900;
  text-decoration: none;
}

.prc-btn-primary {
  color: #fff;
  border: none;
  background: linear-gradient(135deg, var(--primary), var(--cyan));
  box-shadow: 0 18px 46px rgba(37, 99, 235, 0.22);
}

.prc-btn-primary:hover {
  color: #fff;
  transform: translateY(-1px);
}

.prc-btn-secondary {
  color: var(--text);
  border: 1px solid rgba(15, 23, 42, 0.1);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.1), inset 0 0 0 1px rgba(255, 255, 255, 0.55);
}

.prc-btn-secondary:hover {
  color: var(--text);
  transform: translateY(-1px);
}

.prc-btn-arrow {
  transition: transform 0.18s ease;
}

.prc-btn-primary:hover .prc-btn-arrow {
  transform: translateX(3px);
}

.prc-cta-row-full {
  margin-top: 12px;
}

.prc-btn-create {
  justify-content: center;
  gap: 10px;
}

.prc-note {
  color: rgba(75, 85, 99, 0.9);
  font-size: 13px;
  font-weight: 700;
}

.prc-upsell-card {
  margin-top: 16px;
  border-radius: 16px;
  border: 1.5px dashed rgba(22, 163, 74, 0.62);
  background:
    radial-gradient(320px 140px at 100% 0%, rgba(34, 197, 94, 0.12), transparent 70%),
    rgba(22, 163, 74, 0.08);
  padding: 12px 14px;
}

.prc-upsell-badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid rgba(22, 163, 74, 0.35);
  background: rgba(255, 255, 255, 0.68);
  color: #166534;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 8px;
}

.prc-upsell-copy {
  margin: 10px 0 0;
  color: #166534;
  line-height: 1.45;
  font-weight: 700;
  font-size: 13px;
}

.prc-upsell-copy-mobile {
  display: none;
}

.prc-upsell-link {
  margin-top: 10px;
  display: inline-flex;
  align-items: center;
  font-size: 13px;
  font-weight: 900;
  color: #166534;
  text-decoration: none;
}

.prc-upsell-link:hover {
  text-decoration: underline;
  color: #14532d;
}

.prc-form-grid {
  margin-top: 14px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

.prc-form-grid-details {
  margin-top: 0;
}

.prc-details-wrap {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateY(-6px);
  transition: max-height 0.42s ease, opacity 0.28s ease, transform 0.28s ease, margin-top 0.3s ease;
}

.prc-details-wrap.is-open {
  max-height: 980px;
  opacity: 1;
  transform: translateY(0);
  margin-top: 10px;
}

.prc-faq-wrap {
  margin-top: 20px;
}

.prc-label {
  margin-top: 6px;
  font-size: 13px;
  font-weight: 800;
  color: var(--text);
}

.prc-input {
  min-height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: rgba(255, 255, 255, 0.82);
  color: var(--text);
}

.prc-input:focus {
  border-color: rgba(37, 99, 235, 0.55);
  box-shadow: 0 0 0 0.18rem rgba(37, 99, 235, 0.18);
}

.prc-estimate-card {
  margin-top: 14px;
  border-radius: 16px;
  padding: 14px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  background: rgba(255, 255, 255, 0.72);
}

.prc-estimate-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
  color: var(--text-dim);
}

.prc-estimate-row strong {
  color: var(--text);
}

.prc-estimate-divider {
  height: 1px;
  background: rgba(15, 23, 42, 0.12);
  margin: 8px 0 10px;
}

.prc-estimate-total strong {
  font-size: 24px;
  font-weight: 950;
  color: var(--text);
}

.prc-footnote {
  margin-top: 8px;
  font-size: 12px;
  color: rgba(75, 85, 99, 0.88);
}

html[data-bs-theme="dark"] .prc-panel,
html[data-bs-theme="dark"] .prc-topup,
html[data-bs-theme="dark"] .prc-estimate-card {
  background: rgba(34, 38, 44, 0.9);
  border-color: rgba(148, 163, 184, 0.22);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.34);
}

html[data-bs-theme="dark"] .prc-kicker {
  color: rgba(148, 163, 184, 0.88);
}

html[data-bs-theme="dark"] .prc-topup-featured {
  border-color: rgba(47, 109, 246, 0.44);
  box-shadow: 0 20px 60px rgba(21, 41, 92, 0.44);
}

html[data-bs-theme="dark"] .prc-topup-badge {
  background: rgba(27, 30, 34, 0.92);
  border-color: rgba(148, 163, 184, 0.24);
}

html[data-bs-theme="dark"] .prc-btn-secondary,
html[data-bs-theme="dark"] .prc-input {
  background: rgba(34, 38, 44, 0.88);
  border-color: rgba(148, 163, 184, 0.24);
  color: var(--text);
  box-shadow: none;
}

html[data-bs-theme="dark"] .prc-estimate-divider {
  background: rgba(148, 163, 184, 0.24);
}

html[data-bs-theme="dark"] .prc-note,
html[data-bs-theme="dark"] .prc-footnote {
  color: var(--text-dim);
}

html[data-bs-theme="dark"] .prc-upsell-card {
  border-color: rgba(34, 197, 94, 0.54);
  background:
    radial-gradient(320px 140px at 100% 0%, rgba(34, 197, 94, 0.22), transparent 70%),
    rgba(21, 128, 61, 0.16);
}

html[data-bs-theme="dark"] .prc-upsell-badge {
  background: rgba(15, 23, 42, 0.38);
  border-color: rgba(34, 197, 94, 0.48);
  color: rgba(187, 247, 208, 0.96);
}

html[data-bs-theme="dark"] .prc-upsell-copy,
html[data-bs-theme="dark"] .prc-upsell-link {
  color: rgba(187, 247, 208, 0.96);
}

html[data-bs-theme="dark"] .prc-upsell-link:hover {
  color: rgba(220, 252, 231, 0.98);
}

@media (max-width: 991.98px) {
  .prc-ops-grid {
    grid-template-columns: 1fr;
  }

  .prc-topup-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575.98px) {
  .prc-cta-row .btn {
    width: 100%;
  }

  .prc-upsell-copy-desktop {
    display: none;
  }

  .prc-upsell-copy-mobile {
    display: block;
  }
}
