/* =========================================
   PREMIUM PAGE STYLES
   ========================================= */

/* Hero Section */
.premium-hero {
  background: 
    radial-gradient(ellipse at 30% 20%, rgba(251, 191, 36, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 80%, rgba(234, 179, 8, 0.1) 0%, transparent 50%),
    linear-gradient(180deg, #020617 0%, #0f172a 100%);
  padding: 6rem 1rem 4rem;
  text-align: center;
}

.premium-badge-large {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  color: #020617;
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 999px;
  margin-bottom: 1.5rem;
  letter-spacing: 0.1em;
}

.premium-title {
  font-family: 'Sora', sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: #f9fafb;
  margin: 0 0 1rem;
  line-height: 1.2;
}

.premium-subtitle {
  font-size: 1.15rem;
  color: #9ca3af;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Pricing Section */
.premium-pricing {
  padding: 4rem 1rem;
  background: #0a0f1a;
}

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

.pricing-card {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.95), rgba(30, 41, 59, 0.9));
  border: 1px solid rgba(148, 163, 184, 0.15);
  border-radius: 1.5rem;
  padding: 2rem;
  width: 100%;
  max-width: 340px;
  position: relative;
  transition: all 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.pricing-card-featured {
  border-color: rgba(251, 191, 36, 0.5);
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.95), rgba(15, 23, 42, 0.9));
  box-shadow: 
    0 0 40px rgba(251, 191, 36, 0.1),
    0 10px 40px rgba(0, 0, 0, 0.3);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  color: #020617;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pricing-header {
  text-align: center;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(148, 163, 184, 0.15);
  margin-bottom: 1.5rem;
}

.pricing-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: #9ca3af;
  margin: 0 0 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.1rem;
}

.price-currency {
  font-size: 1.5rem;
  font-weight: 600;
  color: #f9fafb;
}

.price-amount {
  font-family: 'Sora', sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: #f9fafb;
  line-height: 1;
}

.price-cents {
  font-size: 1.5rem;
  font-weight: 600;
  color: #f9fafb;
}

.price-period {
  font-size: 1rem;
  color: #64748b;
  margin-left: 0.3rem;
}

.pricing-savings {
  margin-top: 0.5rem;
  color: #4ade80;
  font-weight: 600;
  font-size: 0.9rem;
}

.pricing-note {
  margin-top: 0.5rem;
  color: #64748b;
  font-size: 0.85rem;
}

.pricing-card-compact .pricing-features {
  margin-bottom: 1.5rem;
}

.pricing-card-compact .pricing-features li {
  font-size: 0.9rem;
  padding: 0.4rem 0;
}

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

.pricing-features li {
  padding: 0.6rem 0;
  color: #e5e7eb;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.pricing-btn {
  width: 100%;
  padding: 1rem;
  border-radius: 0.75rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 2px solid rgba(148, 163, 184, 0.3);
  background: transparent;
  color: #f9fafb;
}

.pricing-btn:hover {
  border-color: rgba(251, 191, 36, 0.5);
  background: rgba(251, 191, 36, 0.1);
}

.pricing-btn-primary {
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  color: #020617;
  border: none;
}

.pricing-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(251, 191, 36, 0.4);
}

/* Already Premium */
.already-premium {
  text-align: center;
  padding: 3rem;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.95), rgba(30, 41, 59, 0.9));
  border: 1px solid rgba(251, 191, 36, 0.3);
  border-radius: 1.5rem;
  max-width: 500px;
  margin: 0 auto;
}

.premium-active-badge {
  display: inline-block;
  padding: 0.75rem 2rem;
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  color: #020617;
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: 999px;
  margin-bottom: 1.5rem;
}

.already-premium p {
  color: #e5e7eb;
  margin: 0.5rem 0;
}

.premium-expires {
  color: #9ca3af !important;
  font-size: 0.9rem;
}

/* Features Detail Section */
.premium-features-detail {
  padding: 5rem 1rem;
  background: #020617;
}

.section-title {
  font-family: 'Sora', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #f9fafb;
  text-align: center;
  margin: 0 0 3rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.feature-card {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.8), rgba(30, 41, 59, 0.6));
  border: 1px solid rgba(148, 163, 184, 0.1);
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.feature-card:hover {
  border-color: rgba(251, 191, 36, 0.3);
  transform: translateY(-3px);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #f9fafb;
  margin: 0 0 0.75rem;
}

.feature-card p {
  color: #9ca3af;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

/* FAQ Section */
.premium-faq {
  padding: 4rem 1rem 6rem;
  background: #0a0f1a;
}

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

.faq-item {
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(148, 163, 184, 0.1);
  border-radius: 1rem;
  padding: 1.5rem;
  margin-bottom: 1rem;
}

.faq-item h4 {
  font-size: 1.05rem;
  font-weight: 600;
  color: #f9fafb;
  margin: 0 0 0.75rem;
}

.faq-item p {
  color: #9ca3af;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

/* Responsive */
@media (max-width: 900px) {
  .pricing-cards {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
  
  /* On mobile, show featured card first */
  .pricing-card-featured {
    order: -1;
  }
}

@media (max-width: 768px) {
  .premium-hero {
    padding: 4rem 1rem 3rem;
  }
  
  .pricing-card {
    max-width: 100%;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================
   PREMIUM LOCK INDICATORS
   ========================================= */

.premium-lock {
  position: relative;
}

.premium-lock::after {
  content: "⭐ Premium";
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  color: #020617;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.25rem 0.5rem;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.premium-feature-locked {
  opacity: 0.5;
  pointer-events: none;
  filter: grayscale(50%);
}

.premium-upgrade-prompt {
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.1), rgba(234, 179, 8, 0.05));
  border: 1px solid rgba(251, 191, 36, 0.3);
  border-radius: 0.75rem;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin: 1rem 0;
}

.premium-upgrade-prompt p {
  color: #fbbf24;
  font-size: 0.9rem;
  margin: 0;
}

.premium-upgrade-btn {
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  color: #020617;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s ease;
}

.premium-upgrade-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(251, 191, 36, 0.4);
}




