/* ========================================
   ENHANCED PRICING PAGE STYLES
   ======================================== */

/* Trust Bar */
.trust-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  padding: 2rem;
  background: rgba(15,23,42,0.6);
  border-radius: 12px;
  margin-bottom: 3rem;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-align: center;
}

.trust-item i {
  font-size: 2rem;
  color: #dc2626;
}

.trust-item span {
  font-weight: 600;
  color: #e2e8f0;
}

/* Pricing Grid */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  margin-bottom: 4rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  align-items: start;
}

.pricing-card {
  background: rgba(15,23,42,0.8);
  border: 2px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 2rem;
  position: relative;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.pricing-card.featured {
  border-color: #dc2626;
  box-shadow: 0 0 40px rgba(220,38,38,0.3);
  transform: scale(1.02);
}

.pricing-card:hover {
  border-color: rgba(220,38,38,0.5);
  transform: translateY(-5px);
}

.pricing-card.featured:hover {
  transform: scale(1.02) translateY(-5px);
}

.popular-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
  color: #fff;
  padding: 0.5rem 1.5rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  box-shadow: 0 10px 20px rgba(220,38,38,0.4);
  animation: pulse 2s infinite;
}

.plan-header {
  text-align: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  min-height: 85px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.plan-name {
  font-size: 1.75rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.plan-tagline {
  color: #94a3b8;
  font-size: 0.875rem;
  line-height: 1.4;
}

.plan-price {
  text-align: center;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.25rem;
  min-height: 65px;
}

.price-currency {
  font-size: 1.5rem;
  font-weight: 600;
  color: #dc2626;
  line-height: 1;
}

.price-amount {
  font-size: 3.5rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.price-period {
  font-size: 1rem;
  color: #64748b;
  align-self: flex-end;
  padding-bottom: 0.5rem;
}

.savings-badge {
  background: rgba(34,197,94,0.2);
  border: 1px solid rgba(34,197,94,0.4);
  color: #22c55e;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  text-align: center;
  margin-bottom: 1.25rem;
  font-weight: 600;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.plan-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
  flex: 1;
}

.plan-features li {
  padding: 0.65rem 0;
  color: #cbd5e1;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  line-height: 1.5;
  font-size: 0.95rem;
}

.plan-features li i {
  color: #22c55e;
  margin-top: 0.25rem;
  flex-shrink: 0;
  font-size: 1rem;
}

.plan-features li.feature-disabled {
  opacity: 0.4;
}

.plan-features li.feature-disabled i {
  color: #64748b;
}

.plan-features strong {
  color: #dc2626;
  font-weight: 600;
}

/* Buttons */
.btn-wide {
  width: 100%;
  text-align: center;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  display: block;
  margin-top: auto;
}

.plan-footer {
  text-align: center;
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: #64748b;
  font-size: 0.875rem;
}
  font-size: 0.875rem;
}

/* Guarantee Box */
.guarantee-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 2rem 2.5rem;
  background: linear-gradient(135deg, rgba(34,197,94,0.15) 0%, rgba(34,197,94,0.05) 100%);
  border: 2px solid rgba(34,197,94,0.4);
  border-radius: 12px;
  margin-top: 3rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.guarantee-icon {
  font-size: 3rem;
  color: #22c55e;
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(34,197,94,0.1);
  border-radius: 50%;
}

.guarantee-content {
  flex: 1;
  text-align: left;
}

.guarantee-content h3 {
  color: #22c55e;
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.guarantee-content p {
  color: #cbd5e1;
  line-height: 1.6;
  margin: 0;
  font-size: 0.95rem;
}

/* Testimonials */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.testimonial-card {
  background: rgba(15,23,42,0.6);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  border-color: rgba(220,38,38,0.5);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.testimonial-stars {
  color: #fbbf24;
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.testimonial-text {
  color: #cbd5e1;
  line-height: 1.8;
  margin-bottom: 1rem;
  font-style: italic;
}

.testimonial-author {
  color: #64748b;
  font-size: 0.875rem;
  font-weight: 600;
}

/* FAQ Grid */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.faq-item {
  background: rgba(15,23,42,0.6);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(220,38,38,0.5);
  transform: translateX(5px);
}

.faq-item h3 {
  color: #dc2626;
  font-size: 1.125rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.faq-item h3 i {
  font-size: 1.25rem;
}

.faq-item p {
  color: #cbd5e1;
  line-height: 1.8;
}

/* Final CTA */
.final-cta {
  text-align: center;
  padding: 4rem 2rem;
  background: linear-gradient(135deg, rgba(220,38,38,0.1) 0%, rgba(220,38,38,0.05) 100%);
  border: 2px solid rgba(220,38,38,0.3);
  border-radius: 20px;
  margin: 4rem 0;
}

.final-cta h2 {
  font-size: 2.5rem;
  color: #fff;
  margin-bottom: 1rem;
}

.final-cta > p {
  font-size: 1.25rem;
  color: #cbd5e1;
  margin-bottom: 2rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-large {
  padding: 1.25rem 3rem;
  font-size: 1.125rem;
}

/* Responsive */
@media (max-width: 1024px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .pricing-card.featured {
    transform: scale(1);
  }
  
  .testimonial-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }
  
  .trust-bar {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .trust-bar {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .guarantee-box {
    flex-direction: column;
    text-align: center;
  }
  
  .final-cta h2 {
    font-size: 1.75rem;
  }
  
  .cta-buttons {
    flex-direction: column;
  }
  
  .btn-large {
    width: 100%;
  }
}
