/* Üldine font */
body {
  font-family: 'Inter', sans-serif;
  background: #f9fafc;
  margin: 0;
  padding: 2rem;
  color: #222;
  line-height: 1.6;
}

h1 {
  text-align: center;
  letter-spacing: 1px;
  margin-bottom: 2rem;
}

.plans {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.plan {
  background: #fff;
  border: 2px solid #eee;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  transition: transform 0.2s;
}

.plan:hover {
  transform: translateY(-5px);
}

.badge {
  display: inline-block;
  background: #00bfa6;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 10px;
  margin-bottom: 1rem;
  letter-spacing: 0.5px;
}

.badge.popular { background: #ff6600; }
.badge.valuable { background: #222; }

.plan h2 {
  font-size: 1.5rem;
  margin: 0.5rem 0;
}

.price {
  font-size: 1.8rem;
  font-weight: 700;
  color: #e63946;
  margin: 1rem 0;
}

.price span {
  font-size: 0.9rem;
  color: #888;
  text-decoration: line-through;
  margin-left: 8px;
}

ul {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

ul li::before {
  content: "✔ ";
  color: #00bfa6;
  font-weight: bold;
}

p {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 1.5rem;
}

a.button {
  display: inline-block;
  background: #0077ff;
  color: #fff;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: background 0.2s;
}

a.button:hover {
  background: #005ecc;
}

/* Erinevad värvid */
.starter a.button { background: #28a745; }
.starter a.button:hover { background: #1f7c34; }

.business a.button { background: #0077ff; }
.business a.button:hover { background: #005ecc; }

.premium a.button { background: #ff6b00; }
.premium a.button:hover { background: #cc5600; }
