.asm-pricing-wrap {
  max-width: 1200px;
  margin: 0 auto;
}

.asm-toggle {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 30px;
}

.asm-toggle-btn {
  padding: 12px 22px;
  border: 1px solid #cbd5e1;
  border-radius: 999px;
  background: #ffffff;
  color: #111111;
  cursor: pointer;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.2;
  min-width: 130px;
  text-align: center;
  transition: all 0.25s ease;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.35);
}

.asm-toggle-btn:hover {
  background: linear-gradient(135deg, #2563eb, #38bdf8);
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 10px 22px rgba(37, 99, 235, 0.22);
  transform: translateY(-1px);
}

.asm-toggle-btn.is-active {
  background: linear-gradient(135deg, #2563eb, #38bdf8);
  color: #ffffff;
  border-color: transparent;
  box-shadow:
    0 10px 22px rgba(37, 99, 235, 0.22),
    0 0 0 4px rgba(191, 219, 254, 0.95);
}

.asm-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.asm-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  padding: 26px;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.05);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.asm-card-header h3 {
  margin: 0 0 18px;
  font-size: 28px;
  color: #0f172a;
}

.asm-price-box {
  margin-bottom: 20px;
}

.asm-price {
  font-size: 42px;
  font-weight: 800;
  color: #2563eb;
  line-height: 1;
}

.asm-price-currency {
  font-size: 22px;
  vertical-align: top;
  margin-right: 2px;
}

.asm-discount {
  display: inline-block;
  margin-top: 10px;
  background: #ecfdf5;
  color: #15803d;
  border: 1px solid #bbf7d0;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}

.asm-discount.is-hidden {
  display: none;
}

.asm-feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  flex: 1;
}

.asm-feature-list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 12px;
  color: #334155;
}

.asm-feature-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #16a34a;
  font-weight: bold;
}

.asm-card-footer {
  margin-top: auto;
}

.asm-btn {
  width: 100%;
  border: none;
  border-radius: 12px;
  padding: 14px 18px;
  background: linear-gradient(135deg, #2563eb, #38bdf8);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s ease;
}

.asm-btn:hover {
  transform: translateY(-2px);
}

@media (max-width: 991px) {
  .asm-pricing-grid {
    grid-template-columns: 1fr;
  }

  .asm-toggle {
    gap: 10px;
  }

  .asm-toggle-btn {
    min-width: 110px;
    font-size: 15px;
    padding: 11px 18px;
  }
}


.asm-order-box {
  max-width: 760px;
  margin: 40px auto;
  padding: 28px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.05);
}

.asm-order-box h2 {
  margin: 0 0 20px;
  color: #0f172a;
  font-size: 30px;
}

.asm-order-summary {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 18px;
  margin-bottom: 20px;
}

.asm-order-summary div {
  margin-bottom: 10px;
  color: #334155;
}

.asm-order-summary div:last-child {
  margin-bottom: 0;
}

.asm-payment-note {
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  border-radius: 14px;
  padding: 18px;
  margin-bottom: 20px;
}

.asm-payment-note h3 {
  margin: 0 0 10px;
  font-size: 20px;
  color: #0f172a;
}

.asm-payment-note p {
  margin: 0;
  color: #334155;
  line-height: 1.7;
}

.asm-order-form p {
  margin-bottom: 18px;
}

.asm-order-form label {
  display: inline-block;
  margin-bottom: 8px;
  color: #0f172a;
}

.asm-order-form input[type="email"],
.asm-order-form textarea {
  width: 100%;
  border: 1px solid #cbd5e1;
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 15px;
  color: #111827;
  background: #fff;
}

.asm-order-form textarea {
  resize: vertical;
}

.asm-order-success,
.asm-order-error {
  padding: 14px 16px;
  border-radius: 12px;
  margin-bottom: 20px;
  font-weight: 600;
}

.asm-order-success {
  background: #ecfdf5;
  border: 1px solid #bbf7d0;
  color: #166534;
}

.asm-order-error {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #991b1b;
}