/* ===========================
   PRICING SECTION
   =========================== */

.pricing {
  padding: 80px 30px;
  background: var(--bg-1);
  text-align: center;
}

.pricing-inner {
  max-width: 600px;
  margin: 0 auto;
}

.pricing-headline {
  font-family: var(--font-head);
  font-size: 36px;
  font-weight: 800;
  color: var(--cream);
  margin-bottom: 12px;
  line-height: 1.2;
}

.pricing-subhead {
  font-size: 16px;
  color: var(--muted);
  margin-bottom: 40px;
}

.pricing-card {
  background: var(--navy);
  border: 1px solid rgba(245,166,35,0.2);
  border-radius: 16px;
  padding: 40px 36px;
  display: inline-block;
  width: 100%;
  max-width: 380px;
  box-sizing: border-box;
}

.pricing-plan-name {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--amber);
  margin-bottom: 20px;
}

.pricing-price {
  margin-bottom: 28px;
}

.pricing-amount {
  font-family: var(--font-head);
  font-size: 56px;
  font-weight: 800;
  color: var(--cream);
  line-height: 1;
}

.pricing-period {
  font-size: 18px;
  color: var(--muted);
  vertical-align: baseline;
  margin-left: 4px;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  text-align: left;
}

.pricing-features li {
  font-size: 14px;
  color: var(--cream-dim);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  gap: 10px;
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features li::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 18px;
  background: var(--green);
  border-radius: 50%;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: center;
}

.pricing-cta {
  margin-bottom: 16px;
}

.pricing-note {
  font-size: 12px;
  color: var(--muted);
}

/* Buttons */
.btn {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, opacity 0.2s;
  width: 100%;
  box-sizing: border-box;
}

.btn-primary {
  background: var(--green);
  color: var(--cream);
}

.btn-primary:hover {
  background: #246b30;
}

.checkout-form {
  width: 100%;
}

/* Responsive */
@media (max-width: 900px) {
  .pricing {
    padding: 60px 20px;
  }

  .pricing-headline {
    font-size: 28px;
  }

  .pricing-card {
    padding: 32px 24px;
  }
}
