/* PRICING SECTION */
.pricing {
  padding: 4rem 0;
  background: #f8f9fa;
}

.pricing__inner {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.pricing__header {
  margin-bottom: 2rem;
}

.pricing__title {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.pricing__subtitle {
  color: #555;
  font-size: 1rem;
}

/* cards container */
.pricing__cards {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 2rem;
}

/* individual card */
.pricing__card {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  padding: 2rem;
  flex: 1 1 250px;
  max-width: 300px;
}

.pricing__plan {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.pricing__price {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.pricing__unit {
  font-size: 1rem;
  font-weight: 500;
  vertical-align: super;
  margin-left: 0.25rem;
  color: #555;
}

.pricing__features {
  list-style: none;
  padding: 0;
  margin: 0;
  color: #333;
  text-align: left;
}

.pricing__features li {
  margin-bottom: 0.5rem;
  padding-left: 1rem;
  position: relative;
}

/* bullet arrow */
.pricing__features li::before {
  content: "↪";
  position: absolute;
  left: 0;
  color: red;
}

.pricing__description {
  color: #555;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
  font-size: 0.95rem;
}
