.subscription-page {
  min-height: 100vh;
  background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
  padding: 60px 20px;
}

.subscription-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}

.subscription-header h1 {
  font-size: 52px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 15px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.subscription-header p {
  font-size: 22px;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 500;
}

.plans-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  position: relative;
  z-index: 1;
}

.plan-card {
  background: white;
  border-radius: 20px;
  padding: 40px 32px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  position: relative;
  text-align: center;
  border: 2px solid transparent;
}

.plan-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(59, 130, 246, 0.3);
}

.plan-card.selected {
  border: 3px solid #10b981;
  box-shadow: 0 20px 50px rgba(16, 185, 129, 0.3);
}

.plan-card.popular {
  border: 3px solid #3b82f6;
  transform: scale(1.05);
}

.plan-card.popular:hover {
  transform: scale(1.05) translateY(-8px);
}

.plan-card.popular.selected {
  border: 3px solid #10b981;
}

.popular-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  color: white;
  padding: 10px 28px;
  border-radius: 25px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.5px;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
}

.plan-name {
  font-size: 32px;
  font-weight: 800;
  color: #1e40af;
  margin-bottom: 10px;
}

.plan-duration {
  font-size: 16px;
  color: #6b7280;
  margin-bottom: 25px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.plan-price {
  margin-bottom: 30px;
  padding: 20px;
  background: rgba(59, 130, 246, 0.08);
  border-radius: 16px;
}

.plan-price .currency {
  font-size: 32px;
  font-weight: 800;
  color: #3b82f6;
  vertical-align: top;
}

.plan-price .amount {
  font-size: 64px;
  font-weight: 800;
  color: #3b82f6;
  line-height: 1;
}

.plan-features {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
  text-align: left;
}

.plan-features li {
  padding: 12px 0;
  font-size: 15px;
  color: #374151;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
}

.plan-features i {
  color: #10b981;
  font-size: 18px;
  flex-shrink: 0;
}

.plan-btn {
  display: block;
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  color: white;
  border: none;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.plan-btn:hover {
  background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.4);
  color: white;
}

.plan-card.selected .plan-btn {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.4);
}

.no-plans {
  text-align: center;
  padding: 80px 20px;
  grid-column: 1 / -1;
  background: white;
  border-radius: 20px;
}

.no-plans i {
  font-size: 80px;
  color: rgba(59, 130, 246, 0.3);
  margin-bottom: 20px;
}

.no-plans p {
  font-size: 20px;
  color: #6b7280;
  font-weight: 500;
}

.payment-section {
  max-width: 600px;
  margin: 60px auto 0;
  padding: 40px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  position: relative;
  z-index: 1;
}

.payment-section h3 {
  font-size: 24px;
  font-weight: 700;
  color: #374151;
  margin-bottom: 15px;
}

.payment-section h2 {
  font-size: 48px;
  font-weight: 800;
  color: #3b82f6;
  margin-bottom: 20px;
}

#proceed-payment {
  padding: 16px 48px;
  font-size: 16px;
  font-weight: 700;
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  border: none;
  border-radius: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

#proceed-payment:hover:not(:disabled) {
  background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.4);
}

#proceed-payment:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

#paypal-wrapper {
  margin-top: 30px;
  padding: 20px;
  background: rgba(59, 130, 246, 0.05);
  border-radius: 16px;
}

/* INFO SECTIONS */
.info-sections {
  max-width: 1100px;
  margin: 80px auto 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  position: relative;
  z-index: 1;
}

.info-card {
  background: white;
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(59, 130, 246, 0.2);
}

.info-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 36px;
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
}

.info-card h3 {
  font-size: 22px;
  font-weight: 800;
  color: #1f2937;
  margin-bottom: 12px;
}

.info-card p {
  font-size: 15px;
  color: #6b7280;
  margin: 0;
  line-height: 1.7;
  font-weight: 500;
}

@media (max-width: 768px) {
  .subscription-page {
    padding: 40px 15px;
  }

  .subscription-header h1 {
    font-size: 40px;
  }

  .subscription-header p {
    font-size: 18px;
  }

  .plans-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .plan-card.popular {
    transform: scale(1);
  }

  .plan-card.popular:hover {
    transform: translateY(-10px);
  }

  .plan-name {
    font-size: 28px;
  }

  .plan-price .amount {
    font-size: 56px;
  }

  .payment-section {
    padding: 30px 20px;
    margin-top: 40px;
  }

  .payment-section h2 {
    font-size: 36px;
  }

  .info-sections {
    grid-template-columns: 1fr;
    margin-top: 50px;
    gap: 20px;
  }
}
