.pricing {
  padding: 3rem 1rem;
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

.pricing-title {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #111827;
}

.pricing-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

.card {
  background: white;
  border: 1px solid #e5e7eb;
  padding: 1.5rem;
  border-radius: 0.75rem;
  text-align: center;
  display: grid;
  grid-template-rows: 0.5fr 120px 1fr auto;
}

.card:hover {
  transform: translateY(-5px);
}

.card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: #1f2937;
}

.price {
  font-size: 1.8rem;
  font-weight: 700;
  margin: 1rem 0;
  color: #4f46e5;
}

.card ul {
  list-style: none;
  padding: 0;
}

.card ul li {
  margin: 0.5rem 0;
  color: #374151;
}

.btn {
  display: inline-block;
  padding: 0.7rem 1.2rem;
  background: #e5e7eb;
  color: #111827;
  text-decoration: none;
  border-radius: 0.5rem;
  margin-top: 1rem;
  font-weight: 600;
}

.btn.primary {
  background: #4f46e5;
  color: white;
}

.popular {
  border-color: #4f46e5;
  box-shadow: 0 0 0 2px #4f46e520;
}

.risk-note {
  margin-top: 3rem;
  text-align: left;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.risk-note h4 {
  font-size: 1.2rem;
  margin-bottom: 0.3rem;
  color: #1f2937;
}

.risk-note p {
  color: #374151;
  margin-bottom: 1rem;
}

/* Desktop layout */
@media (min-width: 768px) {
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
