.pricing-section {  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;}

.pricing-card {
  width:90%;
  background: #ffffff;
  border-radius: 14px;
  padding: 38px;
  width: 30%;
    justify-content: center;
align-content:center;
  max-width: 500px;
  min-width:350px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  position: relative;}

.pricing-card:hover {  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.12);}
.pricing-card h2 {  font-size: 18px;
  margin-bottom: 8px;}
.tagline {
  font-size: 13px;
  color: #666;
  margin: 10px 0 18px;}

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 5px;}

.pricing-card ul li {
  margin-left:15px;
  padding: 0px 0;
  font-size: 14px;
  border-bottom: 1px solid #eee;}

.pricing-card ul li:last-child {
  border-bottom: none;}

.featured {
  border: 2px solid #222;
  transform: scale(1.03);}

.featured:hover {
  transform: scale(1.05) translateY(-6px);}

/* Badge */
.badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: #222;
  color: #fff;
  padding: 4px 10px;
  font-size: 12px;
  border-radius: 20px;}