/* PLANS PAGE STYLES */

/* HERO SECTION */
.plans-hero {
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 2rem 4rem;
  background: linear-gradient(180deg, rgba(180, 22, 22, 0.08) 0%, rgba(0, 0, 0, 0) 100%);
}

.plans-hero-content {
  max-width: 800px;
}

.plans-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #fff;
}

.plans-subtitle {
  font-size: 1.3rem;
  color: #aaa;
  line-height: 1.6;
}

/* PRICING SECTION */
.pricing-section {
  padding: 4rem 2rem;
}

.pricing-container {
  max-width: 1200px;
  margin: 0 auto;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.pricing-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 2.5rem;
  position: relative;
  transition: all 0.4s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  transform: translateY(-8px);
  border-color: rgba(180, 22, 22, 0.3);
  box-shadow: 0 20px 60px rgba(180, 22, 22, 0.15);
}

.standard-card {
  background: rgba(255, 255, 255, 0.02);
}

.premium-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.pricing-header {
  text-align: center;
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.plan-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.plan-price {
  margin-bottom: 1rem;
}

.price-amount {
  font-size: 3.5rem;
  font-weight: 700;
  color: #fff;
}

.price-period {
  font-size: 1.1rem;
  color: #aaa;
  font-weight: 400;
}

.plan-description {
  font-size: 1rem;
  color: #aaa;
  line-height: 1.6;
}

.pricing-features {
  margin-bottom: 2.5rem;
  flex: 1;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.feature-item:last-child {
  border-bottom: none;
}

.feature-icon {
  flex-shrink: 0;
  color: #57f287;
}

.premium-icon {
  color: #b41616;
}

.feature-text {
  color: #ddd;
  font-size: 0.95rem;
  line-height: 1.4;
}

.pricing-button {
  display: block;
  width: 100%;
  padding: 1rem 2rem;
  border-radius: 10px;
  font-size: 1.05rem;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.standard-button {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.standard-button:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.premium-button {
  background: linear-gradient(135deg, #b41616 0%, #d11a1a 100%);
  color: #fff;
  border: none;
  box-shadow: 0 4px 12px rgba(180, 22, 22, 0.3);
}

.premium-button:hover {
  box-shadow: 0 8px 24px rgba(180, 22, 22, 0.5);
  transform: translateY(-2px);
}

/* FAQ SECTION */
.faq-section {
  padding: 5rem 2rem;
  background: rgba(255, 255, 255, 0.01);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
  color: #fff;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.faq-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.faq-item:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(180, 22, 22, 0.2);
}

.faq-question {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: #fff;
}

.faq-answer {
  color: #aaa;
  line-height: 1.6;
  font-size: 0.95rem;
}

.faq-answer a {
  color: #b41616;
  text-decoration: none;
  transition: color 0.2s ease;
}

.faq-answer a:hover {
  color: #d11a1a;
  text-decoration: underline;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .plans-hero {
    padding: 6rem 1.5rem 3rem;
    min-height: 40vh;
  }

  .plans-title {
    font-size: 2.5rem;
  }

  .plans-subtitle {
    font-size: 1.1rem;
  }

  .pricing-section {
    padding: 3rem 1.5rem;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .faq-section {
    padding: 3rem 1.5rem;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .plans-title {
    font-size: 2rem;
  }

  .plans-subtitle {
    font-size: 1rem;
  }

  .pricing-card {
    padding: 2rem 1.5rem;
  }

  .plan-name {
    font-size: 1.3rem;
  }

  .price-amount {
    font-size: 2.5rem;
  }

  .feature-text {
    font-size: 0.9rem;
  }
}

/* WARNING MODAL (SAME AS SUPPORT PAGE) */
.modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  animation: fadeIn 0.3s ease;
}

.modal.show {
  display: flex;
  justify-content: center;
  align-items: center;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.modal-content {
  background: rgba(20, 20, 20, 0.95);
  border: 1px solid rgba(180, 22, 22, 0.3);
  border-radius: 16px;
  padding: 2.5rem;
  max-width: 450px;
  width: 90%;
  text-align: center;
  animation: slideUp 0.3s ease;
  box-shadow: 0 20px 60px rgba(180, 22, 22, 0.3);
}

@keyframes slideUp {
  from {
    transform: translateY(50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.modal-icon {
  width: 80px;
  height: 80px;
  background: rgba(180, 22, 22, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: #ff6b6b;
}

.modal-content h3 {
  font-size: 1.75rem;
  color: #fff;
  margin-bottom: 1rem;
}

.modal-content p {
  color: #aaa;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.modal-buttons {
  display: flex;
  gap: 1rem;
}

.modal-btn {
  flex: 1;
  padding: 0.875rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cancel-btn {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.cancel-btn:hover {
  background: rgba(255, 255, 255, 0.15);
}

.continue-btn {
  background: linear-gradient(135deg, #b41616 0%, #d11a1a 100%);
  color: #fff;
}

.continue-btn:hover {
  box-shadow: 0 8px 24px rgba(180, 22, 22, 0.4);
  transform: translateY(-2px);
}