/* body {
  font-family: 'Inter', sans-serif;
  background-color: #f9fafb;
  color: #333;
} */

.pricing-section {
  padding: 40px 20px;
  text-align: center;
}

.pricing-section h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.pricing-section .subtext {
  color: #666;
  margin-bottom: 40px;
}

.pricing-cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
}

.pricing-card {
  background: #fff;
  border-radius: 12px;
  padding: 30px 25px;
  width: 280px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
  transition: transform 0.2s;
}

.pricing-card:hover {
  transform: translateY(-4px);
}

.pricing-card .title {
  font-size: 1.5rem;
  color: #1a73e8;
  margin-bottom: 20px;
}

.pricing-card .title.free {
  color: #27ae60;
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
  text-align: left;
}

.pricing-card ul li {
  margin-bottom: 10px;
  font-size: 0.95rem;
}

.pricing-card ul li.muted {
  color: #aaa;
  text-decoration: line-through;
}

.pricing-card .price {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.pricing-card .note {
  font-size: 0.9rem;
  color: #888;
}

.buy-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 20px;
  background-color: #1a73e8;
  color: white;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  transition: background 0.2s ease;
}

.buy-btn:hover {
  background-color: #1669c1;
}
