.rta_pric_ing_sect {
  text-align: center;
  padding: 60px 20px;
  background: #f7faff;
  font-family: 'Poppins', sans-serif;
}

.rta_pric_ing_sect .pricing_title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 40px;
  color: #1a1a1a;
}

.rta_pric_ing_sect .pricing_cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}

.rta_pric_ing_sect .pricing_card {
  background: #fff;
  border-radius: 12px;
  padding: 30px 25px;
  width: 320px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  text-align: left;
  transition: all 0.3s ease;
}

.rta_pric_ing_sect .pricing_card:hover {
  transform: translateY(-5px);
}

/* Perform (Popular) Card */
.rta_pric_ing_sect .pricing_card.popular {
  background: #22b148;
  color: #fff;
}

.rta_pric_ing_sect .pricing_card.popular .price span {
  color: #e5e5e5;
}

.rta_pric_ing_sect .pricing_card.popular .desc {
  color: #f0f0f0;
}

.rta_pric_ing_sect .pricing_card.popular ul li {
  color: #fff;
}

.rta_pric_ing_sect .pricing_card.popular ul li::before {
  color: #fff;
}

.rta_pric_ing_sect .price {
  font-size: 36px;
  font-weight: 700;
  margin: 10px 0;
  color: #21b14a;
}

.rta_pric_ing_sect .price span {
  font-size: 18px;
  color: #666;
}

.rta_pric_ing_sect .desc {
  color: #777;
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 20px;
}

.rta_pric_ing_sect .purchase_btn {
  background: #0362eb;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 12px 0;
  width: 100%;
  display: block;
  text-align: center;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
}

.rta_pric_ing_sect .purchase_btn:hover {
  background: #004fc0;
}

.rta_pric_ing_sect .pricing_card h4 {
  margin: 20px 0 10px;
  font-size: 16px;
  font-weight: 600;
}

.rta_pric_ing_sect ul {
  list-style: none;
  padding: 0;
}

.rta_pric_ing_sect ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
  font-size: 14px;
  color: #333;
}

.rta_pric_ing_sect ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #22b148;
  font-weight: 700;
}

/* Responsive */
@media (max-width: 992px) {
  .rta_pric_ing_sect .pricing_cards {
    flex-direction: column;
    align-items: center;
  }
}