/* Wensie+ Premium Styles */

.premium-page {
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
}

/* Hero Section */
.premium-hero {
  text-align: center;
  padding: 40px 20px;
  background: linear-gradient(135deg, #FF6B47 0%, #FF8C69 100%);
  border-radius: 16px;
  color: white;
  margin-bottom: 40px;
}

.premium-hero-active {
  background: linear-gradient(135deg, #10B981 0%, #34D399 100%);
}

.premium-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
  backdrop-filter: blur(10px);
}

.premium-badge-active {
  background: rgba(255, 255, 255, 0.3);
}

.premium-hero h1 {
  font-size: 36px;
  margin: 0 0 12px 0;
  font-weight: 700;
}

.premium-subtitle {
  font-size: 18px;
  opacity: 0.95;
  margin: 0;
}

/* Pricing Cards */
.pricing-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 60px;
}

.pricing-card {
  background: white;
  border: 2px solid #E5E7EB;
  border-radius: 16px;
  padding: 32px 24px;
  position: relative;
  transition: all 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.pricing-card-popular {
  border-color: #FF6B47;
  box-shadow: 0 8px 16px rgba(255, 107, 71, 0.2);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #FF6B47, #FF8C69);
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
}

.pricing-header {
  text-align: center;
  margin-bottom: 24px;
}

.pricing-header h3 {
  font-size: 20px;
  margin: 0 0 16px 0;
  color: #1F2937;
}

.pricing-price {
  margin-bottom: 8px;
}

.price-amount {
  font-size: 48px;
  font-weight: 700;
  color: #FF6B47;
}

.price-period {
  font-size: 18px;
  color: #6B7280;
}

.pricing-savings {
  display: inline-block;
  background: #FEF3C7;
  color: #92400E;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 8px;
}

.pricing-equivalent {
  font-size: 14px;
  color: #6B7280;
}

/* Premium Features Grid */
.premium-features-section {
  margin-bottom: 60px;
}

.premium-features-section h2 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 40px;
  color: #1F2937;
}

.premium-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

.premium-feature-card {
  background: white;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  transition: all 0.3s ease;
}

.premium-feature-card:hover {
  border-color: #FF6B47;
  box-shadow: 0 4px 12px rgba(255, 107, 71, 0.1);
}

.premium-feature-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.premium-feature-card h3 {
  font-size: 18px;
  margin: 0 0 8px 0;
  color: #1F2937;
}

.premium-feature-card p {
  font-size: 14px;
  color: #6B7280;
  margin: 0 0 12px 0;
}

.feature-limit {
  display: flex;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid #E5E7EB;
  font-size: 13px;
}

.limit-free {
  color: #6B7280;
}

.limit-premium {
  color: #FF6B47;
  font-weight: 600;
}

/* Comparison Table */
.premium-comparison {
  margin-bottom: 60px;
}

.premium-comparison h2 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 32px;
  color: #1F2937;
}

.comparison-table {
  width: 100%;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.comparison-table thead {
  background: #F9FAFB;
}

.comparison-table th {
  padding: 16px;
  text-align: left;
  font-weight: 600;
  color: #1F2937;
  border-bottom: 2px solid #E5E7EB;
}

.comparison-table td {
  padding: 16px;
  border-bottom: 1px solid #E5E7EB;
  color: #4B5563;
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

.comparison-table td:nth-child(3) {
  color: #FF6B47;
  font-weight: 600;
}

/* FAQ */
.premium-faq {
  margin-bottom: 60px;
}

.premium-faq h2 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 32px;
  color: #1F2937;
}

.faq-list {
  max-width: 700px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 16px;
}

.faq-item h3 {
  font-size: 18px;
  margin: 0 0 12px 0;
  color: #1F2937;
}

.faq-item p {
  font-size: 15px;
  color: #6B7280;
  margin: 0;
  line-height: 1.6;
}

/* CTA Section */
.premium-cta {
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(135deg, #F9FAFB 0%, #F3F4F6 100%);
  border-radius: 16px;
  margin-bottom: 40px;
}

.premium-cta h2 {
  font-size: 32px;
  margin: 0 0 12px 0;
  color: #1F2937;
}

.premium-cta p {
  font-size: 18px;
  color: #6B7280;
  margin: 0 0 32px 0;
}

.btn-lg {
  padding: 16px 48px;
  font-size: 18px;
}

/* Active Premium Card */
.premium-active-card {
  background: white;
  border: 2px solid #10B981;
  border-radius: 16px;
  padding: 32px;
  margin-bottom: 40px;
}

.premium-active-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid #E5E7EB;
}

.premium-active-header h3 {
  font-size: 24px;
  margin: 0 0 8px 0;
  color: #1F2937;
}

.premium-active-header p {
  font-size: 14px;
  color: #6B7280;
  margin: 0;
}

.premium-active-price {
  font-size: 28px;
  font-weight: 700;
  color: #10B981;
}

.premium-active-features h4 {
  font-size: 18px;
  margin: 0 0 20px 0;
  color: #1F2937;
}

.active-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
  margin-bottom: 32px;
}

.active-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: #4B5563;
}

.active-feature-icon {
  font-size: 24px;
}

.premium-active-actions {
  display: flex;
  gap: 12px;
}

.btn-danger {
  color: #DC2626;
  border-color: #DC2626;
}

.btn-danger:hover {
  background: #DC2626;
  color: white;
}

/* Premium Support */
.premium-support {
  background: white;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  padding: 32px;
  text-align: center;
}

.premium-support h3 {
  font-size: 24px;
  margin: 0 0 12px 0;
  color: #1F2937;
}

.premium-support p {
  font-size: 16px;
  color: #6B7280;
  margin: 0 0 24px 0;
}

/* Premium Prompt Modal */
.premium-prompt {
  text-align: center;
  padding: 20px;
}

.premium-prompt-icon {
  font-size: 64px;
  margin-bottom: 16px;
}

.premium-prompt h3 {
  font-size: 24px;
  margin: 0 0 12px 0;
  color: #1F2937;
}

.premium-prompt p {
  font-size: 16px;
  color: #6B7280;
  margin: 0 0 32px 0;
}

.premium-prompt-cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Responsive */
@media (max-width: 768px) {
  .premium-hero h1 {
    font-size: 28px;
  }
  
  .premium-subtitle {
    font-size: 16px;
  }
  
  .pricing-cards {
    grid-template-columns: 1fr;
  }
  
  .premium-features-grid {
    grid-template-columns: 1fr;
  }
  
  .premium-active-header {
    flex-direction: column;
    gap: 16px;
  }
  
  .premium-active-actions {
    flex-direction: column;
  }
  
  .active-features-grid {
    grid-template-columns: 1fr;
  }
}
