/* Plans Page Styles */

.membership-hero {
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  color: white;
  padding: 5rem 0 3rem;
  text-align: center;
}

.membership-hero h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.membership-hero p {
  font-size: 1.25rem;
  opacity: 0.95;
  max-width: 600px;
  margin: 0 auto;
}

/* Intro Offer Banner */
.intro-offer {
  padding: 3rem 0;
  background: #f8f9ff;
}

.offer-banner {
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  border-radius: 16px;
  padding: 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  box-shadow: 0 8px 32px rgba(251, 191, 36, 0.3);
}

.offer-content h2 {
  color: white;
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.offer-content p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.1rem;
}

.offer-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.3);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
  backdrop-filter: blur(10px);
}

.offer-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.offer-price {
  color: white;
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
}

.offer-price .currency {
  font-size: 1.5rem;
  font-weight: 600;
}

.offer-price .amount {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
}

.offer-price .period {
  font-size: 1rem;
  opacity: 0.9;
}

/* Section Styles */
.trial-section,
.packages-section,
.credit-section {
  padding: 4rem 0;
}

.credit-section {
  background: #f8f9fa;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.125rem;
  color: #6b7280;
  line-height: 1.6;
}

.section-badge {
  display: inline-block;
  background: rgba(255, 107, 53, 0.1);
  color: #ff6b35;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.loading-state {
  text-align: center;
  padding: 4rem 0;
  color: #6b7280;
}

.empty-state {
  text-align: center;
  padding: 4rem 0;
  color: #6b7280;
  font-size: 1.125rem;
}

.error-state {
  text-align: center;
  padding: 4rem 0;
  color: #ef4444;
  font-size: 1.125rem;
}

.spinner {
  border: 3px solid #f3f3f3;
  border-top: 3px solid #ff6b35;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
  margin: 0 auto 1rem;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Package Category */
.package-category {
  margin-bottom: 6rem;
  padding-bottom: 4rem;
  border-bottom: 2px solid #e5e7eb;
}

.package-category:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.category-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
}

.category-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 1rem;
}

.category-header p {
  font-size: 1.125rem;
  color: #6b7280;
  line-height: 1.6;
}

/* Packages Grid */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

/* Package Card */
.package-card {
  background: #f5f5f5;
  border: none;
  border-radius: 20px;
  padding: 2rem;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: none;
}

.package-card:hover {
  background: #efefef;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.package-badge {
  display: inline-block;
  color: #1f2937;
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.package-header {
  margin-bottom: 1.5rem;
}

.package-price {
  display: flex;
  align-items: baseline;
  gap: 0.375rem;
  margin-top: 0.75rem;
}

.price-label {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1f2937;
}

.price-amount {
  font-size: 3rem;
  font-weight: 700;
  color: #ff6b35;
  line-height: 1;
  letter-spacing: -0.02em;
}

.package-features {
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  padding: 0.5rem 0;
  color: #4b5563;
  font-size: 0.9375rem;
  line-height: 1.5;
}

.feature-item svg {
  flex-shrink: 0;
  margin-top: 0.125rem;
  color: #10b981;
  stroke-width: 2.5;
  width: 16px;
  height: 16px;
}

.feature-item span {
  flex: 1;
}

.btn-package {
  width: 100%;
  padding: 1rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  color: white;
  box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
}

.btn-package:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(255, 107, 53, 0.4);
}

.btn-package.btn-login {
  box-shadow: 0 2px 8px rgba(107, 114, 128, 0.3);
}

.btn-package.btn-login:hover {
  background: #4b5563;
  box-shadow: 0 4px 16px rgba(107, 114, 128, 0.4);
}

/* Private Group Section */
.private-group-section {
  background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
  color: white;
  padding: 5rem 0;
  text-align: center;
}

.private-group-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: white;
}

.private-group-content p {
  font-size: 1.125rem;
  max-width: 700px;
  margin: 0 auto 1rem;
  opacity: 0.9;
}

.private-group-content .btn {
  margin-top: 2rem;
  padding: 1rem 2.5rem;
  font-size: 1.125rem;
}

.private-group-content .btn svg {
  margin-right: 0.5rem;
}

/* FAQ Section */
.faq-section {
  padding: 4rem 0;
  background: #f9fafb;
}

.faq-section h2 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 3rem;
  color: #1f2937;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.faq-item {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.faq-item h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 0.75rem;
}

.faq-item p {
  color: #6b7280;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .membership-hero h1 {
    font-size: 2rem;
  }

  .membership-hero p {
    font-size: 1rem;
  }

  .offer-banner {
    flex-direction: column;
    text-align: center;
    padding: 2rem;
  }

  .offer-content h2 {
    font-size: 1.5rem;
  }

  .category-header h2 {
    font-size: 1.875rem;
  }

  .packages-grid {
    grid-template-columns: 1fr;
  }

  .private-group-content h2 {
    font-size: 1.875rem;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }
}
