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

.pricing-card {
  background: linear-gradient(180deg, rgba(15, 40, 80, 0.5), rgba(8, 20, 50, 0.7));
  border: 1px solid rgba(59, 158, 255, 0.15);
  border-radius: 20px;
  padding: 40px 32px;
  text-align: center;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 40px rgba(59, 158, 255, 0.12);
}

.pricing-card.featured {
  border-color: rgba(59, 158, 255, 0.4);
  background: linear-gradient(180deg, rgba(20, 50, 100, 0.7), rgba(10, 30, 70, 0.8));
  box-shadow: 0 0 40px rgba(59, 158, 255, 0.1);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #1a6dff, #3b9eff);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 6px 20px;
  border-radius: 999px;
}

.pricing-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
}

.pricing-card .subtitle {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 24px;
}

.price {
  margin-bottom: 32px;
}

.price .amount {
  font-size: 52px;
  font-weight: 800;
  line-height: 1;
}

.price .amount .currency {
  font-size: 24px;
  vertical-align: super;
  color: #3b9eff;
}

.price .period {
  font-size: 15px;
  color: rgba(255,255,255,0.4);
  margin-top: 4px;
}

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

.pricing-features li {
  padding: 10px 0;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  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: '';
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(59, 158, 255, 0.15);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%233b9eff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 11px;
  background-position: center;
  background-repeat: no-repeat;
}

.pricing-card .btn {
  width: 100%;
  text-align: center;
}

/* FAQ */
.faq {
  max-width: 700px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(59, 158, 255, 0.1);
  padding: 24px 0;
}

.faq-item h4 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 10px;
  color: rgba(255,255,255,0.9);
}

.faq-item p {
  font-size: 15px;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}

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