/* Pricing Page Specific Styles */
.feature-highlight-compact {
  display: flex;
  align-items: center;
  padding: 0.75rem 1rem;
  background: rgba(248, 249, 250, 0.8);
  border-radius: 8px;
  text-align: left;
}

.pricing-card {
  background: white;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  border: 2px solid transparent;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
  overflow: hidden;
}

.pricing-card:hover {
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.pricing-card.most-popular {
  border-color: #667eea;
  transform: scale(1.05);
  z-index: 2;
}

.pricing-card.most-popular:hover {
  box-shadow: 0 20px 60px rgba(102, 126, 234, 0.2);
}

.popular-ribbon {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 10px 25px;
  border-radius: 0 0 15px 15px;
  font-size: 13px;
  font-weight: 700;
  z-index: 10;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.test-ribbon {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #f56565 0%, #e53e3e 100%);
  color: white;
  padding: 10px 25px;
  border-radius: 0 0 15px 15px;
  font-size: 13px;
  font-weight: 700;
  z-index: 10;
  animation: pulse 2s infinite;
}

.pricing-header {
  background: linear-gradient(135deg, #f8faff 0%, #e8f2ff 100%);
  padding: 25px 20px 20px;
  text-align: center;
  position: relative;
}

.pricing-card.most-popular .pricing-header {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding-top: 50px; /* Add extra padding to accommodate the ribbon */
}

.plan-name {
  font-size: 22px;
  font-weight: 800;
  margin: 0 0 20px 0;
  color: #2d3748;
}

.pricing-card.most-popular .plan-name {
  color: white;
}

.plan-credits {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 10px;
  margin-bottom: 15px;
}

.credits-number {
  font-size: 48px;
  font-weight: 900;
  color: #667eea;
  line-height: 1;
}

.pricing-card.most-popular .credits-number {
  color: white;
}

.credits-label {
  font-size: 18px;
  color: #718096;
  font-weight: 600;
}

.pricing-card.most-popular .credits-label {
  color: rgba(255, 255, 255, 0.9);
}

.usage-estimate {
  font-size: 14px;
  color: #4a5568;
  font-weight: 600;
  padding: 8px 15px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 20px;
  display: inline-block;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.pricing-card.most-popular .usage-estimate {
  background: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.95);
  border-color: rgba(255, 255, 255, 0.3);
}

.pricing-body {
  padding: 20px;
}

.bonus-section {
  background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
  color: white;
  padding: 10px 16px;
  border-radius: 20px;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 20px;
}

.expiration-section {
  background: #f7fafc;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  padding: 15px;
  margin-bottom: 20px;
}

.expiration-header {
  font-size: 16px;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 10px;
}

.time-value {
  font-size: 24px;
  font-weight: 800;
  color: #ed8936;
}

.features-section {
  margin-bottom: 20px;
}

.features-title {
  color: #2d3748;
  margin-bottom: 12px;
  font-weight: 700;
}

.features-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.features-list li {
  padding: 6px 0;
  font-size: 13px;
  color: #4a5568;
  font-weight: 500;
}

.pricing-section {
  text-align: center;
  margin-bottom: 20px;
}

.price-main {
  font-size: 42px;
  font-weight: 900;
  color: #2d3748;
  line-height: 1;
  margin-bottom: 8px;
}

.pricing-card.most-popular .price-main {
  color: #667eea;
}

.currency {
  font-size: 18px;
  color: #718096;
  font-weight: 600;
}

.price-per-credit {
  font-size: 14px;
  color: #718096;
  font-weight: 600;
  margin-bottom: 15px;
}

.value-badge {
  background: linear-gradient(135deg, #ffd700 0%, #ffb347 100%);
  color: #744210;
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
  display: inline-block;
}

.value-badge.premium {
  background: linear-gradient(135deg, #4fc3f7 0%, #29b6f6 100%);
  color: white;
}

.btn-purchase-pricing {
  width: 100%;
  padding: 16px 24px;
  font-size: 16px;
  font-weight: 800;
  border-radius: 15px;
  border: none;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.btn-purchase-pricing:hover {
  box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
  color: white;
  text-decoration: none;
}

.btn-popular {
  background: linear-gradient(135deg, #f6ad55 0%, #ed8936 100%);
  box-shadow: 0 6px 20px rgba(237, 137, 54, 0.3);
}

.btn-popular:hover {
  box-shadow: 0 10px 30px rgba(237, 137, 54, 0.5);
  color: white;
}

/* Explanation Cards */
.explanation-card-compact {
  background: white;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  height: 100%;
}

.explanation-header-compact {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.step-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
}

.step-number {
  width: 30px;
  height: 30px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  margin-right: 12px;
  flex-shrink: 0;
  font-size: 14px;
}

.step-content h6 {
  margin-bottom: 5px;
  font-weight: 700;
  color: #2d3748;
}

.step-content p {
  color: #718096;
  margin: 0;
  font-size: 14px;
}

.feature-cost-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
}

.feature-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-right: 12px;
  flex-shrink: 0;
}

.feature-info h6 {
  margin-bottom: 5px;
  font-weight: 700;
  color: #2d3748;
}

.feature-info p {
  color: #718096;
  margin-bottom: 8px;
  font-size: 14px;
}

.cost-badge {
  background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
  color: white;
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 700;
}

/* FAQ Section */
.faq-section-compact {
  background: #f8faff;
  padding: 25px 20px;
  border-radius: 12px;
  margin-top: 20px;
}

.accordion-button {
  font-weight: 600;
  color: #2d3748;
  background: white;
  border: none;
  border-radius: 10px !important;
  padding: 15px 20px;
}

.accordion-button:not(.collapsed) {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  box-shadow: none;
}

.accordion-item {
  border: none;
  margin-bottom: 10px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.accordion-body {
  padding: 15px 20px;
  background: white;
  color: #4a5568;
  font-size: 14px;
  line-height: 1.5;
}

/* Security Section */
.security-section-compact {
  background: white;
  padding: 25px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.trust-item {
  padding: 10px;
  text-align: center;
}

.trust-item h6 {
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 5px;
}

.trust-item small {
  color: #718096;
  font-weight: 500;
}

/* Responsive Design */
/* Promotional Pricing Styles */
.promotional-pricing {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.original-time {
  font-size: 18px;
  font-weight: 600;
  position: relative;
}

.promotional-time {
  font-size: 28px;
  font-weight: 800;
  color: #38a169 !important;
}

.promotional-badge {
  display: flex;
  justify-content: center;
}

.promotional-badge .badge {
  font-size: 11px;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 12px;
  background: linear-gradient(135deg, #48bb78 0%, #38a169 100%) !important;
  box-shadow: 0 2px 8px rgba(72, 187, 120, 0.3);
}

/* Sale Animation */
@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.8;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.sale-banner {
  animation: pulse 2s infinite;
}

@media (max-width: 768px) {
  .pricing-card.most-popular {
    transform: none;
    margin-top: 20px;
  }

  .pricing-card.most-popular:hover {
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.2);
  }

  .credits-number {
    font-size: 36px;
  }

  .price-main {
    font-size: 32px;
  }

  .explanation-header {
    flex-direction: column;
    text-align: center;
  }

  .step-item, .feature-cost-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .step-number, .feature-icon {
    margin-right: 0;
    margin-bottom: 10px;
  }
}
