.pricing {
  background-color: var(--pricing-bg);
}

.pricing-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.pricing-card {
  flex: 1 1 300px;
  max-width: 350px;
  padding: 40px 30px;
  background-color: var(--feature-bg);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  text-align: center;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.pricing-card.featured {
  /* Removed scale transform to align buttons */
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
  border: 2px solid var(--primary);
  /* Use padding instead of scale for visual emphasis */
  padding: 45px 35px;
}

.pricing-card.featured:before {
  content: "MOST POPULAR";
  position: absolute;
  top: 20px;
  right: -12%;
  background-color: var(--primary);
  color: white;
  padding: 5px 0;
  width: 200px;
  font-size: 12px;
  letter-spacing: 1px;
  text-align: center;
  transform: rotate(45deg);
  text-indent: 30px; /* Increased indentation to move text further right */
}

.pricing-card h3 {
  font-size: 24px;
  margin-bottom: 15px;
}

.price {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--primary);
}

.price span {
  font-size: 16px;
  font-weight: 400;
  color: var(--gray);
}

.pricing-features {
  list-style: none;
  margin-bottom: 30px;
  flex: 1;
}

.pricing-features li {
  padding: 10px 0;
  border-bottom: 1px solid #eee;
}