/* === SURETYSYNC — Pricing page === */

/* === PRICING LAYOUT === */
.pricing-wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: 64px 24px 100px;
}

/* === HEADER === */
.pricing-header {
  text-align: center;
  margin-bottom: 48px;
}

.pricing-badge {
  display: inline-block;
  background: #eff6ff;
  color: #1d4ed8;
  border: 1px solid #bfdbfe;
  border-radius: 100px;
  padding: 4px 14px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
}

.pricing-title {
  font-size: 38px;
  font-weight: 700;
  color: #111827;
  letter-spacing: -0.8px;
  line-height: 1.15;
  margin-bottom: 12px;
}

.pricing-sub {
  font-size: 17px;
  color: #6b7280;
  line-height: 1.6;
}

/* === PLAN CARD === */
.pricing-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 40px;
  margin-bottom: 32px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}

.plan-name {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #1d4ed8;
  margin-bottom: 12px;
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 8px;
}

.price-amount {
  font-size: 56px;
  font-weight: 700;
  color: #111827;
  letter-spacing: -2px;
  line-height: 1;
}

.price-period {
  font-size: 20px;
  font-weight: 400;
  color: #6b7280;
}

.plan-desc {
  font-size: 15px;
  color: #6b7280;
  margin-bottom: 28px;
}

.plan-divider {
  height: 1px;
  background: #f3f4f6;
  margin: 28px 0;
}

/* === FEATURE LIST === */
.plan-features {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.plan-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #374151;
}

.plan-features .check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: #d1fae5;
  color: #059669;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}

/* === CTA === */
.plan-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.btn-start {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: #1d4ed8;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 14px 24px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  font-family: 'Inter', system-ui, sans-serif;
  transition: background 0.15s, transform 0.1s;
}

.btn-start:hover:not(:disabled) {
  background: #2563eb;
  transform: translateY(-1px);
}

.btn-start:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.cta-note {
  font-size: 12px;
  color: #9ca3af;
}

/* === ERROR === */
.payment-error {
  margin-top: 12px;
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fca5a5;
  border-radius: 6px;
  padding: 10px 14px;
  font-size: 13px;
  text-align: center;
}

/* === TRUST BADGES === */
.pricing-trust {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-bottom: 64px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: #6b7280;
  font-weight: 500;
}

.trust-icon {
  font-size: 16px;
}

/* === FAQ === */
.pricing-faq {
  border-top: 1px solid #f3f4f6;
  padding-top: 48px;
}

.faq-title {
  font-size: 22px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 28px;
  letter-spacing: -0.3px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.faq-item h3 {
  font-size: 15px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 6px;
}

.faq-item p {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.6;
}

/* === RESPONSIVE === */
@media (max-width: 600px) {
  .pricing-wrap { padding: 40px 20px 80px; }
  .pricing-title { font-size: 30px; }
  .pricing-card { padding: 28px 24px; }
  .plan-features { grid-template-columns: 1fr; gap: 12px; }
  .pricing-trust { flex-direction: column; gap: 12px; align-items: center; }
  .price-amount { font-size: 44px; }
}

/* === TIER COMPARISON === */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 32px;
}

.tier-card {
  position: relative;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}

.tier-card.popular {
  border-top: 4px solid #059669;
}

.tier-badge {
  position: absolute;
  top: -12px;
  right: 24px;
  background: #059669;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
  letter-spacing: 0.4px;
}

.tier-name {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #1d4ed8;
  margin-bottom: 12px;
}

.tier-price-sub {
  font-size: 13px;
  color: #6b7280;
  margin-bottom: 4px;
}

.tier-price-save {
  font-size: 13px;
  color: #059669;
  font-weight: 600;
  margin-bottom: 8px;
}

.tier-features {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.tier-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #374151;
}

@media (max-width: 720px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .tier-features {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}