/* ========================================
   PRICING
   ======================================== */
.pricing {
  padding: var(--section-padding);
  background: transparent;
}

.pricing h2 {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 12px;
}

.pricing-cards {
  display: flex;
  gap: 28px;
  justify-content: center;
  align-items: stretch;
  max-width: 820px;
  margin: 0 auto;
}

.pricing-card {
  flex: 1;
  border-radius: var(--radius-md);
  padding: 28px 36px 100px;
  display: flex;
  flex-direction: column;
  position: relative;
}

.pricing-monthly {
  background: var(--white);
  box-shadow: 0 2px 16px rgb(0, 0, 0, 0.06);
}

.pricing-annual {
  background: linear-gradient(145deg, #0a1128, #142257);
  color: var(--white);
}

.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-gradient);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 6px 20px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}

.plan-label {
  font-family: var(--font-family);
  font-size: 0.96rem;
  font-weight: 700;
  letter-spacing: 0;
  color: var(--primary-blue);
  margin-bottom: 8px;
  display: block;
}

.pricing-annual .plan-label {
  color: var(--primary-light);
}

.plan-price {
  margin-bottom: 8px;
}

.price-amount {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--text-heading);
  line-height: 1;
}

.pricing-annual .price-amount {
  color: var(--white);
}

.price-period {
  font-size: 1rem;
  color: var(--text-body);
}

.pricing-annual .price-period {
  color: rgb(255, 255, 255, 0.6);
}

.plan-billing {
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.pricing-annual .plan-billing {
  color: rgb(255, 255, 255, 0.7);
}

.trial-badge {
  display: inline-block;
  background: rgb(22, 93, 252, 0.2);
  color: var(--primary-light);
  font-size: 0.78rem;
  font-weight: 500;
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 12px;
}

.trial-badge-spacer {
  visibility: hidden;
  pointer-events: none;
  user-select: none;
}

.plan-desc {
  font-size: 0.9rem;
  margin-bottom: 16px;
  flex: 1;
}

.pricing-annual .plan-desc {
  color: rgb(255, 255, 255, 0.7);
}

.pricing-monthly hr {
  border: none;
  border-top: 1px solid #eef0f5;
  margin-bottom: 24px;
}

.plan-btn {
  position: absolute;
  left: 36px;
  right: 36px;
  bottom: 28px;
  width: auto;
  text-align: center;
}

.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 16px 0 0;
  padding: 0;
  border-top: 1px solid rgb(255, 255, 255, 0.1);
  padding-top: 20px;
}

.pricing-monthly .plan-features {
  border-top-color: #eef0f5;
}

.plan-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 500;
  color: rgb(28, 31, 53, 0.78);
  line-height: 1.3;
}

.pricing-annual .plan-features li {
  color: rgb(255, 255, 255, 0.82);
}

.plan-features li::before {
  content: '';
  display: inline-block;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgb(22, 93, 252, 0.12)
    url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3.5 8.5 6.5 11.5 12.5 5' stroke='%234A7DFF' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
    center / 14px no-repeat;
}

.pricing-annual .plan-features li::before {
  background-color: rgb(255, 255, 255, 0.12);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3.5 8.5 6.5 11.5 12.5 5' stroke='%2338b6ff' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
