/* Layout */
.pricing-container {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  padding: 3rem 1rem;
}

/* Card */
.pricing-card {
  background: #fff;
  width: 300px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s;
}
.pricing-card:hover {
  transform: translateY(-5px);
}

/* Image */
.pricing-img {
  display: block;
  width: 100%;
  height: auto;
}

/* Content */
.pricing-content {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.pricing-content h2 {
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
}

.price {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.period {
  font-size: 1rem;
  color: #666;
}

.features {
  list-style: none;
  margin-bottom: 1.5rem;
}
.features li {
  margin-bottom: 0.75rem;
}

/* Button */
.btn {
  text-align: center;
  padding: 0.75rem 1.5rem;
  background: #000;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.2s;
}
.btn:hover {
  background: #333;
}