.pricing-section {
  padding: 60px 20px;
  background: #fff;
  text-align: center;
}

.pricing-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
}

.pricing-subtitle {
  color: #666;
  margin-bottom: 40px;
}

.pricing-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.price-box {
  background: #f8f8f8;
  border: 1px solid #ddd;
  border-top: 80px solid #444;
  padding: 30px 20px 40px;
  width: 280px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  position: relative;
  text-align: left;
}

.price-box.highlight {
  border-color: green;
  border-top: 80px solid green;
}

.badge-ribbon {
  position: absolute;
  top: 0;
  right: 0;
  background: red;
  color: white;
  font-size: 12px;
  font-weight: bold;
  padding: 5px 10px;
  transform: rotate(45deg);
  transform-origin: top right;
}

.price-box h3 {
  color: #fff;
  margin-top: -60px;
  margin-bottom: 5px;
}

.price-box .subtitle {
  color: #fff;
  font-size: 13px;
  margin-bottom: 15px;
}

.price {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 15px;
}

.price sup {
  font-size: 16px;
  top: -0.5em;
}

.price span {
  font-size: 14px;
  color: #555;
}

.features {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
  font-size: 14px;
  line-height: 1.8;
}

.order-btn {
  background: green;
  color: white;
  text-decoration: none;
  padding: 12px 20px;
  font-weight: bold;
  display: block;
  text-align: center;
  border-radius: 4px;
}

.note {
  margin-top: 40px;
  font-size: 14px;
  color: #666;
}

/* Responsive */
@media (max-width: 768px) {
  .pricing-grid {
    flex-direction: column;
    align-items: center;
  }
}

