/* ===== Pricing Section Styles ===== */

/* ===== Pricing section wrapper ===== */
.pricing-section {
  padding: 0 24px 96px;
}

.pricing-heading {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 48px;
}

.pricing-heading h2 {
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -1px;
  margin: 0 0 12px;
}

.pricing-heading p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}

/* ===== Pricing Cards ===== */
.wrap {
  max-width: 1240px;
  margin: 0 auto;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media(max-width:900px) {
  .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width:640px) {
  .grid {
    grid-template-columns: 1fr;
  }
}

.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px 28px;
  display: flex;
  flex-direction: column;
}

.card.featured {
  border: 2px solid var(--ink);
  position: relative;
}

.plan-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.plan-name {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -.5px;
}

.badge-popular {
  background: var(--green);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 999px;
}

.plan-desc {
  color: #3d3f52;
  font-size: 15px;
  line-height: 1.55;
  min-height: 75px;
  margin-bottom: 20px;
}

.price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 24px;
}

.price .amount {
  font-size: 44px;
  font-weight: 800;
  letter-spacing: -1px;
  direction: ltr;
  unicode-bidi: embed;
}

.price .period {
  color: var(--muted);
  font-size: 15px;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 52px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid var(--blue);
  transition: .15s;
  margin-bottom: 28px;
}

.btn-solid {
  background: var(--blue);
  color: #fff;
}

.btn-solid:hover {
  background: #6f2fd6;
}

.btn-outline {
  background: #fff;
  color: var(--blue);
}

.btn-outline:hover {
  background: #f2f3ff;
}

.features-label {
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 14px;
}

.feature-list {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.feature {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 44px;
  font-size: 15px;
  font-weight: 600;
}

.feature svg {
  width: 19px;
  height: 19px;
  flex-shrink: 0;
  color: var(--ink);
}

.feature.disabled {
  color: #c6c8d6;
  text-decoration: line-through;
  text-decoration-color: #e07a5f;
}

.feature.disabled svg {
  color: #c6c8d6;
}

.feature .stat-pill {
  margin-inline-start: auto;
  font-size: 13px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 8px;
  white-space: nowrap;
}

.pill-credits {
  background: var(--orange-bg);
  color: var(--orange-text);
}

.row-highlight {
  background: var(--orange-bg);
  border-radius: 10px;
  padding: 0 10px;
  margin: 0 -10px;
}
