/* ========================================
   PRICING PAGE
   ======================================== */

.pricing-hero {
  padding: 70px 0 55px;
  background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 60%, #22c55e 140%);
  color: #fff;
}

.pricing-hero-inner {
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
}

.pricing-title {
  font-size: 2.8rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.pricing-subtitle {
  font-size: 1.15rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.92);
  max-width: 720px;
  margin: 0 auto 22px;
}

.pricing-hero-trust {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 10px;
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
  font-size: 0.92rem;
  font-weight: 600;
}

.pricing-page {
  background: #f8fafc;
  padding: 65px 0 90px;
}

.pricing-header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px;
}

.pricing-h2 {
  font-size: 2.2rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #0f172a;
  margin-bottom: 10px;
}

.pricing-h2-sub {
  font-size: 1.05rem;
  color: #475569;
  line-height: 1.7;
  margin: 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
}

.pricing-card {
  background: #fff;
  border: 2px solid #e5e7eb;
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  transform: translateY(-3px);
  border-color: #2563eb;
  box-shadow: 0 18px 44px rgba(37, 99, 235, 0.14);
}

.pricing-card-popular {
  border-color: #2563eb;
  box-shadow: 0 18px 44px rgba(37, 99, 235, 0.18);
}

.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 60%, #22c55e 140%);
  color: #fff;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.pricing-card-top {
  padding-bottom: 18px;
  border-bottom: 1px solid #e5e7eb;
  margin-bottom: 18px;
}

.plan-name {
  font-size: 1.35rem;
  font-weight: 900;
  color: #0f172a;
  margin: 0 0 10px 0;
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.price-amount {
  font-size: 2.6rem;
  font-weight: 900;
  color: #0f172a;
}

.price-period {
  color: #64748b;
  font-weight: 700;
}

.plan-features {
  list-style: none;
  padding: 0;
  margin: 0 0 22px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #0f172a;
}

.check {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #e0f2fe;
  color: #1e40af;
  font-weight: 900;
  flex-shrink: 0;
  margin-top: 1px;
}

.plan-cta {
  margin-top: auto;
}

.btn-pricing-page {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}

.btn-pricing-page:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 60%, #22c55e 140%);
  color: #fff;
  border: none;
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.22);
}

.btn-primary:hover {
  box-shadow: 0 14px 32px rgba(37, 99, 235, 0.30);
  color: #fff;
}

.btn-outline {
  background: #fff;
  color: #2563eb;
  border: 2px solid #2563eb;
}

.btn-outline:hover {
  background: #2563eb;
  color: #fff;
  border-color: #2563eb;
}

.pricing-footnote {
  text-align: center;
  margin-top: 26px;
  color: #64748b;
  font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 768px) {
  .pricing-title {
    font-size: 2.3rem;
  }

  .pricing-page {
    padding: 55px 0 80px;
  }
}

@media (max-width: 480px) {
  .pricing-title {
    font-size: 2.05rem;
  }

  .pricing-subtitle {
    font-size: 1.02rem;
  }

  .pricing-card {
    padding: 22px;
  }

  .price-amount {
    font-size: 2.35rem;
  }
}
